diff options
author | Andrej Kacian <ticho@gentoo.org> | 2005-01-27 08:54:52 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2005-01-27 08:54:52 +0000 |
commit | 9ec07aabcd14d9c1eee4e9c05bbab5303edf2a3e (patch) | |
tree | 406b463478d98d2a247a4e8a988d3f1040cc0db8 /app-antivirus | |
parent | Fixed invalid atoms in *DEPEND. (diff) | |
download | gentoo-2-9ec07aabcd14d9c1eee4e9c05bbab5303edf2a3e.tar.gz gentoo-2-9ec07aabcd14d9c1eee4e9c05bbab5303edf2a3e.tar.bz2 gentoo-2-9ec07aabcd14d9c1eee4e9c05bbab5303edf2a3e.zip |
Revert back to milter.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'app-antivirus')
-rw-r--r-- | app-antivirus/clamav/ChangeLog | 9 | ||||
-rw-r--r-- | app-antivirus/clamav/clamav-0.81.ebuild | 20 |
2 files changed, 13 insertions, 16 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog index 9157f58c361b..69762477dedd 100644 --- a/app-antivirus/clamav/ChangeLog +++ b/app-antivirus/clamav/ChangeLog @@ -1,13 +1,12 @@ # ChangeLog for app-antivirus/clamav # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.35 2005/01/27 08:39:02 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.36 2005/01/27 08:54:52 ticho Exp $ *clamav-0.81 (27 Jan 2005) 27 Jan 2005; Andrej Kacian <ticho@gentoo.org> files/clamd.rc, +clamav-0.81.ebuild: - Version bump. Added "provide antivirus" to the initscript. Disabled milter - useflag, since it requires libmilter, which is not in portage. + Version bump. Added "provide antivirus" to the initscript. 26 Jan 2005; petre rodan <kaiowas@gentoo.org> clamav-0.75.1.ebuild, clamav-0.80.ebuild, clamav-0.81_rc1.ebuild: @@ -34,7 +33,7 @@ 28 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance - 11 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> clamav-0.80.ebuild: + 11 Dec 2004; Bryan Ăstergaard <kloeri@gentoo.org> clamav-0.80.ebuild: ~alpha keyword. 30 Nov 2004; Guy Martin <gmsoft@gentoo.org> clamav-0.80.ebuild: @@ -144,7 +143,7 @@ 04 May 2004; Luca Barbato <lu_zero@gentoo.org> clamav-0.70.ebuild: Marked ppc - 30 Apr 2004; Bryan Østergaard <kloeri@gentoo.org> clamav-0.70.ebuild: + 30 Apr 2004; Bryan Ăstergaard <kloeri@gentoo.org> clamav-0.70.ebuild: Stable on alpha. 29 Apr 2004; Jason Wever <weeve@gentoo.org> clamav-0.70.ebuild: diff --git a/app-antivirus/clamav/clamav-0.81.ebuild b/app-antivirus/clamav/clamav-0.81.ebuild index c2ebeb1c52d4..20b420c8e4d2 100644 --- a/app-antivirus/clamav/clamav-0.81.ebuild +++ b/app-antivirus/clamav/clamav-0.81.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.81.ebuild,v 1.1 2005/01/27 08:39:02 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.81.ebuild,v 1.2 2005/01/27 08:54:52 ticho Exp $ inherit eutils flag-o-matic @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/clamav/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~hppa ~alpha ~ppc64" -IUSE="crypt selinux" +IUSE="crypt milter selinux" DEPEND="virtual/libc crypt? ( >=dev-libs/gmp-4.1.2 )" @@ -31,9 +31,7 @@ src_compile() { local myconf - # Disabled milter useflag, since it needs libmilter, which is not in portage - # - ticho (2005-01-27) - #use milter && myconf="--enable-milter" + use milter && myconf="--enable-milter" econf ${myconf} --with-dbdir=/var/lib/clamav || die emake || die } @@ -55,10 +53,10 @@ pkg_postinst() { 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 howto setup the clamav-milter..." - # einfo "" - # einfo "less /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" - # echo - #fi + if use milter ; then + einfo "For simple instructions howto setup the clamav-milter..." + einfo "" + einfo "less /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz" + echo + fi } |