diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-06-17 09:17:49 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-06-17 09:17:49 +0000 |
commit | 5fb6d4aaf9ca76d752f3527726ff877f4d60e1dd (patch) | |
tree | 1a05f130141a342f6715ce4a9821f93b21bf7259 /sci-mathematics/num-utils | |
parent | add intltool to DEPEND, bug #227739 (diff) | |
download | gentoo-2-5fb6d4aaf9ca76d752f3527726ff877f4d60e1dd.tar.gz gentoo-2-5fb6d4aaf9ca76d752f3527726ff877f4d60e1dd.tar.bz2 gentoo-2-5fb6d4aaf9ca76d752f3527726ff877f4d60e1dd.zip |
Added ~amd64 and cleaned-up ebuild
(Portage version: 2.1.5.5)
Diffstat (limited to 'sci-mathematics/num-utils')
-rw-r--r-- | sci-mathematics/num-utils/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/num-utils/num-utils-0.5.ebuild | 17 |
2 files changed, 16 insertions, 8 deletions
diff --git a/sci-mathematics/num-utils/ChangeLog b/sci-mathematics/num-utils/ChangeLog index be4f5f2f0632..774bcf7fe7a6 100644 --- a/sci-mathematics/num-utils/ChangeLog +++ b/sci-mathematics/num-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/num-utils -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/ChangeLog,v 1.5 2007/02/22 01:29:23 jokey Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/ChangeLog,v 1.6 2008/06/17 09:17:49 bicatali Exp $ + + 17 Jun 2008; Sébastien Fabbro <bicatali@gentoo.org> num-utils-0.5.ebuild: + Added ~amd64 and cleaned-up ebuild 22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog: Redigest for Manifest2 diff --git a/sci-mathematics/num-utils/num-utils-0.5.ebuild b/sci-mathematics/num-utils/num-utils-0.5.ebuild index 916a60f15f3d..20c243fa7c32 100644 --- a/sci-mathematics/num-utils/num-utils-0.5.ebuild +++ b/sci-mathematics/num-utils/num-utils-0.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/num-utils-0.5.ebuild,v 1.2 2005/05/06 18:27:41 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/num-utils-0.5.ebuild,v 1.3 2008/06/17 09:17:49 bicatali Exp $ IUSE="" @@ -12,13 +12,18 @@ DEPEND="" RDEPEND="dev-lang/perl" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="~amd64 ~x86 ~ppc" src_compile() { - emake || die + sed -i \ + -e 's/^RPMDIR/#RPMDIR/' \ + -e 's/COPYING//' \ + -e '/^DOCS/s/MANIFEST//' \ + Makefile || die "sed Makefile failed" + + emake || die "emake failed" } src_install () { - make ROOT=${D} install || die - dodoc CHANGELOG COPYING GOALS LICENSE MANIFEST README VERSION WARNING + emake ROOT="${D}" install || die "emake install failed" } |