summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-10-30 13:17:03 +0000
committerJustin Lecher <jlec@gentoo.org>2010-10-30 13:17:03 +0000
commit138bb814f9df69a1239cd77ecafa50fdaeedffdb (patch)
tree3ce4e66f75a2bdedb241e33940cb9796a08b2f7f /sci-chemistry/msms-bin
parentppc64 stable wrt #343323 (diff)
downloadgentoo-2-138bb814f9df69a1239cd77ecafa50fdaeedffdb.tar.gz
gentoo-2-138bb814f9df69a1239cd77ecafa50fdaeedffdb.tar.bz2
gentoo-2-138bb814f9df69a1239cd77ecafa50fdaeedffdb.zip
Moved package from sci-chemistry/msms to sci-chemistry/msms-bin, fixed installation destination, install missing scripts
(Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/msms-bin')
-rw-r--r--sci-chemistry/msms-bin/ChangeLog20
-rw-r--r--sci-chemistry/msms-bin/metadata.xml8
-rw-r--r--sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild39
3 files changed, 67 insertions, 0 deletions
diff --git a/sci-chemistry/msms-bin/ChangeLog b/sci-chemistry/msms-bin/ChangeLog
new file mode 100644
index 000000000000..c1796b949689
--- /dev/null
+++ b/sci-chemistry/msms-bin/ChangeLog
@@ -0,0 +1,20 @@
+# ChangeLog for sci-chemistry/msms-bin
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/ChangeLog,v 1.1 2010/10/30 13:17:03 jlec Exp $
+
+*msms-bin-2.6.1-r1 (30 Oct 2010)
+
+ 30 Oct 2010; Justin Lecher <jlec@gentoo.org> +msms-bin-2.6.1-r1.ebuild,
+ +metadata.xml:
+ Moved package from sci-chemistry/msms to sci-chemistry/msms-bin, fixed
+ installation destination, install missing scripts
+
+ 23 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org> msms-2.6.1.ebuild:
+ Fix nofetch message. REMOVE QA-BREAKING binchecks RESTRICTION.
+
+*msms-2.6.1 (21 Aug 2010)
+
+ 21 Aug 2010; Alexey Shvetsov <alexxy@gentoo.org> +msms-2.6.1.ebuild,
+ +metadata.xml:
+ Initial import per bug #209161
+
diff --git a/sci-chemistry/msms-bin/metadata.xml b/sci-chemistry/msms-bin/metadata.xml
new file mode 100644
index 000000000000..51ae060ed56e
--- /dev/null
+++ b/sci-chemistry/msms-bin/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci-chemistry</herd>
+<maintainer>
+ <email>alexxy@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild b/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild
new file mode 100644
index 000000000000..c173fef63203
--- /dev/null
+++ b/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild,v 1.1 2010/10/30 13:17:03 jlec Exp $
+
+EAPI=3
+
+DESCRIPTION="MSMS allows to compute very efficiently triangulations of Solvent Excluded Surfaces"
+HOMEPAGE="http://mgl.scripps.edu/people/sanner/html/msms_home.html"
+SRC_URI="
+ amd64? ( msms_i86_64Linux2_2.6.1.tar.gz )
+ x86? ( msms_i86Linux2_2.6.1.tar.gz )
+"
+
+LICENSE="MSMS"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RESTRICT="fetch"
+
+S="${WORKDIR}"
+
+QA_DT_HASH="${EROOT#/}opt/bin"
+
+pkg_nofetch() {
+ einfo "Please download ${A} from ${HOMEPAGE} and place it to ${DISTDIR}"
+}
+
+src_install() {
+ doman msms.1 || die
+ dodoc README msms.html ReleaseNotes || die
+ exeinto /opt/bin
+ if use amd64; then
+ newexe ${PN%-bin}.x86_64Linux2.${PV} msms || die
+ elif use x86; then
+ newexe ${PN%-bin}.i86Linux2.${PV} msms || die
+ fi
+ dobin pdb_to_xyz* || die
+}