wok-next annotate partimage-pam/receipt @ rev 10007
couchdb: erlang is need also to build
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu May 19 01:59:58 2011 +0200 (2011-05-19) |
parents | d1768332cee0 |
children | c1549ac89096 |
rev | line source |
---|---|
pascal@2222 | 1 # SliTaz package receipt. |
pascal@2222 | 2 |
pascal@2222 | 3 PACKAGE="partimage-pam" |
slaxemulator@8643 | 4 VERSION="0.6.9" |
pascal@2222 | 5 CATEGORY="system-tools" |
pascal@2222 | 6 SHORT_DESC="Saves partitions in an image file." |
pascal@2222 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@5005 | 8 DEPENDS="newt bzip2 openssl slitaz-base-files zlib pam gcc-lib-base" |
pascal@2222 | 9 BUILD_DEPENDS="newt newt-dev slang-dev bzip2-dev openssl-dev pam pam-dev" |
pascal@2222 | 10 SOURCE="partimage" |
pascal@2222 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@2222 | 12 WEB_SITE="http://www.partimage.org/Index.fr.html" |
slaxemulator@8643 | 13 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" |
pascal@2222 | 14 PROVIDE="partimage:pam" |
pascal@2222 | 15 |
pascal@2222 | 16 # Rules to configure and make the package. |
pascal@2222 | 17 compile_rules() |
pascal@2222 | 18 { |
pascal@2222 | 19 cd $src |
pascal@2222 | 20 ./configure --prefix=/usr --enable-pam \ |
pascal@2222 | 21 --sysconfdir=/etc \ |
pascal@2222 | 22 --infodir=/usr/share/info \ |
pascal@2222 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2222 | 24 make && |
pascal@2222 | 25 make DESTDIR=$PWD/_pkg install |
pascal@2222 | 26 } |
pascal@2222 | 27 |
pascal@2222 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2222 | 29 genpkg_rules() |
pascal@2222 | 30 { |
pascal@2222 | 31 mkdir -p $fs/usr $fs/etc/init.d |
pascal@2222 | 32 cp -a $_pkg/usr/sbin $fs/usr |
pascal@2222 | 33 cp -a $_pkg/etc $fs/ |
slaxemulator@9701 | 34 install -g root -o root -m 0600 ../$SOURCE/stuff/etc/partimaged/partimaged.* $fs/etc/partimaged |
slaxemulator@9701 | 35 install -g root -o root -m 0755 ../$SOURCE/stuff/etc/init.d/partimaged $fs/etc/init.d |
pascal@2222 | 36 } |
pascal@2222 | 37 |
pascal@2222 | 38 post_install() |
pascal@2222 | 39 { |
pascal@2222 | 40 echo "Processing post install commands..." |
pascal@2222 | 41 echo "Adding user/group partimag..." |
pascal@2222 | 42 chroot $1/ adduser -S -H -D partimag |
pascal@2222 | 43 |
pascal@2222 | 44 echo "Setting permissions for config files" |
pascal@2222 | 45 chmod 0600 $1/etc/partimaged/* |
pascal@2222 | 46 chown partimag.partimag $1/etc/partimaged/* |
pascal@2222 | 47 |
pascal@2222 | 48 echo " Creating image files directory" |
pascal@2222 | 49 install -g partimag -o partimag -m 0755 -d $1/var/lib/partimaged |
pascal@2222 | 50 |
pascal@2222 | 51 echo "" |
pascal@2222 | 52 echo -e "\nTo starts $SOURCE server you can run :\n" |
pascal@2222 | 53 echo "/etc/init.d/partimaged start" |
pascal@2222 | 54 echo -e "Or add partimaged to RUN_DAEMONS in /etc/rcS.conf\n" |
pascal@2222 | 55 } |
pascal@2222 | 56 |
pascal@2222 | 57 post_remove() |
pascal@2222 | 58 { |
slaxemulator@8643 | 59 chroot $1/ deluser partimag |
slaxemulator@8643 | 60 chroot $1/ delgroup partimag |
pascal@2222 | 61 |
slaxemulator@8643 | 62 if [ -f $1/etc/paritimaged ]; then |
slaxemulator@8643 | 63 rm -rf $1/etc/partimaged |
pascal@2222 | 64 fi |
pascal@2222 | 65 } |
pascal@2222 | 66 |
pascal@2222 | 67 |