summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kislyuk <weaver@gentoo.org>2010-05-07 19:35:18 +0000
committerAndrey Kislyuk <weaver@gentoo.org>2010-05-07 19:35:18 +0000
commit48bd6c48681344734301e440fbf9cde7082d64d5 (patch)
treee9462f2075380a2c309605a9cdbc1b5070ded580 /sci-biology
parentVersion bump (diff)
downloadgentoo-2-48bd6c48681344734301e440fbf9cde7082d64d5.tar.gz
gentoo-2-48bd6c48681344734301e440fbf9cde7082d64d5.tar.bz2
gentoo-2-48bd6c48681344734301e440fbf9cde7082d64d5.zip
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/last/ChangeLog7
-rw-r--r--sci-biology/last/last-103.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/sci-biology/last/ChangeLog b/sci-biology/last/ChangeLog
index c5690010469e..fe4f969d1ee4 100644
--- a/sci-biology/last/ChangeLog
+++ b/sci-biology/last/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-biology/last
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/last/ChangeLog,v 1.4 2010/04/05 12:10:02 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/last/ChangeLog,v 1.5 2010/05/07 19:35:18 weaver Exp $
+
+*last-103 (07 May 2010)
+
+ 07 May 2010; Andrey Kislyuk <weaver@gentoo.org> +last-103.ebuild:
+ Version bump
05 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> last-96.ebuild:
x86 stable wrt bug #311831
diff --git a/sci-biology/last/last-103.ebuild b/sci-biology/last/last-103.ebuild
new file mode 100644
index 000000000000..ede712fe8547
--- /dev/null
+++ b/sci-biology/last/last-103.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/last/last-103.ebuild,v 1.1 2010/05/07 19:35:18 weaver Exp $
+
+EAPI="2"
+
+DESCRIPTION="Genome-scale comparison of biological sequences"
+HOMEPAGE="http://last.cbrc.jp/"
+SRC_URI="http://last.cbrc.jp/archive/${P}.zip"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="app-arch/unzip"
+RDEPEND=""
+
+src_prepare() {
+ sed -i -e 's/CXXFLAGS =/CXXFLAGS +=/' -e 's/CCFLAGS =/CCFLAGS = ${CFLAGS}/' \
+ src/makefile || die
+}
+
+src_compile() {
+ emake -C src || die
+}
+
+src_install() {
+ dobin src/last{al,db} || die
+ exeinto /usr/share/${PN}/scripts
+ doexe scripts/* || die
+ insinto /usr/share/doc/${PF}
+ doins -r doc ChangeLog.txt README.txt
+}