summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-05-23 07:56:19 +0000
committerJustin Lecher <jlec@gentoo.org>2012-05-23 07:56:19 +0000
commit486abf36f651ff2e8b155ad9b1cfd99173366911 (patch)
tree3d003378c730c976be8e2df2b02c3e12ad91cbbf /sci-chemistry
parentRemove old. (diff)
downloadgentoo-2-486abf36f651ff2e8b155ad9b1cfd99173366911.tar.gz
gentoo-2-486abf36f651ff2e8b155ad9b1cfd99173366911.tar.bz2
gentoo-2-486abf36f651ff2e8b155ad9b1cfd99173366911.zip
sci-chemistry/msms-bin: Move to EAPI=4, use QA_PREBUILT instead of QA_DT_HASH
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/msms-bin/ChangeLog5
-rw-r--r--sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild18
2 files changed, 13 insertions, 10 deletions
diff --git a/sci-chemistry/msms-bin/ChangeLog b/sci-chemistry/msms-bin/ChangeLog
index 769c32178998..b96b597da8db 100644
--- a/sci-chemistry/msms-bin/ChangeLog
+++ b/sci-chemistry/msms-bin/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-chemistry/msms-bin
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/ChangeLog,v 1.6 2012/02/03 11:52:38 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/ChangeLog,v 1.7 2012/05/23 07:56:19 jlec Exp $
+
+ 23 May 2012; Justin Lecher <jlec@gentoo.org> msms-bin-2.6.1-r1.ebuild:
+ Move to EAPI=4, use QA_PREBUILT instead of QA_DT_HASH
03 Feb 2012; Justin Lecher <jlec@gentoo.org> msms-bin-2.6.1-r1.ebuild,
metadata.xml:
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
index fbca1431dc3e..c86fddd7b9cf 100644
--- a/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild
+++ b/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2012 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.6 2012/02/03 11:52:38 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild,v 1.7 2012/05/23 07:56:19 jlec Exp $
-EAPI=3
+EAPI=4
DESCRIPTION="MSMS allows to compute very efficiently triangulations of Solvent Excluded Surfaces"
HOMEPAGE="http://mgl.scripps.edu/people/sanner/html/msms_home.html"
@@ -20,26 +20,26 @@ RESTRICT="fetch"
S="${WORKDIR}"
-QA_DT_HASH="${EROOT#/}opt/bin/.*"
+QA_PREBUILT="${EROOT#/}opt/bin/.*"
pkg_nofetch() {
einfo "Please download ${A} from http://mgltools.scripps.edu/downloads#msms and place it to ${DISTDIR}"
}
src_install() {
- doman msms.1 || die
- dodoc README msms.html ReleaseNotes || die
+ doman msms.1
+ dodoc README msms.html ReleaseNotes
exeinto /opt/bin
if use amd64; then
- newexe ${PN%-bin}.x86_64Linux2.${PV} msms || die
+ newexe ${PN%-bin}.x86_64Linux2.${PV} msms
elif use x86; then
- newexe ${PN%-bin}.i86Linux2.${PV} msms || die
+ newexe ${PN%-bin}.i86Linux2.${PV} msms
fi
insinto /usr/share/${PN}/
- doins atmtypenumbers || die
+ doins atmtypenumbers
sed \
-e 's:nawk:awk:g' \
-e "s:./atmtypenumbers:${EPREFIX}/usr/share/${PN}/atmtypenumbers:g" \
-i pdb_to_xyz* || die
- dobin pdb_to_xyz* || die
+ dobin pdb_to_xyz*
}