diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-06-12 00:52:47 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-06-12 00:52:47 +0000 |
commit | fbc6bb73c09519d0f4838156d1bc3f5ba5984c9b (patch) | |
tree | 808f79d8f8e24f3fd563dbaac2ca7876cdcab18a /sci-biology | |
parent | stable x86, security bug 268565 (diff) | |
download | gentoo-2-fbc6bb73c09519d0f4838156d1bc3f5ba5984c9b.tar.gz gentoo-2-fbc6bb73c09519d0f4838156d1bc3f5ba5984c9b.tar.bz2 gentoo-2-fbc6bb73c09519d0f4838156d1bc3f5ba5984c9b.zip |
respect CFLAGS, thus removing the hard 64bit build and other niceties upstream hard forces on users, see bug 273065 by flameeyes; restore ~x86 KEYWORD
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/bwa/ChangeLog | 7 | ||||
-rw-r--r-- | sci-biology/bwa/bwa-0.4.6.ebuild | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/sci-biology/bwa/ChangeLog b/sci-biology/bwa/ChangeLog index 74efd22b7a13..5ebc06f32e6f 100644 --- a/sci-biology/bwa/ChangeLog +++ b/sci-biology/bwa/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-biology/bwa # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/bwa/ChangeLog,v 1.3 2009/06/07 16:19:55 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/bwa/ChangeLog,v 1.4 2009/06/12 00:52:47 fauli Exp $ + + 12 Jun 2009; Christian Faulhammer <fauli@gentoo.org> bwa-0.4.6.ebuild: + respect CFLAGS, thus removing the hard 64bit build and other niceties + upstream hard forces on users, see bug 273065 by flameeyes; restore ~x86 + KEYWORD 07 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> bwa-0.4.6.ebuild: Remove ~x86 keyword, see bug #273065. diff --git a/sci-biology/bwa/bwa-0.4.6.ebuild b/sci-biology/bwa/bwa-0.4.6.ebuild index bc0d11377d8e..3ec0d2e9d1c5 100644 --- a/sci-biology/bwa/bwa-0.4.6.ebuild +++ b/sci-biology/bwa/bwa-0.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/bwa/bwa-0.4.6.ebuild,v 1.2 2009/06/07 16:19:55 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/bwa/bwa-0.4.6.ebuild,v 1.3 2009/06/12 00:52:47 fauli Exp $ EAPI=2 @@ -11,13 +11,13 @@ SRC_URI="mirror://sourceforge/maq/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" IUSE="" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" DEPEND="" RDEPEND="" src_prepare() { - sed -i 's/^CFLAGS=/CFLAGS+=/' "${S}/Makefile" + sed -e "/^CFLAGS.*/d" -i "${S}"/Makefile } src_install() { |