blob: 19d88d924c95b66488ea3368aa0c3d8ace50a27f (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/toolbar/toolbar-1.1.0-r1.ebuild,v 1.2 2007/01/28 19:42:57 betelgeuse Exp $
inherit java-pkg-2 java-ant-2
DESCRIPTION="An improved version of JToolBar"
HOMEPAGE="http://toolbar.tigris.org"
SRC_URI="http://toolbar.tigris.org/files/documents/869/25285/toolbar-${PV}-src.zip"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="source"
DEPEND=">=virtual/jdk-1.4
dev-java/ant-core
app-arch/unzip
source? ( app-arch/zip )"
RDEPEND=">=virtual/jre-1.4"
src_unpack() {
unpack ${A}
# Remove the CVS directories
find . -name 'CVS' -exec rmdir \{\} \;
# Make the work environment
mkdir "${S}"
# Setup the structure
mv src "${S}"
rm -rf test
# Copy over the build.xml
cp ${FILESDIR}/build.xml "${S}" || die "Unable to copy the build file!"
cat > "${S}/build.properties" <<- EOF
src=src
dest=dest
build=build
version=${PV}
EOF
}
src_compile() {
eant -Dversion=${PV}
}
src_install() {
java-pkg_newjar dest/toolbar-${PV}.jar ${PN}.jar
use source && java-pkg_dosrc ${S}/src/org/
}
|