blob: 53b4f3ffa4344f177f31f434193c1082a510520f (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="AMBER99SBnmr1-ILDN FF (Lindorff-Larsen et al., Proteins 78, 1950-58, 2010)"
HOMEPAGE="https://research.chemistry.ohio-state.edu/bruschweiler/protein-force-field/"
SRC_URI="http://research.chemistry.ohio-state.edu/bruschweiler/files/2013/09/nmr1-ildn.tar -> ${P}.tar"
SLOT="0"
LICENSE="all-rights-reserved"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
S="${WORKDIR}"
RESTRICT="strip binchecks"
src_install() {
insinto /usr/share/gromacs/top/
dodoc */*.doc
rm */*.doc || die
doins -r *
}
|