blob: 5d54591aca84faef256a9c46b6ce84136ed3542f (
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
35
36
37
38
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cfitsio/cfitsio-2.500.ebuild,v 1.3 2005/06/27 00:03:03 nerdboy Exp $
inherit eutils
IUSE="doc"
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="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~hppa ~alpha ~amd64 ppc ~ppc64"
DEPEND="virtual/libc"
S=${WORKDIR}/${PN}
src_compile() {
econf --prefix=${D}usr || die "econf failed"
sed -i -e "s:CFITSIO_LIB = /usr/lib:CFITSIO_LIB = ${D}usr/lib:g" Makefile
sed -i -e "s:CFITSIO_INCLUDE = /usr/include:CFITSIO_INCLUDE = ${D}usr/include:g" Makefile
emake || die "make failed"
make shared fitscopy imcopy listhead
}
src_install () {
dodir /usr/lib /usr/include
einstall || die "einstall failed"
dobin fitscopy imcopy listhead
dodoc changes.txt README Licence.txt
if use doc; then
dodoc *.ps cookbook.*
fi
}
|