wok annotate partimage/receipt @ rev 2623

Fix: php build depends.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Apr 15 12:05:37 2009 +0200 (2009-04-15)
parents 43431755fb4c
children ab3be1ac9c50
rev   line source
erjo@582 1 # SliTaz package receipt.
erjo@582 2
erjo@582 3 PACKAGE="partimage"
erjo@582 4 VERSION="0.6.7"
erjo@582 5 CATEGORY="system-tools"
erjo@582 6 SHORT_DESC="Saves partitions in an image file."
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@2457 8 DEPENDS="newt bzip2 openssl slitaz-base-files zlib"
pascal@1484 9 BUILD_DEPENDS="newt newt-dev slang-dev bzip2-dev openssl-dev"
erjo@582 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@582 11 WEB_SITE="http://www.partimage.org/Index.fr.html"
erjo@582 12 WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/partimage/$TARBALL"
erjo@582 13
erjo@582 14 # Rules to configure and make the package.
erjo@582 15 compile_rules()
erjo@582 16 {
erjo@582 17 cd $src
erjo@582 18 ./configure --prefix=/usr \
erjo@582 19 --sysconfdir=/etc \
erjo@582 20 --infodir=/usr/share/info \
pascal@1484 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1484 22 make &&
erjo@582 23 make DESTDIR=$PWD/_pkg install
erjo@582 24 }
erjo@582 25
erjo@582 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@582 27 genpkg_rules()
erjo@582 28 {
erjo@582 29 mkdir -p $fs/usr $fs/etc/init.d
erjo@582 30 cp -a $_pkg/usr/sbin $fs/usr
erjo@582 31 cp -a $_pkg/etc $fs/
erjo@582 32 install -g root -o root -m 0600 stuff/etc/partimaged/partimaged.* $fs/etc/partimaged
erjo@582 33 install -g root -o root -m 0755 stuff/etc/init.d/partimaged $fs/etc/init.d
erjo@582 34 strip -s $fs/usr/sbin/*
erjo@582 35 }
erjo@582 36
erjo@582 37 post_install()
erjo@582 38 {
erjo@582 39 echo "Processing post install commands..."
erjo@582 40 echo "Adding user/group partimag..."
pascal@1137 41 chroot $1/ adduser -S -H -D partimag
erjo@582 42
erjo@582 43 echo "Setting permissions for config files"
pascal@1137 44 chmod 0600 $1/etc/partimaged/*
pascal@1137 45 chown partimag.partimag $1/etc/partimaged/*
erjo@582 46
erjo@582 47 echo " Creating image files directory"
pascal@1137 48 install -g partimag -o partimag -m 0755 -d $1/var/lib/partimaged
erjo@582 49
erjo@582 50 echo ""
erjo@582 51 echo -e "\nTo starts $PACKAGE server you can run :\n"
erjo@582 52 echo "/etc/init.d/partimaged start"
erjo@582 53 echo -e "Or add partimaged to RUN_DAEMONS in /etc/rcS.conf\n"
erjo@582 54 }
erjo@582 55
erjo@582 56 post_remove()
erjo@582 57 {
erjo@582 58 deluser partimag
erjo@582 59 delgroup partimag
erjo@582 60
erjo@582 61 if [ -f /etc/paritimaged ]; then
erjo@582 62 rm -rf /etc/partimaged
erjo@582 63 fi
erjo@582 64 }
erjo@582 65
erjo@582 66