blob: b12fd97ca9a15d22a2e389e9ac8f7216594c0279 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/jdictionary/jdictionary-1.8-r1.ebuild,v 1.7 2006/10/05 14:31:08 gustavoz Exp $
inherit java-pkg
DESCRIPTION="A online Java-based dictionary"
HOMEPAGE="http://jdictionary.sourceforge.net/"
SRC_URI="mirror://sourceforge/jdictionary/jdictionary-${PV/./_}.zip"
IUSE=""
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="amd64 ppc x86"
RDEPEND=">=virtual/jre-1.3"
DEPEND=">=virtual/jdk-1.3
app-arch/unzip"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
mkdir compiled
jar xf ${PN}.jar || die "failed to unpack jar"
cp -r resources compiled
}
src_compile(){
javac -classpath . $(find . -name \*.java) -d compiled || die "failed to build"
jar cf ${PN}.jar -C compiled .
}
src_install() {
java-pkg_dojar ${PN}.jar
echo "#!/bin/sh" > ${PN}
echo "java -classpath \$(java-config -p ${PN}) info.jdictionary.JDictionary '\$*'" >> ${PN}
dobin ${PN}
}
|