wok annotate partimage/receipt @ rev 5195

slitaz-doc: fix version for 3.0
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 17:16:33 2010 +0200 (2010-03-28)
parents ab3be1ac9c50
children c79e4c1abb03
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@5005 8 DEPENDS="newt bzip2 openssl slitaz-base-files zlib gcc-lib-base"
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@4229 17 busybox patch -p0 -i stuff/partimage-0.6.7_gcc4.u
erjo@4229 18
erjo@582 19 cd $src
erjo@582 20 ./configure --prefix=/usr \
erjo@582 21 --sysconfdir=/etc \
erjo@582 22 --infodir=/usr/share/info \
pascal@1484 23 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1484 24 make &&
erjo@582 25 make DESTDIR=$PWD/_pkg install
erjo@582 26 }
erjo@582 27
erjo@582 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@582 29 genpkg_rules()
erjo@582 30 {
erjo@582 31 mkdir -p $fs/usr $fs/etc/init.d
erjo@582 32 cp -a $_pkg/usr/sbin $fs/usr
erjo@582 33 cp -a $_pkg/etc $fs/
erjo@582 34 install -g root -o root -m 0600 stuff/etc/partimaged/partimaged.* $fs/etc/partimaged
erjo@582 35 install -g root -o root -m 0755 stuff/etc/init.d/partimaged $fs/etc/init.d
erjo@582 36 strip -s $fs/usr/sbin/*
erjo@582 37 }
erjo@582 38
erjo@582 39 post_install()
erjo@582 40 {
erjo@582 41 echo "Processing post install commands..."
erjo@582 42 echo "Adding user/group partimag..."
pascal@1137 43 chroot $1/ adduser -S -H -D partimag
erjo@582 44
erjo@582 45 echo "Setting permissions for config files"
pascal@1137 46 chmod 0600 $1/etc/partimaged/*
pascal@1137 47 chown partimag.partimag $1/etc/partimaged/*
erjo@582 48
erjo@582 49 echo " Creating image files directory"
pascal@1137 50 install -g partimag -o partimag -m 0755 -d $1/var/lib/partimaged
erjo@582 51
erjo@582 52 echo ""
erjo@582 53 echo -e "\nTo starts $PACKAGE server you can run :\n"
erjo@582 54 echo "/etc/init.d/partimaged start"
erjo@582 55 echo -e "Or add partimaged to RUN_DAEMONS in /etc/rcS.conf\n"
erjo@582 56 }
erjo@582 57
erjo@582 58 post_remove()
erjo@582 59 {
erjo@582 60 deluser partimag
erjo@582 61 delgroup partimag
erjo@582 62
erjo@582 63 if [ -f /etc/paritimaged ]; then
erjo@582 64 rm -rf /etc/partimaged
erjo@582 65 fi
erjo@582 66 }
erjo@582 67
erjo@582 68