blob: 13efbb973114efb5cc3c1fa297923ae91a953e8e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/javatar/javatar-2.5.ebuild,v 1.4 2005/10/08 11:05:52 betelgeuse Exp $
inherit java-pkg eutils
DESCRIPTION="Java library for creation and extraction of tar archives"
HOMEPAGE="http://www.trustice.com/java/tar/"
SRC_URI="ftp://ftp.gjt.org/pub/time/java/tar/${P}.tar.gz"
LICENSE="public-domain"
SLOT="2.5"
IUSE="jikes doc"
KEYWORDS="x86 amd64"
RDEPEND=">=virtual/jre-1.4
dev-java/sun-jaf-bin"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
>=dev-java/ant-core-1.4
jikes? ( dev-java/jikes )"
src_unpack() {
unpack ${A}
cd ${S}
cp ${FILESDIR}/javatar-2.5-build.xml build.xml
mkdir ${S}/lib
cd ${S}/lib
rm -f *.jar
java-pkg_jar-from sun-jaf-bin
}
src_compile() {
local antflags="jar"
use doc && antflags="${antflags} docs"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compile failed"
}
src_install() {
java-pkg_dojar dist/${PN}.jar
use doc && java-pkg_dohtml -r docs/* doc/*.html
echo "#!/bin/sh" > ${PN}
echo "\`java-config -J\` -cp \$(java-config -p sun-jaf-bin,javatar-2.5) com.ice.tar.tar" >> ${PN}
dobin ${PN}
}
|