summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-10-14 09:55:06 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-10-14 09:55:06 +0000
commit934e4353a9d88e9a467ff1f23c56bbc3d5ad7c58 (patch)
tree1e304d48dd385b9ca6bcbffcae152bf0fef9517b
parentStable on ppc64; bug #151249 (diff)
downloadgentoo-2-934e4353a9d88e9a467ff1f23c56bbc3d5ad7c58.tar.gz
gentoo-2-934e4353a9d88e9a467ff1f23c56bbc3d5ad7c58.tar.bz2
gentoo-2-934e4353a9d88e9a467ff1f23c56bbc3d5ad7c58.zip
Use autotools eclass, and use oldest versions of autoconf/automake we have. This *might* fix bugs #151266 #151267 #151268 but for sure cannot lead to bigger problems than the ebuilds not working at all.
-rw-r--r--eclass/iiimf.eclass12
1 files changed, 7 insertions, 5 deletions
diff --git a/eclass/iiimf.eclass b/eclass/iiimf.eclass
index b9a3cd860cc2..8b9bac01a7e3 100644
--- a/eclass/iiimf.eclass
+++ b/eclass/iiimf.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/iiimf.eclass,v 1.12 2005/07/06 20:23:20 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/iiimf.eclass,v 1.13 2006/10/14 09:55:06 flameeyes Exp $
#
# Author: Mamoru KOMACHI <usata@gentoo.org>
#
@@ -8,6 +8,11 @@
# libraries, servers, clients and modules within the Portage system.
#
+WANT_AUTOMAKE="1.4"
+WANT_AUTOCONF="2.1"
+
+inherit autotools
+
EXPORT_FUNCTIONS src_compile src_install
IMSDK_PV="r${PV//./_}"
@@ -26,15 +31,12 @@ SLOT="0"
KEYWORDS="~x86"
IUSE="debug"
-DEPEND="virtual/libc"
-
S="${WORKDIR}/${IMSDK}/${PN}"
iiimf_src_compile() {
if [ "${PV:0:2}" -eq 12 ] ; then
- libtoolize --copy --force
- ./autogen.sh
+ eautoreconf
fi
econf --enable-optimize \