blob: 0264e523005ecb5f47ae3ed92750f7de324ff63d (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils vcs-clean
MY_PN="${PN%-db}"
MY_P="${MY_PN}${PV}_database"
DESCRIPTION="Essential database for rosetta"
HOMEPAGE="http://www.rosettacommons.org"
SRC_URI="${MY_P}.tgz"
LICENSE="rosetta"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="fetch binchecks strip"
S="${WORKDIR}"/${MY_PN}_database
pkg_nofetch() {
einfo "Go to ${HOMEPAGE} and get ${A}"
einfo "which must be placed into your DISTDIR directory."
}
src_install() {
esvn_clean
insinto /usr/share/${PN}
doins -r *
cat >> "${T}"/41rosetta-db <<- EOF
ROSETTA3_DB="${EPREFIX}/usr/share/${PN}"
EOF
doenvd "${T}"/41rosetta-db
}
|