diff options
Diffstat (limited to 'sci-libs/qfits/qfits-6.2.0.ebuild')
-rw-r--r-- | sci-libs/qfits/qfits-6.2.0.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sci-libs/qfits/qfits-6.2.0.ebuild b/sci-libs/qfits/qfits-6.2.0.ebuild new file mode 100644 index 000000000000..9aca948bd8cc --- /dev/null +++ b/sci-libs/qfits/qfits-6.2.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/qfits/qfits-6.2.0.ebuild,v 1.1 2007/02/23 00:48:16 bicatali Exp $ + +inherit eutils + +DESCRIPTION="ESO stand-alone C library offering easy access to FITS files." +HOMEPAGE="http://www.eso.org/projects/aot/qfits/" +SRC_URI="ftp://ftp.hq.eso.org/pub/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + cd "${S}" + # test failed due to a switch between strcpy and strcat. + epatch "${FILESDIR}"/${P}-ttest.patch +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README AUTHORS + use doc && dohtml html +} |