blob: babe77b7fa4e382a1d87f8be42ae288f21c744b1 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils java-pkg-2
MY_P="Opcion_v${PV}"
DESCRIPTION="Free font viewer written in Java"
HOMEPAGE="http://opcion.sourceforge.net/"
SRC_URI="mirror://sourceforge/opcion/${MY_P}_src.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
COMMON_DEP="=dev-java/jgoodies-looks-1.2*"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEP}
app-arch/unzip"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd "${S}"
# add missing constructor
epatch "${FILESDIR}/${P}-fix-source.patch"
# calls nonexisting constructor and seems unused
rm FontViewer/windows/test.java || die
rm -rf com/jgoodies || die
find . -name '*.class' -delete || die
rm *.txt || die
}
src_compile() {
find . -name '*.java' > "${T}/src.list"
local cp="$(java-pkg_getjars jgoodies-looks-1.2)"
mkdir build || die
# quite icky way to copy resources
cp -R FontViewer com build || die
find build -name '*.java' -delete
ejavac -nowarn -classpath "${cp}" -d build "@${T}/src.list"
jar cf ${PN}.jar -C build . || die
}
src_install() {
java-pkg_dojar ${PN}.jar
java-pkg_dolauncher ${PN} --main FontViewer.Opcion
newicon FontViewer/resources/icons/IconSmall.png ${PN}-icon.png
make_desktop_entry ${PN} opcion ${PN}-icon
}
|