diff options
Diffstat (limited to 'sci-astronomy/wcstools/wcstools-3.6.7.ebuild')
-rw-r--r-- | sci-astronomy/wcstools/wcstools-3.6.7.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/sci-astronomy/wcstools/wcstools-3.6.7.ebuild b/sci-astronomy/wcstools/wcstools-3.6.7.ebuild deleted file mode 100644 index 8c1ec6e4102a..000000000000 --- a/sci-astronomy/wcstools/wcstools-3.6.7.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcstools/wcstools-3.6.7.ebuild,v 1.1 2007/02/21 16:45:37 bicatali Exp $ - -inherit eutils autotools - -DESCRIPTION="Astronomy Library to handle World Coordinate System for 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" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - # fixed some warnings - epatch "${FILESDIR}"/${P}-codewarn.patch - # autotoolization - epatch "${FILESDIR}"/${P}-autotools.patch - eautoreconf -} - -src_test() { - cd "${S}" - ebegin "Testing various wcstools programs" - ./newfits -a 10 -j 248 41 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 - eend -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - doman Man/man1/* - dodoc Readme Programs NEWS - docinto libwcs - dodoc libwcs/{Readme,NEWS} -} |