blob: 52b8baaaf5e30443c0c0e52659b7062fc5fa32e0 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit eutils autotools
DESCRIPTION="Radar Software Library"
HOMEPAGE="http://trmm-fc.gsfc.nasa.gov/trmm_gv/software/rsl/index.html"
SRC_URI="ftp://trmm-fc.gsfc.nasa.gov/software/${PN}-v${PV}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="sci-libs/hdf
media-libs/jpeg"
DEPEND="${RDEPEND}"
S="${WORKDIR}/rsl-v${PV}"
src_prepare() {
epatch "${FILESDIR}/${PN}-"{warnings,automake,type_str,valgrind}".patch"
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README CHANGES || die
}
|