summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2014-05-19 09:17:29 +0000
committerJustin Lecher <jlec@gentoo.org>2014-05-19 09:17:29 +0000
commit90578142ce1b61ffbefdbc16e61808020f0f76d7 (patch)
treeb41a0c56ebca9a5af7720fe5acbe66d00c10f007 /sci-chemistry
parentsci-chemistry/shelx: Bump to EAPI=5, add missing die, add prefix support (diff)
downloadgentoo-2-90578142ce1b61ffbefdbc16e61808020f0f76d7.tar.gz
gentoo-2-90578142ce1b61ffbefdbc16e61808020f0f76d7.tar.bz2
gentoo-2-90578142ce1b61ffbefdbc16e61808020f0f76d7.zip
sci-chemistry/shelx: Version BUmp
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/shelx/ChangeLog7
-rw-r--r--sci-chemistry/shelx/shelx-20140326.ebuild58
2 files changed, 64 insertions, 1 deletions
diff --git a/sci-chemistry/shelx/ChangeLog b/sci-chemistry/shelx/ChangeLog
index fd8823cc38b2..f1b6b35a798f 100644
--- a/sci-chemistry/shelx/ChangeLog
+++ b/sci-chemistry/shelx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-chemistry/shelx
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/ChangeLog,v 1.23 2014/05/19 08:48:08 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/ChangeLog,v 1.24 2014/05/19 09:17:29 jlec Exp $
+
+*shelx-20140326 (19 May 2014)
+
+ 19 May 2014; Justin Lecher <jlec@gentoo.org> +shelx-20140326.ebuild:
+ Version BUmp
*shelx-20060317-r2 (19 May 2014)
diff --git a/sci-chemistry/shelx/shelx-20140326.ebuild b/sci-chemistry/shelx/shelx-20140326.ebuild
new file mode 100644
index 000000000000..3c116b08b4f1
--- /dev/null
+++ b/sci-chemistry/shelx/shelx-20140326.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/shelx-20140326.ebuild,v 1.1 2014/05/19 09:17:29 jlec Exp $
+
+EAPI=5
+
+DESCRIPTION="Programs for crystal structure determination from single-crystal diffraction data"
+HOMEPAGE="http://shelx.uni-ac.gwdg.de/SHELX/"
+SRC_URI="
+ amd64? (
+ anode_amd64.bz2
+ ciftab_amd64.bz2
+ shelxc_amd64.bz2
+ shelxd_amd64.bz2
+ shelxe_amd64.bz2
+ shelxl_amd64.bz2
+ shelxs_amd64.bz2
+ shredcif_amd64.bz2
+ )
+ x86? (
+ anode_x86.bz2
+ ciftab_x86.bz2
+ shelxc_x86.bz2
+ shelxd_x86.bz2
+ shelxe_x86.bz2
+ shelxl_x86.bz2
+ shelxs_x86.bz2
+ shredcif_x86.bz2
+ )
+"
+
+SLOT="0"
+LICENSE="free-noncomm"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dosformat"
+
+S="${WORKDIR}"
+
+RESTRICT="fetch"
+
+QA_PREBUILT="opt/bin/*"
+
+pkg_nofetch() {
+ elog "Go to ${HOMEPAGE}"
+ elog "Fill out the application form, and send it in."
+ elog "Download ${A} and rename them to"
+ use amd64 && elog "*_amd64.bz2"
+ use x86 && elog "*_x86.bz2"
+ elog "and place renamed tarballs in ${DISTDIR}."
+}
+
+src_install() {
+ local i
+ into /opt
+ for i in *; do
+ newbin ${i} ${i/_*/}
+ done
+}