blob: 17a243c1d3fb60a0e59f33cc699be4b9167c0e97 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/monomer-db/monomer-db-5.28.ebuild,v 1.1 2011/04/21 07:05:19 jlec Exp $
EAPI="4"
MY_PN="refmac_dictionary"
DESCRIPTION="Monomer library used for macromolecular structure building and refinement"
HOMEPAGE="http://www.ccp4.ac.uk"
SRC_URI="http://www.ysbl.york.ac.uk/~garib/refmac/data/refmac_experimental/${MY_PN}_v${PV}.tar.gz"
SLOT="0"
LICENSE="ccp4"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="
!<sci-chemistry/ccp4-6.1.3
!<sci-libs/ccp4-libs-6.1.3"
DEPEND="${RDEPEND}"
RESTRICT="binchecks strip"
S="${WORKDIR}"/monomers
src_install() {
insinto /usr/share/ccp4/data/monomers/
for i in {a..z} {0..9} *list *.cif *.txt; do
einfo "Installing ${i}** ..."
doins -r ${i} || die
done
dodoc *.txt || die
}
|