diff options
Diffstat (limited to 'sci-astronomy/wcstools/wcstools-3.7.6.ebuild')
-rw-r--r-- | sci-astronomy/wcstools/wcstools-3.7.6.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sci-astronomy/wcstools/wcstools-3.7.6.ebuild b/sci-astronomy/wcstools/wcstools-3.7.6.ebuild new file mode 100644 index 000000000000..a0c668c5972d --- /dev/null +++ b/sci-astronomy/wcstools/wcstools-3.7.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcstools/wcstools-3.7.6.ebuild,v 1.1 2008/11/05 22:00:15 bicatali Exp $ + +EAPI=2 +inherit eutils autotools + +DESCRIPTION="World Coordinate System library for astronomical FITS images" +HOMEPAGE="http://tdc-www.harvard.edu/software/wcstools" +SRC_URI="http://tdc-www.harvard.edu/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-3.7.0-fix-leaks.patch + epatch "${FILESDIR}"/${P}-autotools.patch + sed -i -e 's/3.7.x/${PV}/' "${S}"/configure.ac || die "sed failed" + eautoreconf +} + +src_test() { + einfo "Testing various wcstools programs" + ./newfits -a 10 -j 248 41 -p 0.15 test.fits || die "test newfits failed" + ./sethead test.fits A=1 B=1 || die "test sethead failed" + [[ "$(./gethead test.fits RA)" == "16:32:00.000" ]] \ + || die "test gethead failed" + rm -f test.fits +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + doman Man/man1/* || die "doman failed" + dodoc Readme Programs NEWS libned/NED_client || die "dodoc failed" + newdoc libwcs/Readme Readme.libwcs || die "newdoc failed" + newdoc libwcs/NEWS NEWS.libwcs || die "newdoc failed" +} |