diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-06-20 18:18:16 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-06-20 18:18:16 +0000 |
commit | bae3cf896ca8a786b63a6d3d194a9c8fc60e14e1 (patch) | |
tree | 19f8bbd489ae851097c41eda3ee7f77b831824a1 /media-libs/aalib | |
parent | Added IUSE (Manifest recommit) (diff) | |
download | gentoo-2-bae3cf896ca8a786b63a6d3d194a9c8fc60e14e1.tar.gz gentoo-2-bae3cf896ca8a786b63a6d3d194a9c8fc60e14e1.tar.bz2 gentoo-2-bae3cf896ca8a786b63a6d3d194a9c8fc60e14e1.zip |
ensure that automake-1.4 is used, otherwise build errors are the result. Thanks to: Greg Andreou <gregorya@dai.ed.ac.uk> in bug #54450
Diffstat (limited to 'media-libs/aalib')
-rw-r--r-- | media-libs/aalib/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/aalib/aalib-1.4_rc4-r2.ebuild | 15 |
2 files changed, 13 insertions, 8 deletions
diff --git a/media-libs/aalib/ChangeLog b/media-libs/aalib/ChangeLog index c2f7beac1bb5..19f15a4df315 100644 --- a/media-libs/aalib/ChangeLog +++ b/media-libs/aalib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/aalib # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/ChangeLog,v 1.13 2004/04/15 02:35:23 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/ChangeLog,v 1.14 2004/06/20 18:18:16 seemant Exp $ + + 20 Jun 2004; Seemant Kulleen <seemant@gentoo.org> aalib-1.4_rc4-r2.ebuild: + ensure that automake-1.4 is used, otherwise build errors are the result. + Thanks to: Greg Andreou <gregorya@dai.ed.ac.uk> in bug #54450 14 Apr 2004; Stephen P. Becker <geoman@gentoo.org> aalib-1.4_rc4-r2.ebuild: Marked stable on mips. diff --git a/media-libs/aalib/aalib-1.4_rc4-r2.ebuild b/media-libs/aalib/aalib-1.4_rc4-r2.ebuild index 2f7c118f91e0..7a36f3bb8ebd 100644 --- a/media-libs/aalib/aalib-1.4_rc4-r2.ebuild +++ b/media-libs/aalib/aalib-1.4_rc4-r2.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/media-libs/aalib/aalib-1.4_rc4-r2.ebuild,v 1.20 2004/04/15 02:35:23 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/aalib-1.4_rc4-r2.ebuild,v 1.21 2004/06/20 18:18:16 seemant Exp $ inherit eutils libtool @@ -21,12 +21,9 @@ RDEPEND=">=sys-libs/ncurses-5.1 gpm? ( sys-libs/gpm ) slang? ( >=sys-libs/slang-1.4.2 )" -DEPEND="$RDEPEND >=sys-devel/autoconf-2.58" - -pkg_setup() { - # We need autoconf-2.5 - export WANT_AUTOCONF=2.5 -} +DEPEND="$RDEPEND + >=sys-devel/autoconf-2.58 + >=sys-devel/automake-1.4" src_unpack() { unpack ${A} @@ -35,6 +32,10 @@ src_unpack() { } src_compile() { + # We need autoconf-2.5 and automake-1.4 + export WANT_AUTOCONF=2.5 + export WANT_AUTOMAKE=1.4 + local myconf="" use slang \ && myconf="--with-slang-driver=yes" \ |