diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2010-08-21 22:58:28 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2010-08-21 22:58:28 +0000 |
commit | 20c026577714c311c467b67c51d71a119a8999f0 (patch) | |
tree | 7fa95d9f3b6fe8fcf66c87b88e28ab600bfc6ade /sci-chemistry | |
parent | Add license for MSMS (diff) | |
download | gentoo-2-20c026577714c311c467b67c51d71a119a8999f0.tar.gz gentoo-2-20c026577714c311c467b67c51d71a119a8999f0.tar.bz2 gentoo-2-20c026577714c311c467b67c51d71a119a8999f0.zip |
[sci-chemistry/msms] Initial import per bug #209161
(Portage version: 2.2_rc67_p706/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/msms/ChangeLog | 10 | ||||
-rw-r--r-- | sci-chemistry/msms/metadata.xml | 8 | ||||
-rw-r--r-- | sci-chemistry/msms/msms-2.6.1.ebuild | 40 |
3 files changed, 58 insertions, 0 deletions
diff --git a/sci-chemistry/msms/ChangeLog b/sci-chemistry/msms/ChangeLog new file mode 100644 index 000000000000..88a4d01185f1 --- /dev/null +++ b/sci-chemistry/msms/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-chemistry/msms +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms/ChangeLog,v 1.1 2010/08/21 22:58:28 alexxy Exp $ + +*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/metadata.xml b/sci-chemistry/msms/metadata.xml new file mode 100644 index 000000000000..51ae060ed56e --- /dev/null +++ b/sci-chemistry/msms/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/msms-2.6.1.ebuild b/sci-chemistry/msms/msms-2.6.1.ebuild new file mode 100644 index 000000000000..3decd967a572 --- /dev/null +++ b/sci-chemistry/msms/msms-2.6.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms/msms-2.6.1.ebuild,v 1.1 2010/08/21 22:58:28 alexxy 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="" + +DEPEND="" +RDEPEND="${DEPEND}" + +RESTRICT="fetch binchecks" + +S="${WORKDIR}" + +pkg_nofetch() { + einfo + einfo "Please download ${SRC_URI} and place it to ${DISTDIR}" + einfo +} + +src_install() { + doman msms.1 + dodoc README msms.html ReleaseNotes + if use amd64; then + newbin ${PN}.x86_64Linux2.${PV} msms + elif use x86; then + newbin ${PN}.i86Linux2.${PV} msms + fi +} |