blob: 541548b713c332845cbb77935956a1c473696e4e (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Swiss Army Knife for PDF files"
HOMEPAGE="http://jpdftweak.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
COMMON_DEPEND="dev-java/itext:0
dev-java/jgoodies-forms:0"
RDEPEND=">=virtual/jre-1.5
${COMMON_DEPEND}"
DEPEND=">=virtual/jdk-1.5
app-arch/unzip:0
${COMMON_DEPEND}"
S="${WORKDIR}"
java_prepare() {
cd lib || die
java-pkg_jar-from jgoodies-forms forms.jar
java-pkg_jar-from itext iText.jar itext.jar
}
src_install() {
java-pkg_dojar ${PN}.jar
java-pkg_dolauncher ${PN} --main ${PN}.Main
dodoc README.txt
dohtml manual/*
}
|