diff options
author | 2008-08-22 18:26:16 +0000 | |
---|---|---|
committer | 2008-08-22 18:26:16 +0000 | |
commit | 338b98f2a11392af602cc318ab6d6910891bf45d (patch) | |
tree | b0f92b893ee39e589f89bcb8bf1766263ea8991b /sci-libs/cfitsio/cfitsio-3.100.ebuild | |
parent | Stable on ppc wrt bug 235459 (diff) | |
download | historical-338b98f2a11392af602cc318ab6d6910891bf45d.tar.gz historical-338b98f2a11392af602cc318ab6d6910891bf45d.tar.bz2 historical-338b98f2a11392af602cc318ab6d6910891bf45d.zip |
Version bump
Package-Manager: portage-2.2_rc8/cvs/Linux 2.6.23-gentoo-r9 x86_64
Diffstat (limited to 'sci-libs/cfitsio/cfitsio-3.100.ebuild')
-rw-r--r-- | sci-libs/cfitsio/cfitsio-3.100.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sci-libs/cfitsio/cfitsio-3.100.ebuild b/sci-libs/cfitsio/cfitsio-3.100.ebuild new file mode 100644 index 000000000000..f3db60cba9d8 --- /dev/null +++ b/sci-libs/cfitsio/cfitsio-3.100.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cfitsio/cfitsio-3.100.ebuild,v 1.1 2008/08/22 18:26:16 bicatali Exp $ + +inherit eutils fortran autotools + +DESCRIPTION="C and Fortran library for manipulating FITS files" +HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html" +SRC_URI="ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${PN}${PV//.}.tar.gz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc fortran" + +DEPEND="fortran? ( dev-lang/cfortran )" +RDEPEND="" + +S="${WORKDIR}/${PN}" + +pkg_setup() { + if use fortran; then + FORTRAN="gfortran g77 ifc" + fortran_pkg_setup + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + # avoid internal cfortran + if use fortran; then + sed -i \ + -e 's:"cfortran.h":<cfortran.h>:' \ + f77_wrap.h || die "sed fortran failed" + mv cfortran.h cfortran.h.disabled + fi + epatch "${FILESDIR}"/${P}-autotools.patch + eautoreconf +} + +src_compile() { + econf $(use_enable fortran) || die "econf failed" + emake || die "emake failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc changes.txt README cfitsio.doc || die "dodoc failed" + insinto /usr/share/doc/${PF}/examples + doins cookbook.c testprog.c speed.c smem.c || die "install examples failed" + use doc && dodoc cfitsio.ps quick.ps + if use fortran; then + doins cookbook.f || die "install cookbook failed" + dodoc fitsio.doc + use doc && dodoc fitsio.ps + fi +} |