summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kislyuk <weaver@gentoo.org>2010-07-15 15:49:58 +0000
committerAndrey Kislyuk <weaver@gentoo.org>2010-07-15 15:49:58 +0000
commitf62c91395a7a13f2a617ed0d3bd22c1a02cddb99 (patch)
tree476a06d65ffc1fb95b37e841ee24fe418420f3f3 /sci-biology/last
parentVersion bump (diff)
downloadgentoo-2-f62c91395a7a13f2a617ed0d3bd22c1a02cddb99.tar.gz
gentoo-2-f62c91395a7a13f2a617ed0d3bd22c1a02cddb99.tar.bz2
gentoo-2-f62c91395a7a13f2a617ed0d3bd22c1a02cddb99.zip
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/last')
-rw-r--r--sci-biology/last/ChangeLog7
-rw-r--r--sci-biology/last/last-128.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/sci-biology/last/ChangeLog b/sci-biology/last/ChangeLog
index fe4f969d1ee4..ff2157d428b7 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.5 2010/05/07 19:35:18 weaver Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/last/ChangeLog,v 1.6 2010/07/15 15:49:58 weaver Exp $
+
+*last-128 (15 Jul 2010)
+
+ 15 Jul 2010; Andrey Kislyuk <weaver@gentoo.org> +last-128.ebuild:
+ Version bump
*last-103 (07 May 2010)
diff --git a/sci-biology/last/last-128.ebuild b/sci-biology/last/last-128.ebuild
new file mode 100644
index 000000000000..1903f79e1289
--- /dev/null
+++ b/sci-biology/last/last-128.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-128.ebuild,v 1.1 2010/07/15 15:49:58 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
+}