wok annotate partimage/receipt @ rev 4532
Add linux-bridge
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Nov 30 12:55:40 2009 +0100 (2009-11-30) |
parents | 89e187b7d309 |
children | f3327707164a |
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@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 |