diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-21 16:49:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-21 16:49:08 +0000 |
commit | 2214d7faf36161f686be50b2860b0b3c6a15cf60 (patch) | |
tree | 0aba75a49fcd6faf59fb5855181279ce9375a0f1 /dev-libs/gmp | |
parent | (no commit message) (diff) | |
download | historical-2214d7faf36161f686be50b2860b0b3c6a15cf60.tar.gz historical-2214d7faf36161f686be50b2860b0b3c6a15cf60.tar.bz2 historical-2214d7faf36161f686be50b2860b0b3c6a15cf60.zip |
add inherit eutils
Diffstat (limited to 'dev-libs/gmp')
-rw-r--r-- | dev-libs/gmp/gmp-4.1-r1.ebuild | 9 | ||||
-rw-r--r-- | dev-libs/gmp/gmp-4.1.2.ebuild | 16 |
2 files changed, 16 insertions, 9 deletions
diff --git a/dev-libs/gmp/gmp-4.1-r1.ebuild b/dev-libs/gmp/gmp-4.1-r1.ebuild index 9ee6082a7504..9e0cf5002576 100644 --- a/dev-libs/gmp/gmp-4.1-r1.ebuild +++ b/dev-libs/gmp/gmp-4.1-r1.ebuild @@ -1,14 +1,17 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-4.1-r1.ebuild,v 1.18 2004/02/24 17:55:12 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-4.1-r1.ebuild,v 1.19 2004/04/21 16:38:20 vapier Exp $ + +inherit eutils DESCRIPTION="Library for arithmetic on arbitrary precision integers, rational numbers, and floating-point numbers" HOMEPAGE="http://www.gnu.org/software/gmp/gmp.html" SRC_URI="ftp://prep.ai.mit.edu/gnu/gmp/${P}.tar.gz" -SLOT="0" LICENSE="LGPL-2" +SLOT="0" KEYWORDS="x86 ppc sparc alpha" +IUSE="" DEPEND="~sys-devel/m4-1.4" @@ -35,7 +38,7 @@ src_compile() { src_install() { make DESTDIR=${D} install || die - dodoc AUTHORS ChangeLog COPYING* NEWS README + dodoc AUTHORS ChangeLog NEWS README dodoc doc/configuration doc/isa_abi_headache dohtml -r doc } diff --git a/dev-libs/gmp/gmp-4.1.2.ebuild b/dev-libs/gmp/gmp-4.1.2.ebuild index e511a259ef2d..933e31c21e7d 100644 --- a/dev-libs/gmp/gmp-4.1.2.ebuild +++ b/dev-libs/gmp/gmp-4.1.2.ebuild @@ -1,16 +1,18 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-4.1.2.ebuild,v 1.18 2004/04/03 09:31:23 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-4.1.2.ebuild,v 1.19 2004/04/21 16:39:16 vapier Exp $ inherit flag-o-matic libtool -filter-flags -ffast-math DESCRIPTION="Library for arithmetic on arbitrary precision integers, rational numbers, and floating-point numbers" HOMEPAGE="http://www.gnu.org/software/gmp/gmp.html" SRC_URI="mirror://gnu/gmp/${P}.tar.gz" -SLOT="0" + LICENSE="LGPL-2" -KEYWORDS="x86 ppc sparc alpha amd64 ia64 ~mips hppa" +SLOT="0" +KEYWORDS="x86 ppc sparc ~mips alpha hppa amd64 ia64" +IUSE="" + DEPEND="~sys-devel/m4-1.4" src_unpack() { @@ -21,6 +23,8 @@ src_unpack() { } src_compile() { + filter-flags -ffast-math + elibtoolize local myconf="" @@ -39,7 +43,7 @@ src_compile() { # It's pretty slow to run all the checks, and not really necessary # on every build of this package. Just run the checks when # debugging is enabled. (23 Feb 2003 agriffis) - if [ `use debug` ] ; then + if use debug ; then make check || die "make check failed" fi } @@ -47,7 +51,7 @@ src_compile() { src_install() { make DESTDIR=${D} install || die "make install failed" - dodoc AUTHORS ChangeLog COPYING* NEWS README + dodoc AUTHORS ChangeLog NEWS README dodoc doc/configuration doc/isa_abi_headache dohtml -r doc } |