diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-05 03:03:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-05 03:03:59 +0000 |
commit | 55d052f1c5a8afa7e81b606f693134f55b222cc3 (patch) | |
tree | 32beb2eda1cad8fb5e5148a9ffe958ae74e291db /net-dns | |
parent | Fixed DEPEND/RDEPEND mixup. Closes bug #40316. (diff) | |
download | historical-55d052f1c5a8afa7e81b606f693134f55b222cc3.tar.gz historical-55d052f1c5a8afa7e81b606f693134f55b222cc3.tar.bz2 historical-55d052f1c5a8afa7e81b606f693134f55b222cc3.zip |
make sure autoconf is run
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/hesiod/hesiod-3.0.2-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-dns/hesiod/hesiod-3.0.2-r1.ebuild b/net-dns/hesiod/hesiod-3.0.2-r1.ebuild index e090c85b2e3e..c89c3e77fe6c 100644 --- a/net-dns/hesiod/hesiod-3.0.2-r1.ebuild +++ b/net-dns/hesiod/hesiod-3.0.2-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/hesiod-3.0.2-r1.ebuild,v 1.3 2004/02/05 02:50:13 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/hesiod-3.0.2-r1.ebuild,v 1.4 2004/02/05 03:03:59 vapier Exp $ -inherit flag-o-matic +inherit flag-o-matic eutils filter-flags -fstack-protector DESCRIPTION="system which uses existing DNS functionality to provide access to databases of information that changes infrequently" @@ -17,12 +17,12 @@ DEPEND="virtual/glibc" src_unpack() { unpack ${A} + cd ${S} #Patches stolen from RH epatch ${FILESDIR}/hesiod-${PV}-redhat.patch.gz - autoconf + autoconf || die "autoconf failed" - cd ${S} for manpage in *.3 do if grep -q '^\.so man3/hesiod.3' ${manpage} @@ -41,6 +41,6 @@ src_unpack() { done } -src_install () { +src_install() { make DESTDIR=${D} install || die } |