diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-11-09 14:52:49 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-11-09 14:52:49 +0000 |
commit | df8998418c1ae11ba731674b9e1f645ae425f84d (patch) | |
tree | 6c51c890b11cf241c496ae08cedd99986ea7d1c3 /sci-biology | |
parent | Readded a qt with dbus support, waiting for it to go stable (diff) | |
download | gentoo-2-df8998418c1ae11ba731674b9e1f645ae425f84d.tar.gz gentoo-2-df8998418c1ae11ba731674b9e1f645ae425f84d.tar.bz2 gentoo-2-df8998418c1ae11ba731674b9e1f645ae425f84d.zip |
(#154545) Install to correct locations and set PREFIX so it finds the binaries automatically.
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/mafft/ChangeLog | 9 | ||||
-rw-r--r-- | sci-biology/mafft/files/digest-mafft-5.861-r1 | 3 | ||||
-rw-r--r-- | sci-biology/mafft/mafft-5.861-r1.ebuild | 31 |
3 files changed, 42 insertions, 1 deletions
diff --git a/sci-biology/mafft/ChangeLog b/sci-biology/mafft/ChangeLog index c1e2af80b0e7..a39710e12af1 100644 --- a/sci-biology/mafft/ChangeLog +++ b/sci-biology/mafft/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-biology/mafft # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/mafft/ChangeLog,v 1.1 2006/10/21 05:29:23 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/mafft/ChangeLog,v 1.2 2006/11/09 14:52:49 dberkholz Exp $ + +*mafft-5.861-r1 (09 Nov 2006) + + 09 Nov 2006; Donnie Berkholz <dberkholz@gentoo.org>; -mafft-5.861.ebuild, + +mafft-5.861-r1.ebuild: + (#154545) Install to correct locations and set PREFIX so it finds the + binaries automatically. *mafft-5.861 (21 Oct 2006) diff --git a/sci-biology/mafft/files/digest-mafft-5.861-r1 b/sci-biology/mafft/files/digest-mafft-5.861-r1 new file mode 100644 index 000000000000..2b72d7eeaccf --- /dev/null +++ b/sci-biology/mafft/files/digest-mafft-5.861-r1 @@ -0,0 +1,3 @@ +MD5 49612721f7095be702cbbf6c6b495fc1 mafft-5.861-src.tgz 294337 +RMD160 120130662e7353f8f310911a5b52657520ffe5cf mafft-5.861-src.tgz 294337 +SHA256 c76466406797bcf13e07a4d877ba2053d06585116a498775f03252aa9843c5d9 mafft-5.861-src.tgz 294337 diff --git a/sci-biology/mafft/mafft-5.861-r1.ebuild b/sci-biology/mafft/mafft-5.861-r1.ebuild new file mode 100644 index 000000000000..83312f64057b --- /dev/null +++ b/sci-biology/mafft/mafft-5.861-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/mafft/mafft-5.861-r1.ebuild,v 1.1 2006/11/09 14:52:49 dberkholz Exp $ + +inherit toolchain-funcs multilib + +DESCRIPTION="Multiple sequence alignments using a variety of algorithms" +HOMEPAGE="http://www.biophys.kyoto-u.ac.jp/~katoh/programs/align/mafft/" +SRC_URI="http://www.biophys.kyoto-u.ac.jp/~katoh/programs/align/mafft/${P}-src.tgz" +LICENSE="free-noncomm" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +RDEPEND="" +DEPEND="${RDEPEND}" + +src_compile() { + cd src + emake \ + PREFIX="/usr/$(get_libdir)/${PN}" \ + CC="$(tc-getCC)" \ + CFLAG="${CFLAGS}" \ + || die "make failed" +} + +src_install() { + pushd src + emake PREFIX="${D}usr/$(get_libdir)/${PN}" install || die "install failed" + popd + dodoc readme +} |