diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-05-12 01:40:28 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-05-12 01:40:28 +0000 |
commit | de8321ace9b601c04a8a2fc598c9662ab74cd09e (patch) | |
tree | 0aa4ee008a2f83499d0ccc23ce8ae58b68b01d4e /net-mail/metamail | |
parent | Added s390 keywords (Manifest recommit) (diff) | |
download | gentoo-2-de8321ace9b601c04a8a2fc598c9662ab74cd09e.tar.gz gentoo-2-de8321ace9b601c04a8a2fc598c9662ab74cd09e.tar.bz2 gentoo-2-de8321ace9b601c04a8a2fc598c9662ab74cd09e.zip |
autoreconf wasn't working, to fix bug #41095. Instead, switching to the documented hacky way around this issue, which is to try make again when it fails the first time
Diffstat (limited to 'net-mail/metamail')
-rw-r--r-- | net-mail/metamail/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/metamail/metamail-2.7.45.3.ebuild | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-mail/metamail/ChangeLog b/net-mail/metamail/ChangeLog index 26b4c169e5e1..75dd0f9a3e31 100644 --- a/net-mail/metamail/ChangeLog +++ b/net-mail/metamail/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for net-mail/metamail # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 # Distributed under the terms of the GNU General Public License v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-mail/metamail/ChangeLog,v 1.12 2004/05/11 22:55:13 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/metamail/ChangeLog,v 1.13 2004/05/12 01:40:28 seemant Exp $ + + 11 May 2004; Seemant Kulleen <seemant@gentoo.org> metamail-2.7.45.3.ebuild: + autoreconf wasn't working, to fix bug #41095. Instead, switching to the + documented hacky way around this issue, which is to try make again when it + fails the first time 12 May 2004; Bryan Østergaard <kloeri@gentoo.org> metamail-2.7.45.3.ebuild: Stable on alpha, bug #42133. diff --git a/net-mail/metamail/metamail-2.7.45.3.ebuild b/net-mail/metamail/metamail-2.7.45.3.ebuild index f6cdfbed4bef..66d6fef91034 100644 --- a/net-mail/metamail/metamail-2.7.45.3.ebuild +++ b/net-mail/metamail/metamail-2.7.45.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/metamail/metamail-2.7.45.3.ebuild,v 1.2 2004/05/11 22:55:13 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/metamail/metamail-2.7.45.3.ebuild,v 1.3 2004/05/12 01:40:28 seemant Exp $ inherit eutils @@ -23,13 +23,16 @@ DEPEND="sys-libs/ncurses src_unpack() { unpack ${A} - export WANT_AUTOCONF=2.1 cd ${S} epatch ${WORKDIR}/metamail_${MY_PV}.diff - autoreconf chmod +x ${S}/configure } +src_compile() { + export WANT_AUTOCONF=2.5 + econf || die + emake || emake || die +} src_install () { make DESTDIR=${D} install || die dodoc COPYING CREDITS README |