summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2007-03-20 12:04:20 +0000
committerAndrej Kacian <ticho@gentoo.org>2007-03-20 12:04:20 +0000
commitc20d0e30845028980d47c22dd7df8ce335ba3e2b (patch)
tree49dcbda31ca3c2bc3b6b3b7fd3283182f670575d /app-antivirus
parentStable on x86. (diff)
downloadgentoo-2-c20d0e30845028980d47c22dd7df8ce335ba3e2b.tar.gz
gentoo-2-c20d0e30845028980d47c22dd7df8ce335ba3e2b.tar.bz2
gentoo-2-c20d0e30845028980d47c22dd7df8ce335ba3e2b.zip
Removing obsolete ebuilds.
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-antivirus')
-rw-r--r--app-antivirus/clamav/ChangeLog7
-rw-r--r--app-antivirus/clamav/clamav-0.88.5.ebuild112
-rw-r--r--app-antivirus/clamav/clamav-0.88.6.ebuild112
-rw-r--r--app-antivirus/clamav/clamav-0.88.7.ebuild4
-rw-r--r--app-antivirus/clamav/clamav-0.90.1-r1.ebuild4
-rw-r--r--app-antivirus/clamav/clamav-0.90.1.ebuild4
-rw-r--r--app-antivirus/clamav/clamav-0.90.ebuild4
-rw-r--r--app-antivirus/clamav/files/digest-clamav-0.88.53
-rw-r--r--app-antivirus/clamav/files/digest-clamav-0.88.63
9 files changed, 14 insertions, 239 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog
index 8d1030dca417..345241756a49 100644
--- a/app-antivirus/clamav/ChangeLog
+++ b/app-antivirus/clamav/ChangeLog
@@ -1,6 +1,11 @@
# 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.213 2007/03/15 13:25:25 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.214 2007/03/20 12:04:20 ticho Exp $
+
+ 20 Mar 2007; Andrej Kacian <ticho@gentoo.org> -clamav-0.88.5.ebuild,
+ -clamav-0.88.6.ebuild, clamav-0.88.7.ebuild, clamav-0.90.ebuild,
+ clamav-0.90.1.ebuild, clamav-0.90.1-r1.ebuild:
+ Removing obsolete ebuilds.
15 Mar 2007; Andrej Kacian <ticho@gentoo.org> files/clamd.rc:
Always fix permissions for clamd and freshclam logs. Bug #170739, by Sergey
diff --git a/app-antivirus/clamav/clamav-0.88.5.ebuild b/app-antivirus/clamav/clamav-0.88.5.ebuild
deleted file mode 100644
index 6353bd841eb5..000000000000
--- a/app-antivirus/clamav/clamav-0.88.5.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.5.ebuild,v 1.9 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"
-IUSE="crypt milter selinux mailwrapper"
-
-DEPEND="virtual/libc
- crypt? ( >=dev-libs/gmp-4.1.2 )
- milter? ( 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 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
-}
-
-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.6.ebuild b/app-antivirus/clamav/clamav-0.88.6.ebuild
deleted file mode 100644
index f46a7f71406c..000000000000
--- a/app-antivirus/clamav/clamav-0.88.6.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.6.ebuild,v 1.7 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"
-
-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 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
-}
-
-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
index 976fc2ff1a91..f1b3c9cb1bd4 100644
--- a/app-antivirus/clamav/clamav-0.88.7.ebuild
+++ b/app-antivirus/clamav/clamav-0.88.7.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.88.7.ebuild,v 1.6 2007/01/23 15:22:40 genone Exp $
+# $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
@@ -60,7 +60,7 @@ src_compile() {
src_install() {
make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS NEWS README ChangeLog FAQ INSTALL
+ dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
newconfd ${FILESDIR}/clamd.conf clamd
newinitd ${FILESDIR}/clamd.rc clamd
dodoc ${FILESDIR}/clamav-milter.README.gentoo
diff --git a/app-antivirus/clamav/clamav-0.90.1-r1.ebuild b/app-antivirus/clamav/clamav-0.90.1-r1.ebuild
index bf56afba7620..0ff28945f533 100644
--- a/app-antivirus/clamav/clamav-0.90.1-r1.ebuild
+++ b/app-antivirus/clamav/clamav-0.90.1-r1.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.4 2007/03/11 05:57:37 ticho Exp $
+# $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 $
inherit autotools eutils flag-o-matic fixheadtails
@@ -77,7 +77,7 @@ src_compile() {
src_install() {
make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS NEWS README ChangeLog FAQ INSTALL
+ dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
newconfd ${FILESDIR}/clamd.conf clamd
newinitd ${FILESDIR}/clamd.rc clamd
dodoc ${FILESDIR}/clamav-milter.README.gentoo
diff --git a/app-antivirus/clamav/clamav-0.90.1.ebuild b/app-antivirus/clamav/clamav-0.90.1.ebuild
index 4f16a1bbb91f..91fb23b88e72 100644
--- a/app-antivirus/clamav/clamav-0.90.1.ebuild
+++ b/app-antivirus/clamav/clamav-0.90.1.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.ebuild,v 1.3 2007/03/11 05:57:37 ticho Exp $
+# $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
@@ -73,7 +73,7 @@ src_compile() {
src_install() {
make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS NEWS README ChangeLog FAQ INSTALL
+ dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
newconfd ${FILESDIR}/clamd.conf clamd
newinitd ${FILESDIR}/clamd.rc clamd
dodoc ${FILESDIR}/clamav-milter.README.gentoo
diff --git a/app-antivirus/clamav/clamav-0.90.ebuild b/app-antivirus/clamav/clamav-0.90.ebuild
index a22747a296df..aae627af0919 100644
--- a/app-antivirus/clamav/clamav-0.90.ebuild
+++ b/app-antivirus/clamav/clamav-0.90.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.ebuild,v 1.11 2007/03/11 05:57:37 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.90.ebuild,v 1.12 2007/03/20 12:04:20 ticho Exp $
inherit eutils flag-o-matic fixheadtails
@@ -73,7 +73,7 @@ src_compile() {
src_install() {
make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS NEWS README ChangeLog FAQ INSTALL
+ dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
newconfd ${FILESDIR}/clamd.conf clamd
newinitd ${FILESDIR}/clamd.rc clamd
dodoc ${FILESDIR}/clamav-milter.README.gentoo
diff --git a/app-antivirus/clamav/files/digest-clamav-0.88.5 b/app-antivirus/clamav/files/digest-clamav-0.88.5
deleted file mode 100644
index 46c94b0f5090..000000000000
--- a/app-antivirus/clamav/files/digest-clamav-0.88.5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 d62376205647b208eba4191dde821830 clamav-0.88.5.tar.gz 8663193
-RMD160 b0e24b90f2a085ded89fcd90f3434d6bc1981caf clamav-0.88.5.tar.gz 8663193
-SHA256 8b807fcb64e2c523d7da8002ca1174c4173526ae48a7deecca41db30f51cee8f clamav-0.88.5.tar.gz 8663193
diff --git a/app-antivirus/clamav/files/digest-clamav-0.88.6 b/app-antivirus/clamav/files/digest-clamav-0.88.6
deleted file mode 100644
index c52da2995c36..000000000000
--- a/app-antivirus/clamav/files/digest-clamav-0.88.6
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 db7f8b947bc21023f36e04bfdd555dd0 clamav-0.88.6.tar.gz 8929534
-RMD160 efa53c600a70a8f808fbf9cde92ebf193b76e574 clamav-0.88.6.tar.gz 8929534
-SHA256 cc7f90983aa61b3d893c3311e3f832c5faa204467143cff597ad80bf8ad24daa clamav-0.88.6.tar.gz 8929534