summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2011-02-23 15:39:44 +0000
committerJustin Lecher <jlec@gentoo.org>2011-02-23 15:39:44 +0000
commit284739659471d67de87a24ad900a352f38665fe1 (patch)
tree4ad403c52b35eda57456b479d89d0ba99c000207 /sci-chemistry/solve-resolve-bin
parentStable for HPPA (bug #355927). (diff)
downloadgentoo-2-284739659471d67de87a24ad900a352f38665fe1.tar.gz
gentoo-2-284739659471d67de87a24ad900a352f38665fe1.tar.bz2
gentoo-2-284739659471d67de87a24ad900a352f38665fe1.zip
QA: Double // and missing die
(Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/solve-resolve-bin')
-rw-r--r--sci-chemistry/solve-resolve-bin/ChangeLog7
-rw-r--r--sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild15
2 files changed, 13 insertions, 9 deletions
diff --git a/sci-chemistry/solve-resolve-bin/ChangeLog b/sci-chemistry/solve-resolve-bin/ChangeLog
index 199f8c023277..b799aa4db482 100644
--- a/sci-chemistry/solve-resolve-bin/ChangeLog
+++ b/sci-chemistry/solve-resolve-bin/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-chemistry/solve-resolve-bin
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/solve-resolve-bin/ChangeLog,v 1.1 2010/02/02 22:23:45 jlec Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/solve-resolve-bin/ChangeLog,v 1.2 2011/02/23 15:39:44 jlec Exp $
+
+ 23 Feb 2011; Justin Lecher <jlec@gentoo.org> solve-resolve-bin-2.13.ebuild:
+ QA: Double // and missing die
*solve-resolve-bin-2.13 (02 Feb 2010)
diff --git a/sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild b/sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild
index f84233650680..211a8770cbc6 100644
--- a/sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild
+++ b/sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild,v 1.1 2010/02/02 22:23:45 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/solve-resolve-bin/solve-resolve-bin-2.13.ebuild,v 1.2 2011/02/23 15:39:44 jlec Exp $
EAPI="3"
@@ -8,8 +8,9 @@ inherit eutils
DESCRIPTION="Automated crystallographic structure solution for MIR, SAD, and MAD"
HOMEPAGE="http://www.solve.lanl.gov/index.html"
-SRC_URI="x86? ( http://solve.lanl.gov/pub/solve/${PV}/solve-${PV}-linux.tar.gz )
- amd64? ( http://solve.lanl.gov/pub/solve/${PV}/solve-${PV}-linux-64.tar.gz )"
+SRC_URI="
+ x86? ( http://solve.lanl.gov/pub/solve/${PV}/solve-${PV}-linux.tar.gz )
+ amd64? ( http://solve.lanl.gov/pub/solve/${PV}/solve-${PV}-linux-64.tar.gz )"
SLOT="0"
LICENSE="solve"
@@ -26,7 +27,7 @@ IN_PATH="/opt/solve-resolve/"
src_install(){
exeinto ${IN_PATH}bin/
- doexe bin/*
+ doexe bin/* || die
insinto ${IN_PATH}lib/
doins -r lib/{*sym,sym*,hist*,*dat,segments,patterns} || die
@@ -49,12 +50,12 @@ src_install(){
PATH="${EPREFIX}/${IN_PATH}bin"
EOF
- doenvd "${T}"/20solve-resolve
+ doenvd "${T}"/20solve-resolve || die
}
pkg_postinst(){
einfo "Get a valid license key from"
einfo "http://solve.lanl.gov/license.html"
einfo "and place it in"
- einfo "${EPREFIX}/${IN_PATH}lib/"
+ einfo "${EPREFIX}${IN_PATH}lib/"
}