summaryrefslogtreecommitdiff
blob: ec81638c2e5a5b18b7e960ca75b3a1fe5513174b (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-2009 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
}