From 233ecae467547f7772ee13a1fc00a4ffb52d0d2d Mon Sep 17 00:00:00 2001 From: Henry Gebhardt Date: Sun, 11 Sep 2011 16:03:26 +0200 Subject: sci-astronomy/ftools-6.11: Version bump --- sci-astronomy/ftools/Manifest | 2 + sci-astronomy/ftools/ftools-6.11.ebuild | 105 ++++++++++++++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 sci-astronomy/ftools/ftools-6.11.ebuild diff --git a/sci-astronomy/ftools/Manifest b/sci-astronomy/ftools/Manifest index 2581172..56b9581 100644 --- a/sci-astronomy/ftools/Manifest +++ b/sci-astronomy/ftools/Manifest @@ -1,6 +1,8 @@ AUX installManPage-S-namecollision.patch 786 RMD160 82f9911c5922d02f9f0870c19b960ae17b670ad1 SHA1 3e38468fda1e1b8c17a60ae1f9e27b266958aa72 SHA256 27bd0f77c7ddaa96cac057f2e2c690188059858e6e6fe495336556fb7c5ece31 DIST heasoft-6.10src.tar.gz 65094690 RMD160 ce22802a22fe0273a0d7c56b617436ee709af565 SHA1 21d4bb5c8fc0730c87114da11ba67edcfd82d77d SHA256 1e5d5439803e9b8c744784362e614fc7c8a6fb47b3430ea1edf23a5610b2fb0e +DIST heasoft-6.11src.tar.gz 68732833 RMD160 aaad614d9ae68f535408db1c2fba199578274856 SHA1 e941edf6c626c57b974da0079d726f8a282d4c89 SHA256 2b93448846303d2d1b4cf9c509798a68e5cc40bf324d6d60e52e3bc62d5423b9 DIST heasoft6.9src.tar.gz 64709171 RMD160 e70eade8c125c47ed10bb83e1bb21fb7f3f5e229 SHA1 4c8b51f9a3a528d89065a0967bb6e0dc5f25ea30 SHA256 83df06147dc772441427c888c3c7c9d810486aad9a45208586bba56baf160ab4 EBUILD ftools-6.10.ebuild 3120 RMD160 b6fcee4134ad430cbc39e3f3ed9f902acbaaba4f SHA1 823503f9cf61d16523d9663d8ce28fd74217564f SHA256 243a6d99485a6635d0d6ca525a3ba1bc938276562d220aa4ad8593717a84b956 +EBUILD ftools-6.11.ebuild 3120 RMD160 bbb01e185b5ee6ac5f04816c5f208b4f0a497fd9 SHA1 5bd73fc5fe4feddb11bf89a6b0553ec07ae2bd70 SHA256 ac9dc9b3735ad131d79efcac83748e666bef5105b60d3abbb6fdd204e5a9a39d EBUILD ftools-6.9-r1.ebuild 2967 RMD160 de5922fdb1c535b3bb760241ae35151606a5a111 SHA1 4ee04aea9c8e4f2d58329b800e67ddb4c9e770fa SHA256 8adba16987ad76a43e8a63efd2592b8b716599a205da9f0cf3a3a3977be4dd89 EBUILD ftools-6.9.ebuild 2251 RMD160 b08369c20cb0901c9a64e5478a37bd6ff9f1fcaa SHA1 6d809585a4d172b93deca0d833a1984b34bd206a SHA256 7e2671f0bf9d91bfc2b9c6fd2939449a092dbfa60ac05d0d2a99ab30c018dd50 diff --git a/sci-astronomy/ftools/ftools-6.11.ebuild b/sci-astronomy/ftools/ftools-6.11.ebuild new file mode 100644 index 0000000..bac8a60 --- /dev/null +++ b/sci-astronomy/ftools/ftools-6.11.ebuild @@ -0,0 +1,105 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=2 + +inherit eutils + +DESCRIPTION="General-Use FTools for manipulating and inspecting FITS files" +HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/ftools/ftools_menu.html" +SRC_URI="http://localhost/heasoft-${PV}src.tar.gz" +LICENSE="UNKOWN freedist as-is GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" +RESTRICT="test" + +DEPEND="x11-base/xorg-server + >=dev-lang/perl-5.6.0" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/heasoft-${PV}/BUILD_DIR" +PREFIX="${ROOT}/usr/heasoft-${PVR}" + +MSG="The HEASOFT General-Use FTools have been installed into +${PREFIX}. + +To use the HEASOFT, you need to source the headas init script, +like so + . \${HEADAS}/headas-init.sh +if you are using a bourne-shell. As a shortcut you can put an +alias in your ~/.bashrc: + alias heainit=\". \${HEADAS}/headas-init.sh\" + +C-shells should source \${HEADAS}/headas-init.csh instead. + +The environment variable \${HEADAS} has been defined for you +globally in /etc/env.d/99headas." + +pkg_setup() { + [[ -d "${PREFIX}" ]] && die "Please unmerge previous installation." + ewarn "This ebuild works but doesn't do things as god intended..." + einfo "PREFIX=${PREFIX}" +} + +src_prepare() { + for subdir in tcl tk; do + cd "${S}"/../tcltk/${subdir}/unix + epatch "${FILESDIR}"/installManPage-S-namecollision.patch \ + || die "epatch failed" + done + cd "${S}"/../ftools/guis/xdf + sed -i '27iClientData Tk_MainWindow (Tcl_Interp *) ;' xdfShared.c || die +} + +src_configure() { + econf --prefix="${PREFIX}" || die "econf failed" +} + +src_compile() { + # -j1 and -j2 are ok, but -j3 is not. + emake -j2 || die "emake failed" +} + +src_install() { + # The heasoft install scripts don't allow for $DESTDIR. Thus we + # must let headas install itself. This is very, very bad. + addwrite "${PREFIX}" + einfo "Installing into ${PREFIX} directly..." + # -j1 is needed, don't know why exactly + emake -j1 install || die "emake install failed" + einfo "Moving ${PREFIX} to image directory..." + D_PREFIX_DIR="${D}/${PREFIX%/*}" + mkdir -p "${D_PREFIX_DIR}" || die "Failed to create image directory" + mv "${PREFIX}" "${D_PREFIX_DIR}" || die "Failed to move to image directory" + + echo "${MSG}" > WTF + dodoc WTF + + HEADAS=`grep "HD_TOP_EXEC_PFX.*= " Makefile \ + | sed "s#^HD_TOP_EXEC_PFX.*= ##"` + echo "HEADAS=\"${HEADAS}\"" > 99headas + doenvd 99headas + + DHEADAS="${D}/${HEADAS}" + + einfo "Heasoft's installation is a mess. A revdep-rebuild control " + einfo "file is installed for ape and cfitsio, so that any dependencies " + einfo "won't scream everytime you run revdep-rebuild." + ape_so="`ls "${DHEADAS}"/lib/libape_*.so`" + ape_so="${ape_so##*/}" + cfitsio_so="`ls "${DHEADAS}"/lib/libcfitsio_*.so`" + cfitsio_so="${cfitsio_so##*/}" + echo "# Heasoft's installation is a mess." > 70-heasoft + echo "# This file makes it slightly less annoying for other" >> 70-heasoft + echo "# packages using its libraries." >> 70-heasoft + echo >> 70-heasoft + echo "LD_LIBRARY_MASK=\"${ape_so} ${cfitsio_so}\"" >> 70-heasoft + insinto /etc/revdep-rebuild/ + doins 70-heasoft +} + +pkg_postinst() { + elog "${MSG}" +} -- cgit v1.2.3-65-gdbad