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 | 537510ac93904f9e8d80038b97a09030282fc41a (patch) | |
tree | 02b7b9ef1b5bd5271aa5b3f8bd00c5e7c62f350c /sci-biology | |
parent | Removing sparc64-multilib stuff as we're just using the superior binutils-con... (diff) | |
download | gentoo-2-537510ac93904f9e8d80038b97a09030282fc41a.tar.gz gentoo-2-537510ac93904f9e8d80038b97a09030282fc41a.tar.bz2 gentoo-2-537510ac93904f9e8d80038b97a09030282fc41a.zip |
Dynamically link on ppc-macos. Keyworded ~ppc-macos.
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/primer3/ChangeLog | 6 | ||||
-rw-r--r-- | sci-biology/primer3/primer3-1.0.0.ebuild | 12 |
2 files changed, 15 insertions, 3 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/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 } |