summaryrefslogtreecommitdiff
blob: 82b7ec0c0cd71186227fd8de9cd376218d9d3b6e (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/dev-java/jrrd/jrrd-1.0.1.ebuild,v 1.3 2007/09/13 06:04:51 mr_bones_ Exp $

inherit eutils java-pkg-2

DESCRIPTION="Java Interface to Tobias Oetiker's RRDtool"

SLOT="0"
SRC_URI="mirror://sourceforge/opennms/${P}.tar.gz"
HOMEPAGE="http://www.opennms.org/"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"

COMMON_DEP="net-analyzer/rrdtool"

RDEPEND=">=virtual/jre-1.4
	${COMMON_DEP}"

DEPEND=">=virtual/jdk-1.4
	${COMMON_DEP}"

S="${WORKDIR}/${P}"

src_compile(){
	cd "${S}"
	econf || die "Could not configure ${P}"
	emake || die "Could not build ${P}"
}

src_install() {
	cd "${S}"
	java-pkg_newjar "${S}/${PN}.jar"
	make DESTDIR="${D}" install || die "Could not install lib${PN}.so"
# ugly but effective
	rm -fR "${D}/usr/share/java" || die "Could not remove extra jar"
}