wok annotate clamav/receipt @ rev 12099

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