diff options
author | Andrej Kacian <ticho@gentoo.org> | 2007-08-21 09:17:30 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2007-08-21 09:17:30 +0000 |
commit | a8090995753d00c75eafaa50acaec12f2b5824fe (patch) | |
tree | 4d3f20aaa1fac2c7cd3a093298bf4018c65fe9f2 /app-antivirus | |
parent | Stable on x86 wrt bug #189359 (diff) | |
download | gentoo-2-a8090995753d00c75eafaa50acaec12f2b5824fe.tar.gz gentoo-2-a8090995753d00c75eafaa50acaec12f2b5824fe.tar.bz2 gentoo-2-a8090995753d00c75eafaa50acaec12f2b5824fe.zip |
Version bump. Removed obsolete ebuilds.
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'app-antivirus')
18 files changed, 16 insertions, 969 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog index fece81856a44..db29a74298be 100644 --- a/app-antivirus/clamav/ChangeLog +++ b/app-antivirus/clamav/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-antivirus/clamav # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.245 2007/07/17 06:13:53 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.246 2007/08/21 09:17:29 ticho Exp $ + +*clamav-0.91.2 (21 Aug 2007) + + 21 Aug 2007; Andrej Kacian <ticho@gentoo.org> -clamav-0.88.7.ebuild, + -clamav-0.88.7-r1.ebuild, -clamav-0.88.7-r2.ebuild, -clamav-0.90.ebuild, + -clamav-0.90.1.ebuild, -clamav-0.90.1-r1.ebuild, -clamav-0.90.2.ebuild, + -clamav-0.90.3.ebuild, +clamav-0.91.2.ebuild: + Version bump. Removed obsolete ebuilds. 17 Jul 2007; Jeroen Roovers <jer@gentoo.org> clamav-0.91.ebuild: Stable for HPPA (bug #185013). diff --git a/app-antivirus/clamav/clamav-0.88.7-r1.ebuild b/app-antivirus/clamav/clamav-0.88.7-r1.ebuild deleted file mode 100644 index 464bbce56ee9..000000000000 --- a/app-antivirus/clamav/clamav-0.88.7-r1.ebuild +++ /dev/null @@ -1,126 +0,0 @@ -# Copyright 1999-2007 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-r1.ebuild,v 1.5 2007/01/23 15:22:40 genone 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 milter selinux mailwrapper onaccess" - -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 ) - 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 -} - -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 - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi -} diff --git a/app-antivirus/clamav/clamav-0.88.7-r2.ebuild b/app-antivirus/clamav/clamav-0.88.7-r2.ebuild deleted file mode 100644 index 6a208b102713..000000000000 --- a/app-antivirus/clamav/clamav-0.88.7-r2.ebuild +++ /dev/null @@ -1,135 +0,0 @@ -# Copyright 1999-2007 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.2 2007/01/23 15:22:40 genone 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 - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi -} diff --git a/app-antivirus/clamav/clamav-0.88.7.ebuild b/app-antivirus/clamav/clamav-0.88.7.ebuild deleted file mode 100644 index f1b3c9cb1bd4..000000000000 --- a/app-antivirus/clamav/clamav-0.88.7.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2007 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.ebuild,v 1.7 2007/03/20 12:04:20 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 milter selinux mailwrapper" - -DEPEND="virtual/libc - crypt? ( >=dev-libs/gmp-4.1.2 ) - milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) - >=sys-libs/zlib-1.2.1-r3 - >=net-misc/curl-7.10.0 - >=sys-apps/sed-4" -RDEPEND="${DEPEND} - selinux? ( sec-policy/selinux-clamav ) - 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 - 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} --with-dbdir=/var/lib/clamav || die - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS BUGS NEWS README ChangeLog FAQ - 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 -} - -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 - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi -} diff --git a/app-antivirus/clamav/clamav-0.90.1.ebuild b/app-antivirus/clamav/clamav-0.90.1.ebuild deleted file mode 100644 index 91fb23b88e72..000000000000 --- a/app-antivirus/clamav/clamav-0.90.1.ebuild +++ /dev/null @@ -1,141 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.90.1.ebuild,v 1.4 2007/03/20 12:04:20 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="bzip2 crypt curl logrotate mailwrapper milter selinux" - -DEPEND="virtual/libc - bzip2? ( app-arch/bzip2 ) - crypt? ( >=dev-libs/gmp-4.1.2 ) - curl? ( >=net-misc/curl-7.10.0 ) - milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) - dev-libs/gmp - >=sys-libs/zlib-1.2.1-r3 - >=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 - enewgroup clamav - enewuser clamav -1 -1 /dev/null clamav -} - -src_unpack() { - unpack "${A}" - cd "${S}" - epatch "${FILESDIR}"/${P%.*}-compat.patch -} - -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 bzip2) \ - $(use_with curl libcurl) \ - --disable-experimental \ - --with-dbdir=/var/lib/clamav || die - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS BUGS NEWS README ChangeLog FAQ - 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 yes:" \ - ${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:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \ - -e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \ - -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \ - ${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 logrotate ; then - diropts "" - dodir /etc/logrotate.d - insopts -m0644 - insinto /etc/logrotate.d - newins ${FILESDIR}/${PN}.logrotate ${PN} - fi -} - -pkg_postinst() { - echo - if use milter ; then - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi - ewarn "Warning: clamd and/or freshclam have not been restarted." - ewarn "You should restart them to start using new version: /etc/init.d/clamd restart" - echo - ewarn "The soname for libclamav has changed after clamav-0.90." - ewarn "If you have upgraded from that or earlier version, it is recommended to run:" - ewarn - ewarn "revdep-rebuild --library libclamav.so.1" - ewarn - ewarn "This will fix linking errors caused by this change." - echo -} diff --git a/app-antivirus/clamav/clamav-0.90.2.ebuild b/app-antivirus/clamav/clamav-0.90.2.ebuild deleted file mode 100644 index 5dc18c7426ca..000000000000 --- a/app-antivirus/clamav/clamav-0.90.2.ebuild +++ /dev/null @@ -1,145 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.90.2.ebuild,v 1.8 2007/04/15 19:20:25 corsair Exp $ - -inherit autotools 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="bzip2 crypt curl logrotate mailwrapper milter nls selinux" - -DEPEND="virtual/libc - bzip2? ( app-arch/bzip2 ) - crypt? ( >=dev-libs/gmp-4.1.2 ) - curl? ( >=net-misc/curl-7.10.0 ) - milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) - nls? ( sys-devel/gettext ) - dev-libs/gmp - >=sys-libs/zlib-1.2.1-r3 - >=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 - enewgroup clamav - enewuser clamav -1 -1 /dev/null clamav -} - -src_unpack() { - unpack "${A}" - cd "${S}" - epatch "${FILESDIR}"/${P%.*}-compat.patch - epatch "${FILESDIR}"/${P%.*}-nls.patch - eautoreconf -} - -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 bzip2) \ - $(use_with curl libcurl) \ - $(use_enable nls) \ - --disable-experimental \ - --with-dbdir=/var/lib/clamav || die - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS BUGS NEWS README ChangeLog FAQ - 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 yes:" \ - ${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:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \ - -e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \ - -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \ - ${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 logrotate ; then - diropts "" - dodir /etc/logrotate.d - insopts -m0644 - insinto /etc/logrotate.d - newins ${FILESDIR}/${PN}.logrotate ${PN} - fi -} - -pkg_postinst() { - echo - if use milter ; then - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi - ewarn "Warning: clamd and/or freshclam have not been restarted." - ewarn "You should restart them to start using new version: /etc/init.d/clamd restart" - echo - ewarn "The soname for libclamav has changed after clamav-0.90." - ewarn "If you have upgraded from that or earlier version, it is recommended to run:" - ewarn - ewarn "revdep-rebuild --library libclamav.so.1" - ewarn - ewarn "This will fix linking errors caused by this change." - echo -} diff --git a/app-antivirus/clamav/clamav-0.90.3.ebuild b/app-antivirus/clamav/clamav-0.90.3.ebuild deleted file mode 100644 index bf8a300ea95c..000000000000 --- a/app-antivirus/clamav/clamav-0.90.3.ebuild +++ /dev/null @@ -1,145 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.90.3.ebuild,v 1.7 2007/06/04 12:34:20 gustavoz Exp $ - -inherit autotools 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="bzip2 crypt curl logrotate mailwrapper milter nls selinux" - -DEPEND="virtual/libc - bzip2? ( app-arch/bzip2 ) - crypt? ( >=dev-libs/gmp-4.1.2 ) - curl? ( >=net-misc/curl-7.10.0 ) - milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) - nls? ( sys-devel/gettext ) - dev-libs/gmp - >=sys-libs/zlib-1.2.1-r3 - >=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 - enewgroup clamav - enewuser clamav -1 -1 /dev/null clamav -} - -src_unpack() { - unpack "${A}" - cd "${S}" - epatch "${FILESDIR}"/${P%.*}-compat.patch - epatch "${FILESDIR}"/${P%.*}-nls.patch - eautoreconf -} - -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 bzip2) \ - $(use_with curl libcurl) \ - $(use_enable nls) \ - --disable-experimental \ - --with-dbdir=/var/lib/clamav || die - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS BUGS NEWS README ChangeLog FAQ - 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 yes:" \ - ${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:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \ - -e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \ - -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \ - ${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 logrotate ; then - diropts "" - dodir /etc/logrotate.d - insopts -m0644 - insinto /etc/logrotate.d - newins ${FILESDIR}/${PN}.logrotate ${PN} - fi -} - -pkg_postinst() { - echo - if use milter ; then - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi - ewarn "Warning: clamd and/or freshclam have not been restarted." - ewarn "You should restart them to start using new version: /etc/init.d/clamd restart" - echo - ewarn "The soname for libclamav has changed after clamav-0.90." - ewarn "If you have upgraded from that or earlier version, it is recommended to run:" - ewarn - ewarn "revdep-rebuild --library libclamav.so.1" - ewarn - ewarn "This will fix linking errors caused by this change." - echo -} diff --git a/app-antivirus/clamav/clamav-0.90.ebuild b/app-antivirus/clamav/clamav-0.90.ebuild deleted file mode 100644 index 9afe88612b37..000000000000 --- a/app-antivirus/clamav/clamav-0.90.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.90.ebuild,v 1.13 2007/03/28 18:17:38 armin76 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="bzip2 crypt curl logrotate mailwrapper milter selinux" - -DEPEND="virtual/libc - bzip2? ( app-arch/bzip2 ) - crypt? ( >=dev-libs/gmp-4.1.2 ) - curl? ( >=net-misc/curl-7.10.0 ) - milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) - dev-libs/gmp - >=sys-libs/zlib-1.2.1-r3 - >=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 - enewgroup clamav - enewuser clamav -1 -1 /dev/null clamav -} - -src_unpack() { - unpack "${A}" - cd "${S}" - epatch "${FILESDIR}"/${P}-compat.patch -} - -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 bzip2) \ - $(use_with curl libcurl) \ - --disable-experimental \ - --with-dbdir=/var/lib/clamav || die - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS BUGS NEWS README ChangeLog FAQ - 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 yes:" \ - ${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:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \ - -e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \ - -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \ - ${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 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 to start using new version: /etc/init.d/clamd restart" - echo - if use milter ; then - elog "For simple instructions how to setup the clamav-milter" - elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - echo - fi -} diff --git a/app-antivirus/clamav/clamav-0.90.1-r1.ebuild b/app-antivirus/clamav/clamav-0.91.2.ebuild index 0ff28945f533..976a15fc006e 100644 --- a/app-antivirus/clamav/clamav-0.90.1-r1.ebuild +++ b/app-antivirus/clamav/clamav-0.91.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.90.1-r1.ebuild,v 1.5 2007/03/20 12:04:20 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2.ebuild,v 1.1 2007/08/21 09:17:29 ticho Exp $ inherit autotools eutils flag-o-matic fixheadtails @@ -11,12 +11,11 @@ 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="bzip2 crypt curl logrotate mailwrapper milter nls selinux" +IUSE="bzip2 crypt logrotate mailwrapper milter nls selinux" DEPEND="virtual/libc bzip2? ( app-arch/bzip2 ) crypt? ( >=dev-libs/gmp-4.1.2 ) - curl? ( >=net-misc/curl-7.10.0 ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) nls? ( sys-devel/gettext ) dev-libs/gmp @@ -44,8 +43,8 @@ pkg_setup() { src_unpack() { unpack "${A}" cd "${S}" - epatch "${FILESDIR}"/${P%.*}-compat.patch - epatch "${FILESDIR}"/${P%.*}-nls.patch + epatch "${FILESDIR}"/${PN}-0.90-compat.patch + epatch "${FILESDIR}"/${PN}-0.90-nls.patch eautoreconf } @@ -68,7 +67,6 @@ src_compile() { ht_fix_file configure econf ${myconf} \ $(use_enable bzip2) \ - $(use_with curl libcurl) \ $(use_enable nls) \ --disable-experimental \ --with-dbdir=/var/lib/clamav || die diff --git a/app-antivirus/clamav/files/digest-clamav-0.88.7 b/app-antivirus/clamav/files/digest-clamav-0.88.7 deleted file mode 100644 index 766a04de5f01..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.88.7 +++ /dev/null @@ -1,3 +0,0 @@ -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 diff --git a/app-antivirus/clamav/files/digest-clamav-0.88.7-r1 b/app-antivirus/clamav/files/digest-clamav-0.88.7-r1 deleted file mode 100644 index 766a04de5f01..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.88.7-r1 +++ /dev/null @@ -1,3 +0,0 @@ -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 diff --git a/app-antivirus/clamav/files/digest-clamav-0.88.7-r2 b/app-antivirus/clamav/files/digest-clamav-0.88.7-r2 deleted file mode 100644 index 766a04de5f01..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.88.7-r2 +++ /dev/null @@ -1,3 +0,0 @@ -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 diff --git a/app-antivirus/clamav/files/digest-clamav-0.90 b/app-antivirus/clamav/files/digest-clamav-0.90 deleted file mode 100644 index e4c17f0e55f9..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.90 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 f04372e49c3c5ff3bd94bbe1fef2eaca clamav-0.90.tar.gz 11575374 -RMD160 1b22144d3a41376093b73bbeb5302092a18ca685 clamav-0.90.tar.gz 11575374 -SHA256 c39005318d4a7d27d9710c3d71396b8c500e0bc5a184cb7392051c9ca9dea60d clamav-0.90.tar.gz 11575374 diff --git a/app-antivirus/clamav/files/digest-clamav-0.90.1 b/app-antivirus/clamav/files/digest-clamav-0.90.1 deleted file mode 100644 index fe2fc17efcc2..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.90.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 cd11c05b5476262eaea4fa3bd7dc25bf clamav-0.90.1.tar.gz 11643310 -RMD160 1fd343d6510fea337a676e32bb1e4e404da4bd6d clamav-0.90.1.tar.gz 11643310 -SHA256 08a0255b4f6bdc4312eea6c118e79ecf684aed10640b45037d9dc5890c7687be clamav-0.90.1.tar.gz 11643310 diff --git a/app-antivirus/clamav/files/digest-clamav-0.90.1-r1 b/app-antivirus/clamav/files/digest-clamav-0.90.1-r1 deleted file mode 100644 index fe2fc17efcc2..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.90.1-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 cd11c05b5476262eaea4fa3bd7dc25bf clamav-0.90.1.tar.gz 11643310 -RMD160 1fd343d6510fea337a676e32bb1e4e404da4bd6d clamav-0.90.1.tar.gz 11643310 -SHA256 08a0255b4f6bdc4312eea6c118e79ecf684aed10640b45037d9dc5890c7687be clamav-0.90.1.tar.gz 11643310 diff --git a/app-antivirus/clamav/files/digest-clamav-0.90.2 b/app-antivirus/clamav/files/digest-clamav-0.90.2 deleted file mode 100644 index 41faa351398b..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.90.2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 39d1f07a399b551b55096b6ec7325c33 clamav-0.90.2.tar.gz 12062886 -RMD160 22daaecb634ca9914f18e85cf3456b544d6bf399 clamav-0.90.2.tar.gz 12062886 -SHA256 30df6a5d4a591dcd4acd7d4cce54dcfd260280fce6bbc9d19d240967bcdabbfa clamav-0.90.2.tar.gz 12062886 diff --git a/app-antivirus/clamav/files/digest-clamav-0.90.3 b/app-antivirus/clamav/files/digest-clamav-0.90.3 deleted file mode 100644 index 2160c6a8f2fd..000000000000 --- a/app-antivirus/clamav/files/digest-clamav-0.90.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 d42ccf7a32daeb7c7cc3c8c23a7793ea clamav-0.90.3.tar.gz 12496857 -RMD160 7dda3541afee8403c7fb98aa827f14b5a7a1d6ce clamav-0.90.3.tar.gz 12496857 -SHA256 939913d15ad0dc583ba609274ae61a948f4fa18b848bd503d958feacdaab54a4 clamav-0.90.3.tar.gz 12496857 diff --git a/app-antivirus/clamav/files/digest-clamav-0.91.2 b/app-antivirus/clamav/files/digest-clamav-0.91.2 new file mode 100644 index 000000000000..dff507b523df --- /dev/null +++ b/app-antivirus/clamav/files/digest-clamav-0.91.2 @@ -0,0 +1,3 @@ +MD5 2a7265d17cfa80c32858978f16a3f47b clamav-0.91.2.tar.gz 13394538 +RMD160 9e181a7a4fd08377ff47663aed27f8cc97249a21 clamav-0.91.2.tar.gz 13394538 +SHA256 dac9de86dff5ef4c9a6e4962da24988e1aa74948a21b7fb7b7fed17867ddf2a0 clamav-0.91.2.tar.gz 13394538 |