diff options
author | Joseph Jon Booker <joe@neoturbine.net> | 2014-02-13 13:12:28 -0500 |
---|---|---|
committer | Joseph Jon Booker <joe@neoturbine.net> | 2014-02-13 13:12:28 -0500 |
commit | 5bbf2a80b7ed5386ff47e89383247a2ef80b9f1d (patch) | |
tree | 8c17abc1b918e8018944db680467980c75279acb /sci-astronomy/casapy-bin/casapy-bin-4.2.0.28322.021_p1.ebuild | |
parent | dev-java/gluegen: dev-java/gluegen version bump (diff) | |
download | sci-5bbf2a80b7ed5386ff47e89383247a2ef80b9f1d.tar.gz sci-5bbf2a80b7ed5386ff47e89383247a2ef80b9f1d.tar.bz2 sci-5bbf2a80b7ed5386ff47e89383247a2ef80b9f1d.zip |
sci-astronomy/casapy-bin: Version Bump
Package-Manager: portage-2.2.8-r1
Diffstat (limited to 'sci-astronomy/casapy-bin/casapy-bin-4.2.0.28322.021_p1.ebuild')
-rw-r--r-- | sci-astronomy/casapy-bin/casapy-bin-4.2.0.28322.021_p1.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/sci-astronomy/casapy-bin/casapy-bin-4.2.0.28322.021_p1.ebuild b/sci-astronomy/casapy-bin/casapy-bin-4.2.0.28322.021_p1.ebuild new file mode 100644 index 000000000..6bcc74f0b --- /dev/null +++ b/sci-astronomy/casapy-bin/casapy-bin-4.2.0.28322.021_p1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +inherit versionator + +DESCRIPTION="Software package to calibrate, image, and analyze radioastronomical data" +HOMEPAGE="http://casa.nrao.edu/" + +MY_P=$(version_format_string '${PN%-bin}-$1$2.$3.$4-$5-${6#p}-64b') +SRC_URI="https://svn.cv.nrao.edu/casa/linux_distro/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND=" + app-crypt/mit-krb5 + dev-db/sqlite + dev-libs/glib + dev-libs/icu + dev-libs/libxslt + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + media-libs/gst-plugins-base + media-libs/libjpeg-turbo + media-libs/mesa + media-libs/tiff + sci-libs/gsl + sci-libs/pgplot + sys-apps/keyutils + sys-apps/util-linux + sys-devel/gcc[fortran] + virtual/libffi + x11-libs/libdrm + x11-libs/libSM + x11-libs/libXau + x11-libs/libXcursor + x11-libs/libXdmcp + x11-libs/libXi + x11-libs/libXinerama + x11-libs/libXrandr +" + +S="${WORKDIR}/${MY_P}" +QA_PREBUILT="/opt/casapy/* /opt/casapy/sbin/* /opt/casapy/lib64/*" + +src_compile() { :; } + +src_install() { + dodir /opt/ + cp -R "${S}" "${D}/opt/casapy" || die "Could not copy casapy into ${D}/opt" + + dodir /opt/bin + cd "${D}/opt/casapy/bin" + for binary in `ls` + do + dosym ../casapy/$binary /opt/bin/$binary + done +} + +pkg_postinst() { + einfo "CASA will use media-gfx/graphviz if this package is installed." + ewarn "Upstream warns that SElinux must be disabled, set to permissive, or configured to allow execheap." +} |