diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-20 12:09:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-20 12:09:01 +0000 |
commit | bfef993530935b708a3ac58523d6c1c0c1162add (patch) | |
tree | cce10800cde8f60e68922b98cec309c523243b3c /net-libs/courier-authlib | |
parent | Version bump (diff) | |
download | gentoo-2-bfef993530935b708a3ac58523d6c1c0c1162add.tar.gz gentoo-2-bfef993530935b708a3ac58523d6c1c0c1162add.tar.bz2 gentoo-2-bfef993530935b708a3ac58523d6c1c0c1162add.zip |
Run autotools in all directories, not just the toplevel #218295.
(Portage version: 2.2_pre5)
Diffstat (limited to 'net-libs/courier-authlib')
-rw-r--r-- | net-libs/courier-authlib/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/courier-authlib/courier-authlib-0.60.2.ebuild | 16 |
2 files changed, 12 insertions, 10 deletions
diff --git a/net-libs/courier-authlib/ChangeLog b/net-libs/courier-authlib/ChangeLog index f763ce484688..f394cf313c64 100644 --- a/net-libs/courier-authlib/ChangeLog +++ b/net-libs/courier-authlib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/courier-authlib # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.70 2008/04/16 18:20:32 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.71 2008/04/20 12:09:01 vapier Exp $ + + 20 Apr 2008; Mike Frysinger <vapier@gentoo.org> + courier-authlib-0.60.2.ebuild: + Run autotools in all directories, not just the toplevel #218295. 16 Apr 2008; Luca Longinotti <chtekk@gentoo.org> metadata.xml: Update metadata, assign this solely to the herd, I'm no longer interested diff --git a/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild b/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild index f4ca880c0073..9390bfa9970c 100644 --- a/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild +++ b/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild @@ -1,9 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild,v 1.1 2008/04/15 09:05:12 hanno Exp $ - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild,v 1.2 2008/04/20 12:09:01 vapier Exp $ inherit eutils flag-o-matic autotools @@ -43,10 +40,6 @@ src_unpack() { unpack ${A} cd "${S}" - if use elibc_uclibc ; then - sed -i -e 's:linux-gnu\*:linux-gnu\*\ \|\ linux-uclibc:' config.sub || die "sed failed" - fi - if ! use gdbm ; then epatch "${FILESDIR}/0.59.2-configure-db4.patch" else @@ -59,7 +52,12 @@ src_unpack() { sed -i -e"s|@@INDENT@@| |g" authmigrate.in || die "sed failed" sed -i -e"s|\$sbindir/makeuserdb||g" authmigrate.in || die "sed failed" - eautoreconf || die "eautoreconf failed" + local d + for d in $(find -name configure.in) ; do + [[ ${d} == */libltdl/* ]] && continue + cd "${S}"/${d%configure.in} + eautoreconf + done } src_compile() { |