blob: 84bca50dfae5cdfceff8630f9aff88338f33072e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cfitsio/cfitsio-2.430.ebuild,v 1.3 2003/08/05 19:03:20 vapier Exp $
DESCRIPTION="C and Fortran library for reading and writing files in FITS data format"
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="GPL-2"
SLOT="2"
KEYWORDS="~x86"
DEPEND="virtual/glibc"
S=${WORKDIR}/${PN}
src_compile() {
econf || die "./configure failed"
emake || die
}
src_install () {
dodir /usr/lib /usr/include
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
FTOOLS_LIB=${D}usr/lib \
FTOOLS_INCLUDE=${D}usr/include \
install || die
dodoc changes.txt README
}
|