commit: d43b5943aff2ab8aa0cab1dcf9b26943bc96ba7d Author: Joseph Jon Booker <joe <AT> neoturbine <DOT> net> AuthorDate: Mon Aug 10 02:22:01 2015 +0000 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org> CommitDate: Mon Aug 10 02:22:01 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d43b5943
sci-astronomy/casapy-bin: version bump casapy-bin to 4.4.0 Package-Manager: portage-2.2.20 sci-astronomy/casapy-bin/ChangeLog | 7 ++- sci-astronomy/casapy-bin/casapy-bin-4.4.0.ebuild | 69 ++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 1 deletion(-) diff --git a/sci-astronomy/casapy-bin/ChangeLog b/sci-astronomy/casapy-bin/ChangeLog index 8a563a7..4ddfbd3 100644 --- a/sci-astronomy/casapy-bin/ChangeLog +++ b/sci-astronomy/casapy-bin/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for sci-astronomy/casapy-bin -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*casapy-bin-4.4.0 (10 Aug 2015) + + 10 Aug 2015; Joseph Jon Booker <j...@neoturbine.net> +casapy-bin-4.4.0.ebuild: + sci-astronomy/casapy-bin: version bump casapy-bin to 4.4.0 + *casapy-bin-4.2.2.30986_p1 (09 Sep 2014) 09 Sep 2014; Joseph Jon Booker <j...@neoturbine.net> diff --git a/sci-astronomy/casapy-bin/casapy-bin-4.4.0.ebuild b/sci-astronomy/casapy-bin/casapy-bin-4.4.0.ebuild new file mode 100644 index 0000000..f545ae2 --- /dev/null +++ b/sci-astronomy/casapy-bin/casapy-bin-4.4.0.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2015 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=${P/py-bin/-release}-el6 +SRC_URI="https://svn.cv.nrao.edu/casa/linux_distro/release/el6/${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." +}