blob: 0da959c4bd6aff7490e6a209ac7627b5eb57e799 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xfitsview/xfitsview-2.1.ebuild,v 1.1 2007/04/19 16:27:39 bicatali Exp $
inherit eutils
MY_PN=XFITSview
MY_P=${MY_PN}${PV}
DESCRIPTION="Viewer for astronomical images in FITS format"
HOMEPAGE="http://www.nrao.edu/software/fitsview/"
SRC_URI="ftp://ftp.cv.nrao.edu/fits/os-support/unix/xfitsview/${PN}${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/motif"
S=${WORKDIR}/${MY_PN}
src_compile() {
econf || die "econf failed"
# trick to make parallel building work
for d in fitssubs src; do
pushd ${d}
emake || die "emake ${d} failed"
popd
done
emake -j1 || die "emake failed"
}
src_install() {
dodoc README changes notes.text
dobin XFITSview
}
|