diff options
Diffstat (limited to 'sci-chemistry/clashlist/clashlist-3.17-r1.ebuild')
-rw-r--r-- | sci-chemistry/clashlist/clashlist-3.17-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sci-chemistry/clashlist/clashlist-3.17-r1.ebuild b/sci-chemistry/clashlist/clashlist-3.17-r1.ebuild new file mode 100644 index 000000000000..7aedd7743f6b --- /dev/null +++ b/sci-chemistry/clashlist/clashlist-3.17-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +DESCRIPTION="Build lists of van der Waals clashes from an input PDB file" +HOMEPAGE="http://kinemage.biochem.duke.edu/software/index.php" +SRC_URI="mirror://gentoo/molprobity-${PV}.tgz" + +SLOT="0" +LICENSE="richardson" +KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + >=sci-chemistry/cluster-1.3.081231-r1 + sci-chemistry/probe" +DEPEND="${RDEPEND}" + +S="${WORKDIR}" + +src_prepare() { + sed \ + -e 's: cluster : molprobity-cluster :g' \ + -i molprobity3/bin/clashlist || die +} + +src_install() { + dobin molprobity3/bin/clashlist +} |