blob: 2ac04814cdfe7ae7bcf59fcb047b1ffaafe2681b [file] [log] [blame]
# 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"
}