diff options
Diffstat (limited to 'sci-biology/psipred/psipred-2.6.1.ebuild')
-rw-r--r-- | sci-biology/psipred/psipred-2.6.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sci-biology/psipred/psipred-2.6.1.ebuild b/sci-biology/psipred/psipred-2.6.1.ebuild new file mode 100644 index 000000000000..2ac04814cdfe --- /dev/null +++ b/sci-biology/psipred/psipred-2.6.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-2.6.1.ebuild,v 1.1 2010/02/28 10:31:18 jlec Exp $ + +EAPI="3" + +inherit eutils prefix toolchain-funcs versionator + +MY_P="${PN}$(delete_all_version_separators)" + +DESCRIPTION="Protein Secondary Structure Prediction" +HOMEPAGE="http://bioinf.cs.ucl.ac.uk/psipred/" +SRC_URI="http://bioinf.cs.ucl.ac.uk/downloads/${PN}/${MY_P}.tar.gz" + +LICENSE="psipred" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + sci-biology/ncbi-tools + sci-biology/ncbi-tools++" + +S="${WORKDIR}" + +src_prepare() { + epatch "${FILESDIR}"/${PV}-Makefile.patch + epatch "${FILESDIR}"/${PV}-path.patch + eprefixify runpsipred* +} + +src_compile() { + emake -C src CC=$(tc-getCC) || die "emake failed" +} + +src_install() { + emake -C src DESTDIR="${D}" install || die "installation failed" + dobin runpsipred* || die + insinto /usr/share/${PN} + doins -r data || die "failed to install data" + dodoc README || die "nothing to read" +} + +pkg_postinst() { + elog "Please use the update_blastdb.pl in order to" + elog "maintain your own local blastdb" +} |