diff options
author | Lina Pezzella <j4rg0n@gentoo.org> | 2004-12-27 02:39:51 +0000 |
---|---|---|
committer | Lina Pezzella <j4rg0n@gentoo.org> | 2004-12-27 02:39:51 +0000 |
commit | 997133e2d8708b200242dbdc10b72cecff3b0b88 (patch) | |
tree | 5882ea003a3fe160a28cc1a00828daa8bb34318b /sci-biology/primer3 | |
parent | Removing sparc64-multilib stuff as we're just using the superior binutils-con... (diff) | |
download | historical-997133e2d8708b200242dbdc10b72cecff3b0b88.tar.gz historical-997133e2d8708b200242dbdc10b72cecff3b0b88.tar.bz2 historical-997133e2d8708b200242dbdc10b72cecff3b0b88.zip |
Dynamically link on ppc-macos. Keyworded ~ppc-macos.
Diffstat (limited to 'sci-biology/primer3')
-rw-r--r-- | sci-biology/primer3/ChangeLog | 6 | ||||
-rw-r--r-- | sci-biology/primer3/Manifest | 14 | ||||
-rw-r--r-- | sci-biology/primer3/primer3-1.0.0.ebuild | 12 |
3 files changed, 17 insertions, 15 deletions
diff --git a/sci-biology/primer3/ChangeLog b/sci-biology/primer3/ChangeLog index eb13df26eee3..581568e36b8c 100644 --- a/sci-biology/primer3/ChangeLog +++ b/sci-biology/primer3/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-biology/primer3 # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/primer3/ChangeLog,v 1.2 2004/12/24 02:33:09 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/primer3/ChangeLog,v 1.3 2004/12/27 02:39:51 j4rg0n Exp $ + + 26 Dec 2004; Lina Pezzella <j4rg0n@gentoo.org> primer-3-1.0.0.ebuild: + Keyworded ~ppc-macos. + Modified Makefile to dynamically link on ppc-macos. *primer3-1.0.0 (23 Dec 2004) diff --git a/sci-biology/primer3/Manifest b/sci-biology/primer3/Manifest index 82584fa6f988..b6b7228bb81e 100644 --- a/sci-biology/primer3/Manifest +++ b/sci-biology/primer3/Manifest @@ -1,14 +1,4 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 c67041142b7812af1d8f9569af7927fe primer3-1.0.0.ebuild 705 -MD5 02c44a075aa511300d89347afb282270 ChangeLog 1070 +MD5 6df122a931a912ce86dcf0e473b0f165 ChangeLog 1219 MD5 a3a36dab6877af45d7b14ec9edea31d9 metadata.xml 713 +MD5 4e7834c0df09189b2d6acc9f5b67e0dc primer3-1.0.0.ebuild 838 MD5 fc13dfb772f9bdd09bc788514faa4abe files/digest-primer3-1.0.0 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFBy3/rI1lqEGTUzyQRAqQ3AJ9pD2Qeboi9FXjQuF8bKemeTfFI8wCfSY/E -LY1hyAjG3iKcwRvVTaCTx4Y= -=g54q ------END PGP SIGNATURE----- diff --git a/sci-biology/primer3/primer3-1.0.0.ebuild b/sci-biology/primer3/primer3-1.0.0.ebuild index 072ff0107e69..7f44c44dea89 100644 --- a/sci-biology/primer3/primer3-1.0.0.ebuild +++ b/sci-biology/primer3/primer3-1.0.0.ebuild @@ -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/sci-biology/primer3/primer3-1.0.0.ebuild,v 1.1 2004/12/23 19:13:38 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/primer3/primer3-1.0.0.ebuild,v 1.2 2004/12/27 02:39:51 j4rg0n Exp $ DESCRIPTION="Design primers for PCR reactions." HOMEPAGE="http://frodo.wi.mit.edu/primer3/primer3_code.html" @@ -8,7 +8,7 @@ SRC_URI="http://frodo.wi.mit.edu/${PN}/${PN}_${PV}.tar.gz" LICENSE="whitehead" SLOT="0" -KEYWORDS="x86 ~ppc" +KEYWORDS="x86 ~ppc ~ppc-macos" IUSE="" RDEPEND="" @@ -17,6 +17,14 @@ DEPEND="dev-lang/perl" S=${WORKDIR}/${PN}_${PV}/src +src_unpack() { + unpack ${A} + if use ppc-macos; then + cd ${S} + sed -e "s:LIBOPTS ='-static':LIBOPTS =:" -i Makefile + fi +} + src_compile() { emake -e || die } |