blob: 0b23fff0b1c788ae246eb5e69487d2a33d96fe8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild,v 1.4 2012/07/11 06:21:27 jlec Exp $
EAPI=4
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="test"
RDEPEND="
sci-biology/ncbi-tools
sci-biology/ncbi-tools++"
DEPEND=""
S="${WORKDIR}"
src_prepare() {
rm -f bin/*
epatch \
"${FILESDIR}"/3.1-Makefile.patch \
"${FILESDIR}"/3.1-path.patch \
"${FILESDIR}"/3.2-fgets.patch
eprefixify runpsipred*
}
src_compile() {
emake -C src CC=$(tc-getCC)
}
src_install() {
emake -C src DESTDIR="${D}" install
dobin runpsipred* bin/* BLAST+/runpsipred*
insinto /usr/share/${PN}
doins -r data
dodoc README
newdoc BLAST+/README README-blast
}
pkg_postinst() {
elog "Please use the update_blastdb.pl in order to"
elog "maintain your own local blastdb"
}
|