diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2009-11-06 19:58:46 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2009-11-06 19:58:46 +0000 |
commit | 272292e49a47a2a3d96268c0fc3c76a419367a31 (patch) | |
tree | 26d7fead8c4fd79919bba917e6febc4e14233dd5 /sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild | |
parent | Initial commit. (diff) | |
download | gentoo-2-272292e49a47a2a3d96268c0fc3c76a419367a31.tar.gz gentoo-2-272292e49a47a2a3d96268c0fc3c76a419367a31.tar.bz2 gentoo-2-272292e49a47a2a3d96268c0fc3c76a419367a31.zip |
Version bump and move to dialign-tx, take ownership
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild')
-rw-r--r-- | sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild b/sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild new file mode 100644 index 000000000000..75624b31ed7e --- /dev/null +++ b/sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/dialign-tx/dialign-tx-1.0.2.ebuild,v 1.1 2009/11/06 19:58:46 weaver Exp $ + +EAPI="2" + +inherit multilib toolchain-funcs + +MY_P="DIALIGN-TX_${PV}" + +DESCRIPTION="Greedy and progressive approaches for segment-based multiple sequence alignment" +HOMEPAGE="http://dialign-tx.gobics.de/" +SRC_URI="http://dialign-tx.gobics.de/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + emake -C source clean + emake -C source \ + CPPFLAGS="${CFLAGS}" \ + || die "make failed" +} + +src_install() { + DESTTREE="/usr" dobin "${S}"/source/dialign-tx + insinto /usr/$(get_libdir)/${PN}/conf + doins "${S}"/conf/* +} + +pkg_postinst() { + einfo "The configuration directory is" + einfo "${ROOT}usr/$(get_libdir)/${PN}/conf" + einfo "You will need to pass this to ${PN} on every run." +} |