You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.eb...

63 lines
1.1 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic prefix toolchain-funcs vcs-clean
DESCRIPTION="Fragment library for rosetta"
HOMEPAGE="http://www.rosettacommons.org"
SRC_URI="rosetta3.1_fragments.tgz"
LICENSE="rosetta"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND=""
RDEPEND="
sci-biology/ncbi-tools
sci-biology/update-blastdb
sci-biology/psipred"
RESTRICT="fetch"
S="${WORKDIR}"/${PN/-/_}
PATCHES=(
"${FILESDIR}"/${P}-nnmake.patch
"${FILESDIR}"/${P}-chemshift.patch
)
pkg_nofetch() {
einfo "Go to ${HOMEPAGE} and get ${PN}.tgz and rename it to ${A}"
einfo "which must be placed into your DISTDIR directory."
}
src_prepare() {
default
tc-export F77
eprefixify nnmake/*.pl
}
src_compile() {
emake -C nnmake
emake -C chemshift
}
src_install() {
esvn_clean .
newbin nnmake/pNNMAKE.gnu pNNMAKE
newbin chemshift/pCHEMSHIFT.gnu pCHEMSHIFT
dobin nnmake/*.pl
insinto /usr/share/${PN}
doins -r *_database
dodoc \
fragments.README \
nnmake/{nnmake.README,vall/*.pl} \
chemshift/chemshift.README
}