summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-03-07 20:53:15 +0000
committerJustin Lecher <jlec@gentoo.org>2010-03-07 20:53:15 +0000
commitb076a11c6b6362b668f535e22db3286c967c7625 (patch)
tree76ca02b3cbbec14f78decdb50d5ea7445e699102 /sci-biology
parentRe-add a few missing locales (diff)
downloadgentoo-2-b076a11c6b6362b668f535e22db3286c967c7625.tar.gz
gentoo-2-b076a11c6b6362b668f535e22db3286c967c7625.tar.bz2
gentoo-2-b076a11c6b6362b668f535e22db3286c967c7625.zip
Moved to EAPI=3 for PREFIX support, imported prefix patches from overlay, keyworded as in overlay
(Portage version: 2.2_rc65/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/primer3/ChangeLog11
-rw-r--r--sci-biology/primer3/primer3-1.1.4-r1.ebuild40
2 files changed, 49 insertions, 2 deletions
diff --git a/sci-biology/primer3/ChangeLog b/sci-biology/primer3/ChangeLog
index da40f6f2ea79..f70008b4d463 100644
--- a/sci-biology/primer3/ChangeLog
+++ b/sci-biology/primer3/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sci-biology/primer3
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/primer3/ChangeLog,v 1.21 2009/09/01 16:07:03 ribosome Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/primer3/ChangeLog,v 1.22 2010/03/07 20:53:15 jlec Exp $
+
+*primer3-1.1.4-r1 (07 Mar 2010)
+
+ 07 Mar 2010; Justin Lecher (jlec) <jlec@gentoo.org>
+ +primer3-1.1.4-r1.ebuild:
+ Moved to EAPI=3 for PREFIX support, imported prefix patches from overlay,
+ keyworded as in overlay
01 Sep 2009; Olivier Fisette <ribosome@gentoo.org> primer3-1.1.4.ebuild:
Stabilised on x86 and amd64.
diff --git a/sci-biology/primer3/primer3-1.1.4-r1.ebuild b/sci-biology/primer3/primer3-1.1.4-r1.ebuild
new file mode 100644
index 000000000000..65e39e19f6f5
--- /dev/null
+++ b/sci-biology/primer3/primer3-1.1.4-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/primer3/primer3-1.1.4-r1.ebuild,v 1.1 2010/03/07 20:53:15 jlec Exp $
+
+EAPI="3"
+
+DESCRIPTION="Design primers for PCR reactions."
+HOMEPAGE="http://primer3.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="whitehead"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+IUSE=""
+
+DEPEND="dev-lang/perl"
+
+RDEPEND=""
+
+S="${WORKDIR}/src"
+
+src_prepare() {
+ [[ ${CHOST} == *-darwin* ]] && \
+ sed -e "s:LIBOPTS ='-static':LIBOPTS =:" -i Makefile
+}
+
+src_compile() {
+ emake -e || die
+}
+
+src_test () {
+ make primer_test || die
+}
+
+src_install () {
+ dobin long_seq_tm_test ntdpal oligotm primer3_core || die \
+ "Could not install program."
+ dodoc ../{how-to-cite.txt,README.txt,example} || die \
+ "Could not install documentation."
+}