wok-current annotate clamav/receipt @ rev 16052
clamav: update genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 10 15:33:31 2014 +0000 (2014-03-10) |
parents | 557893108cf7 |
children | e43926392669 |
rev | line source |
---|---|
paul@1104 | 1 # SliTaz package receipt. |
paul@1104 | 2 |
paul@1104 | 3 PACKAGE="clamav" |
pascal@16051 | 4 VERSION="0.98.1" |
paul@1104 | 5 CATEGORY="security" |
paul@1341 | 6 SHORT_DESC="Antivirus." |
paul@1104 | 7 MAINTAINER="paul@slitaz.org" |
pascal@16051 | 8 LICENSE="GPL2" |
paul@1104 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@1104 | 10 WEB_SITE="http://www.clamav.net/" |
slaxemulator@7479 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@4933 | 12 TAGS="antivirus" |
paul@1104 | 13 |
slaxemulator@10996 | 14 DEPENDS="zlib gmp bzip2 slitaz-base-files ncurses libltdl" |
slaxemulator@10996 | 15 BUILD_DEPENDS="zlib-dev gmp gmp-dev bzip2-dev ncurses-dev bash" |
slaxemulator@10996 | 16 |
paul@1104 | 17 # Rules to configure and make the package. |
paul@1104 | 18 compile_rules() |
paul@1104 | 19 { |
paul@1104 | 20 # Have to create clamav user/group to be able to compile |
slaxemulator@15826 | 21 adduser -s /bin/false -H -D -u 64 clamav |
paul@1104 | 22 |
paul@1104 | 23 cd $src |
paul@1104 | 24 ./configure \ |
paul@1104 | 25 --sysconfdir=/etc/clamav \ |
pascal@3076 | 26 --with-iconv=no \ |
slaxemulator@15826 | 27 $CONFIGURE_ARGS && |
slaxemulator@15826 | 28 make && |
slaxemulator@15826 | 29 make DESTDIR=$DESTDIR install |
paul@1104 | 30 } |
paul@1104 | 31 |
paul@1104 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@1104 | 33 genpkg_rules() |
paul@1104 | 34 { |
erjo@11931 | 35 mkdir -p $fs/usr/lib $fs/usr/share $fs/etc/init.d \ |
erjo@11931 | 36 $fs/var/log/clamav $fs/var/run/clamav |
erjo@11931 | 37 cp -a $install/usr/bin $fs/usr |
slaxemulator@15826 | 38 rm -f $fs/usr/bin/clamav-config |
erjo@11931 | 39 cp -a $install/usr/sbin $fs/usr |
erjo@11931 | 40 cp -a $install/etc $fs |
pascal@16052 | 41 mv $fs/etc/clamav/clamd.conf* $fs/etc/clamav/clamd.conf |
pascal@16052 | 42 mv $fs/etc/clamav/freshclam.conf* $fs/etc/clamav/freshclam.conf |
paul@1104 | 43 # Copy only shared lib (.so) |
erjo@11931 | 44 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@9697 | 45 # Copy daemon from /$stuff |
pankso@9697 | 46 cp $stuff/daemon-clamd $fs/etc/init.d/clamd |
erjo@11931 | 47 |
erjo@11931 | 48 # Customize config |
erjo@11931 | 49 sed -i -e "s/^Example/#Example/" \ |
erjo@11931 | 50 -e "s|^#LogFile /tmp/clamd.log|LogFile /var/log/clamav/clamav.log|" \ |
erjo@11931 | 51 -e "s|^#PidFile.*|PidFile /var/run/clamav/clamd.pid|" \ |
erjo@11931 | 52 -e "s|^#LocalSocket /tmp/clamd.socket|LocalSocket /var/run/clamav/clamd.ctl|" \ |
erjo@11931 | 53 $fs/etc/clamav/clamd.conf |
erjo@11931 | 54 |
paul@1104 | 55 } |
paul@1104 | 56 |
paul@1104 | 57 post_install() |
paul@1104 | 58 { |
erjo@11931 | 59 |
erjo@11931 | 60 local user |
erjo@11931 | 61 local group |
erjo@11931 | 62 |
erjo@11931 | 63 user=clamav |
erjo@11931 | 64 group=clamav |
erjo@11931 | 65 |
paul@1104 | 66 echo "Processing post-install commands..." |
paul@1104 | 67 |
paul@1104 | 68 # Enable freshclam update |
paul@1104 | 69 echo -n "Enabling freshclam update..." |
pascal@1137 | 70 cd $1/etc/clamav |
paul@5652 | 71 sed -i 's/^Example/#Example/' freshclam.conf |
paul@1104 | 72 status |
paul@1104 | 73 |
paul@1104 | 74 # adduser clamav if needed |
erjo@11931 | 75 if ! grep -q "${user}:" $1/etc/passwd; then |
erjo@11931 | 76 echo -n "Adding user/group $user..." |
erjo@11931 | 77 chroot $1/ addgroup -S $group |
erjo@11931 | 78 chroot $1/ adduser -s /bin/false -S -D -H -G $group $user |
paul@1104 | 79 status |
paul@1104 | 80 fi |
paul@1595 | 81 |
paul@1707 | 82 # Enable daily.cvd updates (sometimes needed for new version) |
erjo@11931 | 83 chown -R ${user}:${group} $1/usr/share/clamav |
erjo@11931 | 84 |
erjo@11931 | 85 # Fix perms |
erjo@11931 | 86 chroot $1/ chown -R ${user}.${group} /var/log/clamav \ |
erjo@11931 | 87 /var/run/clamav |
erjo@11931 | 88 |
paul@1104 | 89 } |
paul@1104 | 90 |
paul@1104 | 91 # Del user clamav when pkg is removed. |
paul@1104 | 92 post_remove() |
paul@1104 | 93 { |
slaxemulator@10996 | 94 chroot "$1/" deluser clamav |
paul@1104 | 95 } |
paul@1104 | 96 |