diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-11-13 12:51:24 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-11-13 12:51:24 +0000 |
commit | 53b10c37b8767d79628b1564922ea4465f073cb3 (patch) | |
tree | ec41ad5f8a38d6931a9bf7a845c875045feb3c67 /sci-libs/mpir | |
parent | Version Bump (diff) | |
download | gentoo-2-53b10c37b8767d79628b1564922ea4465f073cb3.tar.gz gentoo-2-53b10c37b8767d79628b1564922ea4465f073cb3.tar.bz2 gentoo-2-53b10c37b8767d79628b1564922ea4465f073cb3.zip |
Some QA
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/mpir')
-rw-r--r-- | sci-libs/mpir/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/mpir/mpir-2.1.3.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/sci-libs/mpir/ChangeLog b/sci-libs/mpir/ChangeLog index eee80c334dc0..57e7cfc6ea01 100644 --- a/sci-libs/mpir/ChangeLog +++ b/sci-libs/mpir/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/mpir # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.1 2010/11/12 13:15:46 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.2 2010/11/13 12:51:24 jlec Exp $ + + 13 Nov 2010; Justin Lecher <jlec@gentoo.org> mpir-2.1.3.ebuild: + Some QA *mpir-2.1.3 (12 Nov 2010) diff --git a/sci-libs/mpir/mpir-2.1.3.ebuild b/sci-libs/mpir/mpir-2.1.3.ebuild index 47530eb66cd8..56e7d8f249bd 100644 --- a/sci-libs/mpir/mpir-2.1.3.ebuild +++ b/sci-libs/mpir/mpir-2.1.3.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.1.3.ebuild,v 1.1 2010/11/12 13:15:46 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.1.3.ebuild,v 1.2 2010/11/13 12:51:24 jlec Exp $ EAPI="3" inherit eutils autotools -DESCRIPTION="library for arbitrary precision integer arithmetic derived from version 4.2.1 of gmp" +DESCRIPTION="Library for arbitrary precision integer arithmetic derived from version 4.2.1 of gmp" HOMEPAGE="http://www.mpir.org/" SRC_URI="http://www.mpir.org/${P}.tar.gz" @@ -20,8 +20,9 @@ DEPEND="x86? ( dev-lang/yasm ) RDEPEND="" src_prepare(){ - epatch "${FILESDIR}/${PN}-2.0.0-yasm.patch" - epatch "${FILESDIR}/${PN}-1.3.0-ABI-multilib.patch" + epatch \ + "${FILESDIR}/${PN}-2.0.0-yasm.patch" \ + "${FILESDIR}/${PN}-1.3.0-ABI-multilib.patch" # In the same way there was QA regarding executable stacks # with GMP we have some here as well. We cannot apply the # GMP solution as yasm is used, at least on x86/amd64. @@ -55,11 +56,10 @@ src_configure() { # Place mpir in profiles/arch/$arch/package.use.mask when making it available on $arch. econf \ $(use_enable cxx) \ - $(use_enable cpudetection fat) \ - || "econf failed" + $(use_enable cpudetection fat) } src_install() { emake DESTDIR="${D}" install || die "emake install failed" - dodoc ChangeLog README NEWS + dodoc ChangeLog README NEWS || die } |