blob: baa761bc317795083fad15720bb75e1d77fea61c (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Secondary structure propensities"
HOMEPAGE="http://abragam.med.utoronto.ca/software.html"
SRC_URI="http://pound.med.utoronto.ca/${PN}-Nov09.tar.gz"
SLOT="0"
LICENSE="all-rights-reserved"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="dev-lang/perl"
DEPEND=""
S="${WORKDIR}"/${PN}
src_prepare() {
sed \
-e "s:\(REF\/\):${EPREFIX}/usr/share/${PN}/\1:g" \
-i ${PN} || die
}
src_install() {
dobin reref ${PN}
dodoc README
insinto /usr/share/${PN}
doins -r eg* REF
}
|