blob: 77bb3af01c71d641be348a0b14664dbf1efa4d91 (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/ncview/ncview-1.93c.ebuild,v 1.4 2008/06/29 08:02:03 tove Exp $
inherit multilib
DESCRIPTION="X-based viewer for netCDF files"
SRC_URI="ftp://cirrus.ucsd.edu/pub/ncview/${P}.tar.gz"
HOMEPAGE="http://meteora.ucsd.edu/~pierce/ncview_home_page.html"
LICENSE="GPL-2"
SLOT="0"
IUSE="udunits"
KEYWORDS="~x86 ~amd64 ~ppc"
DEPEND="sci-libs/netcdf
media-libs/netpbm
x11-libs/libXaw
udunits? ( sci-libs/udunits )"
src_compile() {
# force netpbm (could be a use flag, but worth it?)
econf \
--x-libraries=/usr/$(get_libdir) \
--x-include=/usr/include \
--with-libppm \
$(use_with udunits) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
local appdef=/usr/share/X11/app-defaults
dodir ${appdef}
dodir /usr/share/${PN}
# fix when root installs it.
sed -i \
-e "s:/usr/lib/X11/app-defaults:${D}${appdef}:g" \
install-appdef || die "sed failed"
emake \
DESTDIR="${D}" \
BINDIR="${D}/usr/bin" \
MANDIR="${D}/usr/share/man/man1" \
NCVIEW_LIB_DIR="${D}/usr/share/${PN}" \
XAPPLRESDIR="${D}/usr/share/X11/app-defaults" \
install || die "emake install failed"
insinto /usr/share/${PN}
doins *.ncmap nc_overlay* || die "doins failed"
dodoc README README_WISH_LIST RELEASE_NOTES || die
}
|