summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-06-24 20:07:37 +0000
committerTim Harder <radhermit@gentoo.org>2012-06-24 20:07:37 +0000
commitefd256f794faf354711b23bd851e5f2c836dc273 (patch)
treef1c75b62471129bf4eb1aeb051c9481777b1257e
parentSpecify the PID file that SSD should look at since MythBackend makes the PID ... (diff)
downloadgentoo-2-efd256f794faf354711b23bd851e5f2c836dc273.tar.gz
gentoo-2-efd256f794faf354711b23bd851e5f2c836dc273.tar.bz2
gentoo-2-efd256f794faf354711b23bd851e5f2c836dc273.zip
Use prune_libtool_files instead of autotools-utils.
(Portage version: 2.1.11.1/cvs/Linux x86_64)
-rw-r--r--app-antivirus/clamav/ChangeLog5
-rw-r--r--app-antivirus/clamav/clamav-0.97.5.ebuild30
2 files changed, 19 insertions, 16 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog
index 550a3505f7c2..40ae1ce2abd8 100644
--- a/app-antivirus/clamav/ChangeLog
+++ b/app-antivirus/clamav/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-antivirus/clamav
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.417 2012/06/24 16:34:40 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.418 2012/06/24 20:07:37 radhermit Exp $
+
+ 24 Jun 2012; Tim Harder <radhermit@gentoo.org> clamav-0.97.5.ebuild:
+ Use prune_libtool_files instead of autotools-utils.
*clamav-0.97.5 (24 Jun 2012)
diff --git a/app-antivirus/clamav/clamav-0.97.5.ebuild b/app-antivirus/clamav/clamav-0.97.5.ebuild
index a0b30f08225b..67de6acf7bea 100644
--- a/app-antivirus/clamav/clamav-0.97.5.ebuild
+++ b/app-antivirus/clamav/clamav-0.97.5.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.97.5.ebuild,v 1.1 2012/06/24 16:34:40 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.97.5.ebuild,v 1.2 2012/06/24 20:07:37 radhermit Exp $
EAPI=4
-inherit eutils autotools-utils flag-o-matic user
+inherit eutils flag-o-matic user
DESCRIPTION="Clam Anti-Virus Scanner"
HOMEPAGE="http://www.clamav.net/"
@@ -42,26 +42,24 @@ pkg_setup() {
src_prepare() {
use ppc64 && append-flags -mminimal-toc
- autotools-utils_src_prepare
}
src_configure() {
- local myeconfargs=(
- --disable-experimental
- --enable-id-check
- --with-dbdir=/var/lib/clamav
- --with-system-tommath
- $(use_enable bzip2)
- $(use_enable clamdtop)
- $(use_enable ipv6)
- $(use_enable milter)
+ econf \
+ --disable-experimental \
+ --enable-id-check \
+ --with-dbdir=/var/lib/clamav \
+ --with-system-tommath \
+ $(use_enable bzip2) \
+ $(use_enable clamdtop) \
+ $(use_enable ipv6) \
+ $(use_enable milter) \
+ $(use_enable static-libs static) \
$(use_with iconv)
- )
- autotools-utils_src_configure
}
src_install() {
- autotools-utils_src_install
+ default
rm -rf "${ED}"/var/lib/clamav
newinitd "${FILESDIR}"/clamd.rc clamd
@@ -113,6 +111,8 @@ src_install() {
START_MILTER=no
EOF
fi
+
+ prune_libtool_files
}
pkg_postinst() {