wok-current annotate partimage-pam/receipt @ rev 4753
Up: cyrus-sasl* (2.1.23) security fix.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Jan 09 22:20:51 2010 +0100 (2010-01-09) |
parents | 89e187b7d309 |
children | f3327707164a |
rev | line source |
---|---|
pascal@2222 | 1 # SliTaz package receipt. |
pascal@2222 | 2 |
pascal@2222 | 3 PACKAGE="partimage-pam" |
pascal@2222 | 4 VERSION="0.6.7" |
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@2457 | 8 DEPENDS="newt bzip2 openssl slitaz-base-files zlib pam" |
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" |
pascal@2222 | 13 WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/partimage/$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 { |
erjo@4229 | 19 # fix build with gcc4 |
erjo@4229 | 20 busybox patch -p0 -i stuff/partimage-0.6.7_gcc4.u |
erjo@4229 | 21 |
pascal@2222 | 22 cd $src |
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@2222 | 28 make DESTDIR=$PWD/_pkg 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@2222 | 35 cp -a $_pkg/usr/sbin $fs/usr |
pascal@2222 | 36 cp -a $_pkg/etc $fs/ |
pascal@2222 | 37 install -g root -o root -m 0600 ../$SOURCE/stuff/etc/partimaged/partimaged.* $fs/etc/partimaged |
pascal@2222 | 38 install -g root -o root -m 0755 ../$SOURCE/stuff/etc/init.d/partimaged $fs/etc/init.d |
pascal@2222 | 39 strip -s $fs/usr/sbin/* |
pascal@2222 | 40 } |
pascal@2222 | 41 |
pascal@2222 | 42 post_install() |
pascal@2222 | 43 { |
pascal@2222 | 44 echo "Processing post install commands..." |
pascal@2222 | 45 echo "Adding user/group partimag..." |
pascal@2222 | 46 chroot $1/ adduser -S -H -D partimag |
pascal@2222 | 47 |
pascal@2222 | 48 echo "Setting permissions for config files" |
pascal@2222 | 49 chmod 0600 $1/etc/partimaged/* |
pascal@2222 | 50 chown partimag.partimag $1/etc/partimaged/* |
pascal@2222 | 51 |
pascal@2222 | 52 echo " Creating image files directory" |
pascal@2222 | 53 install -g partimag -o partimag -m 0755 -d $1/var/lib/partimaged |
pascal@2222 | 54 |
pascal@2222 | 55 echo "" |
pascal@2222 | 56 echo -e "\nTo starts $SOURCE server you can run :\n" |
pascal@2222 | 57 echo "/etc/init.d/partimaged start" |
pascal@2222 | 58 echo -e "Or add partimaged to RUN_DAEMONS in /etc/rcS.conf\n" |
pascal@2222 | 59 } |
pascal@2222 | 60 |
pascal@2222 | 61 post_remove() |
pascal@2222 | 62 { |
pascal@2222 | 63 deluser partimag |
pascal@2222 | 64 delgroup partimag |
pascal@2222 | 65 |
pascal@2222 | 66 if [ -f /etc/paritimaged ]; then |
pascal@2222 | 67 rm -rf /etc/partimaged |
pascal@2222 | 68 fi |
pascal@2222 | 69 } |
pascal@2222 | 70 |
pascal@2222 | 71 |