wok-next annotate partimage-pam/receipt @ rev 18738
docbook-xsl-ns: fix build
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Dec 21 23:56:28 2015 +0100 (2015-12-21) |
parents | 49a446459762 |
children | 6fab3264ba87 |
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@15000 | 8 LICENSE="GPL2" |
pascal@2222 | 9 SOURCE="partimage" |
pascal@2222 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@2222 | 11 WEB_SITE="http://www.partimage.org/Index.fr.html" |
slaxemulator@8643 | 12 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" |
pascal@2222 | 13 PROVIDE="partimage:pam" |
pascal@2222 | 14 |
pascal@15000 | 15 DEPENDS="newt bzip2 openssl slitaz-base-files zlib pam gcc-lib-base" |
pascal@15000 | 16 BUILD_DEPENDS="newt newt-dev slang-dev bzip2-dev openssl-dev pam pam-dev" |
pascal@15000 | 17 |
pascal@2222 | 18 # Rules to configure and make the package. |
pascal@2222 | 19 compile_rules() |
pascal@2222 | 20 { |
pascal@12783 | 21 sed -i 's/gzFile \*m_gzImageFile/gzFile m_gzImageFile/' src/client/imagefile.h |
pascal@12783 | 22 sed -i 's/(gzFile \*) gzdopen/gzdopen/' src/client/imagefile.cpp |
pascal@2222 | 23 ./configure --prefix=/usr --enable-pam \ |
pascal@2222 | 24 --sysconfdir=/etc \ |
pascal@2222 | 25 --infodir=/usr/share/info \ |
pascal@2222 | 26 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2222 | 27 make && |
pascal@15000 | 28 make DESTDIR=$DESTDIR install |
pascal@2222 | 29 } |
pascal@2222 | 30 |
pascal@2222 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2222 | 32 genpkg_rules() |
pascal@2222 | 33 { |
pascal@2222 | 34 mkdir -p $fs/usr $fs/etc/init.d |
pascal@15000 | 35 cp -a $install/usr/sbin $fs/usr |
pascal@15000 | 36 cp -a $install/etc $fs/ |
slaxemulator@9701 | 37 install -g root -o root -m 0600 ../$SOURCE/stuff/etc/partimaged/partimaged.* $fs/etc/partimaged |
slaxemulator@9701 | 38 install -g root -o root -m 0755 ../$SOURCE/stuff/etc/init.d/partimaged $fs/etc/init.d |
pascal@2222 | 39 } |
pascal@2222 | 40 |
pascal@2222 | 41 post_install() |
pascal@2222 | 42 { |
pascal@2222 | 43 echo "Processing post install commands..." |
pascal@2222 | 44 echo "Adding user/group partimag..." |
pascal@18730 | 45 chroot "$1/" adduser -S -H -D partimag |
pascal@2222 | 46 |
pascal@2222 | 47 echo "Setting permissions for config files" |
pascal@18730 | 48 chmod 0600 "$1"/etc/partimaged/* |
pascal@18730 | 49 chroot "$1/" chown partimag.partimag "$1"/etc/partimaged/* |
pascal@2222 | 50 |
pascal@2222 | 51 echo " Creating image files directory" |
pascal@18730 | 52 chroot "$1/" install -g partimag -o partimag -m 0755 -d "$1/var/lib/partimaged" |
pascal@2222 | 53 |
pascal@2222 | 54 echo "" |
pascal@2222 | 55 echo -e "\nTo starts $SOURCE server you can run :\n" |
pascal@2222 | 56 echo "/etc/init.d/partimaged start" |
pascal@2222 | 57 echo -e "Or add partimaged to RUN_DAEMONS in /etc/rcS.conf\n" |
pascal@2222 | 58 } |
pascal@2222 | 59 |
pascal@2222 | 60 post_remove() |
pascal@2222 | 61 { |
pascal@18730 | 62 chroot "$1/" deluser partimag |
pascal@18730 | 63 chroot "$1/" delgroup partimag |
pascal@2222 | 64 |
pascal@18730 | 65 if [ -f "$1/etc/paritimaged" ]; then |
pascal@18730 | 66 rm -rf "$1/etc/partimaged" |
pascal@2222 | 67 fi |
pascal@2222 | 68 } |