blob: 27f46a90cae4e47b240b8a6ad1c6287d1321f6ad (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
JAVA_PKG_IUSE="doc source test"
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="StatCVS generates HTML reports from CVS repository logs."
HOMEPAGE="http://statcvs.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-source.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
COMMON_DEPEND="
>=dev-java/jcommon-1.0.6
>=dev-java/jfreechart-1.0.3
dev-java/jdom"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
test? ( =dev-java/junit-3.8* )
${COMMON_DEPEND}"
RDEPEND=">=virtual/jre-1.4
dev-util/cvs
dev-java/jtreemap
${COMMON_DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}" || die
epatch "${FILESDIR}"/${P}-build.xml.patch
epatch "${FILESDIR}"/${P}-external-jtreemap.patch
find . -name "*.jar" -print -delete
cd "${S}"/lib || die
java-pkg_jar-from jcommon-1.0 jcommon.jar jcommon-1.0.6.jar
java-pkg_jar-from jfreechart-1.0 jfreechart.jar jfreechart-1.0.3.jar
java-pkg_jar-from jdom-1.0 jdom.jar
use test && java-pkg_jar-from --build-only junit
}
src_install() {
java-pkg_dojar dist/${PN}.jar
java-pkg_dolauncher ${PN} --main net.sf.statcvs.Main
use doc && java-pkg_dohtml -r doc/*
use source && java-pkg_dosrc src/net
}
src_compile() {
eant compile copyfiles jar $(use_doc)
}
src_test() {
ANT_TASKS="ant-junit" eant test
}
pkg_postinst() {
elog "For instructions on how to use StatCVS see"
elog "http://statcvs.sourceforge.net/manual/"
}
|