diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-12-24 21:07:22 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-12-24 21:07:22 +0000 |
commit | 326cc475264749c5767234dfc8878e8a2a47ab66 (patch) | |
tree | 78172c05efe2021b16e092112534418b2f506a8c /app-antivirus/clamav | |
parent | Added app-antivirus/clamav:logrotate entry (diff) | |
download | gentoo-2-326cc475264749c5767234dfc8878e8a2a47ab66.tar.gz gentoo-2-326cc475264749c5767234dfc8878e8a2a47ab66.tar.bz2 gentoo-2-326cc475264749c5767234dfc8878e8a2a47ab66.zip |
Include script for logrotate (and logrotate USE flag). Closes bug #122070, reported by Tóth Csaba <tsabi-gentoo at tsabi.hu>.
(Portage version: 2.1.2_rc3-r7)
Diffstat (limited to 'app-antivirus/clamav')
-rw-r--r-- | app-antivirus/clamav/ChangeLog | 9 | ||||
-rw-r--r-- | app-antivirus/clamav/clamav-0.88.7-r2.ebuild | 135 | ||||
-rw-r--r-- | app-antivirus/clamav/files/clamav.logrotate | 17 | ||||
-rw-r--r-- | app-antivirus/clamav/files/digest-clamav-0.88.7-r2 | 3 |
4 files changed, 163 insertions, 1 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog index 6c9306a20948..d12027c82a5f 100644 --- a/app-antivirus/clamav/ChangeLog +++ b/app-antivirus/clamav/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-antivirus/clamav # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.192 2006/12/20 21:10:32 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.193 2006/12/24 21:07:22 ticho Exp $ + +*clamav-0.88.7-r2 (24 Dec 2006) + + 24 Dec 2006; Andrej Kacian <ticho@gentoo.org> +files/clamav.logrotate, + +clamav-0.88.7-r2.ebuild: + Include script for logrotate (and logrotate USE flag). Closes bug #122070, + reported by Tóth Csaba <tsabi-gentoo at tsabi.hu>. 20 Dec 2006; Timothy Redaelli <drizzt@gentoo.org> clamav-0.88.7-r1.ebuild: Readded ~x86-fbsd keyword since dazuko-2.3.2-r2 is keyworded diff --git a/app-antivirus/clamav/clamav-0.88.7-r2.ebuild b/app-antivirus/clamav/clamav-0.88.7-r2.ebuild new file mode 100644 index 000000000000..82f5ebaed03a --- /dev/null +++ b/app-antivirus/clamav/clamav-0.88.7-r2.ebuild @@ -0,0 +1,135 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.88.7-r2.ebuild,v 1.1 2006/12/24 21:07:22 ticho Exp $ + +inherit eutils flag-o-matic fixheadtails + +DESCRIPTION="Clam Anti-Virus Scanner" +HOMEPAGE="http://www.clamav.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="crypt logrotate mailwrapper milter onaccess selinux" + +DEPEND="virtual/libc + crypt? ( >=dev-libs/gmp-4.1.2 ) + milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) + onaccess? ( sys-fs/dazuko ) + >=sys-libs/zlib-1.2.1-r3 + >=net-misc/curl-7.10.0 + >=sys-apps/sed-4" +RDEPEND="${DEPEND} + selinux? ( sec-policy/selinux-clamav ) + logrotate? ( app-admin/logrotate ) + sys-apps/grep" +PROVIDE="virtual/antivirus" + +pkg_setup() { + if use milter; then + if [ ! -e /usr/lib/libmilter.a ] ; then + ewarn "In order to enable milter support, clamav needs sendmail with enabled milter" + ewarn "USE flag. Either recompile sendmail with milter USE flag enabled, or disable" + ewarn "this flag for clamav as well to disable milter support." + die "need milter-enabled sendmail" + fi + fi + if use onaccess ; then + echo + ewarn "Warning: On access scan support is experimental!" + echo + fi + enewgroup clamav + enewuser clamav -1 -1 /dev/null clamav +} + +src_compile() { + has_version =sys-libs/glibc-2.2* && filter-lfs-flags + + local myconf + + # we depend on fixed zlib, so we can disable this check to prevent redundant + # warning (bug #61749) + myconf="${myconf} --disable-zlib-vcheck" + # use id utility instead of /etc/passwd parsing (bug #72540) + myconf="${myconf} --enable-id-check" + use milter && { + myconf="${myconf} --enable-milter" + use mailwrapper && \ + myconf="${myconf} --with-sendmail=/usr/sbin/sendmail.sendmail" + } + + ht_fix_file configure + econf ${myconf} \ + $(use_enable onaccess clamuko) \ + --with-dbdir=/var/lib/clamav || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS BUGS NEWS README ChangeLog FAQ INSTALL + newconfd ${FILESDIR}/clamd.conf clamd + newinitd ${FILESDIR}/clamd.rc clamd + dodoc ${FILESDIR}/clamav-milter.README.gentoo + + dodir /var/run/clamav + keepdir /var/run/clamav + fowners clamav:clamav /var/run/clamav + dodir /var/log/clamav + keepdir /var/log/clamav + fowners clamav:clamav /var/log/clamav + + # Change /etc/clamd.conf to be usable out of the box + sed -i -e "s:^\(Example\):\# \1:" \ + -e "s:.*\(PidFile\) .*:\1 /var/run/clamav/clamd.pid:" \ + -e "s:.*\(LocalSocket\) .*:\1 /var/run/clamav/clamd.sock:" \ + -e "s:.*\(User\) .*:\1 clamav:" \ + -e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \ + -e "s:^\#\(LogTime\).*:\1:" \ + ${D}/etc/clamd.conf + + # Do the same for /etc/freshclam.conf + sed -i -e "s:^\(Example\):\# \1:" \ + -e "s:.*\(PidFile\) .*:\1 /var/run/clamav/freshclam.pid:" \ + -e "s:.*\(DatabaseOwner\) .*:\1 clamav:" \ + -e "s:^\#\(LogFile\) .*:\1 /var/log/freshclam.log:" \ + -e "s:^\#\(LogTime\).*:\1:" \ + ${D}/etc/freshclam.conf + + if use milter ; then + echo "START_MILTER=no" \ + >> ${D}/etc/conf.d/clamd + echo "MILTER_SOCKET=\"/var/run/clamav/clmilter.sock\"" \ + >>${D}/etc/conf.d/clamd + echo "MILTER_OPTS=\"-m 10 --timeout=0\"" \ + >>${D}/etc/conf.d/clamd + fi + + if use onaccess ; then + dodir /etc/udev/rules.d + echo "KERNEL==\"dazuko\", NAME=\"%k\", GROUP=\"clamav\", MODE=\"0660\"" \ + >${D}/etc/udev/rules.d/60-dazuko.rules + fi + + if use logrotate ; then + diropts "" + dodir /etc/logrotate.d + insopts -m0644 + insinto /etc/logrotate.d + newins ${FILESDIR}/${PN}.logrotate ${PN} + fi +} + +pkg_postinst() { + echo + ewarn "Warning: clamd and/or freshclam have not been restarted." + ewarn "You should restart them with: /etc/init.d/clamd restart" + echo + if use milter ; then + einfo "For simple instructions how to setup the clamav-milter type:" + echo " zless /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" + echo + fi +} diff --git a/app-antivirus/clamav/files/clamav.logrotate b/app-antivirus/clamav/files/clamav.logrotate new file mode 100644 index 000000000000..a87d45d31690 --- /dev/null +++ b/app-antivirus/clamav/files/clamav.logrotate @@ -0,0 +1,17 @@ +/var/log/clamav/clamd.log { + missingok + create 640 clamav clamav + postrotate + /bin/kill -HUP `cat /var/run/clamav/clamd.pid 2> /dev/null` 2> +/dev/null || true + endscript +} + +/var/log/clamav/freshclam.log { + missingok + create 640 clamav clamav + postrotate + /bin/kill -HUP `cat /var/run/clamav/freshclam.pid 2> /dev/null` 2> +/dev/null || true + endscript +} diff --git a/app-antivirus/clamav/files/digest-clamav-0.88.7-r2 b/app-antivirus/clamav/files/digest-clamav-0.88.7-r2 new file mode 100644 index 000000000000..766a04de5f01 --- /dev/null +++ b/app-antivirus/clamav/files/digest-clamav-0.88.7-r2 @@ -0,0 +1,3 @@ +MD5 34a9d58cf5bcb04dbe3eb32b5367a3f8 clamav-0.88.7.tar.gz 9510548 +RMD160 14d7c6255df618b16b704fc1cb5ce2b1385fa0e8 clamav-0.88.7.tar.gz 9510548 +SHA256 702cb5928bff3d0e647a4a6b505d434e3a0f10f2af74bddac5239a200b92d1e2 clamav-0.88.7.tar.gz 9510548 |