summaryrefslogtreecommitdiff
blob: 2008228644271d36d5f24788fa7feb6805b7a0ce (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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

JAVA_PKG_IUSE="source"

inherit eutils java-pkg-2 java-ant-2

DESCRIPTION="Various reusable SWING components"
HOMEPAGE="http://swidgets.tigris.org"
SRC_URI="http://swidgets.tigris.org/files/documents/1472/18566/${P}-src.zip"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""

RDEPEND=">=virtual/jre-1.3
		dev-java/toolbar"

DEPEND="${RDEPEND}
		>=virtual/jdk-1.3
		app-arch/unzip"

src_unpack() {
	unpack ${A}

	# Remove the CVS directories
	ecvs_clean

	# Create the directory structor
	mkdir "${S}"

	# Move the broken out source file
	mv src "${S}"
	mv LabelledLayout.java "${S}"/src/org/tigris/swidgets/

	# Copy 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}
		classpath=$(java-config -p toolbar)
	EOF
}

src_install() {
	java-pkg_newjar dest/swidgets-${PV}.jar ${PN}.jar
	use source && java-pkg_dosrc "${S}"/src/org/
}