summaryrefslogtreecommitdiff
blob: 428640248ee13b395c702d72f44b91cfbb87609b (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
# Copyright 2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI="3"

JAVA_PKG_IUSE="doc"
inherit java-pkg-2 java-ant-2

DESCRIPTION="JArgs command line option parsing suite for Java"
HOMEPAGE="http://jargs.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=">=virtual/jdk-1.3"
RDEPEND=">=virtual/jre-1.3"

EANT_BUILD_TARGET="compile runtimejar"
EANT_DOC_TARGET="javadoc"

java_prepare() {
	rm -v lib/*.jar || die
}

src_install() {
	java-pkg_dojar "lib/${PN}.jar"
}