diff options
author | Vlastimil Babka <caster@gentoo.org> | 2007-04-28 22:14:23 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2007-04-28 22:14:23 +0000 |
commit | b2ddbb2ad32704f19b7b7bc9832707480cebfc57 (patch) | |
tree | e1b0821f9cf336ca57bb80c2fc4209fbf7007fe0 /dev-java/skinlf/skinlf-6.7.ebuild | |
parent | Require virtual/jdk-1.4 and virtual/jre-1.4 because that's the version of byt... (diff) | |
download | historical-b2ddbb2ad32704f19b7b7bc9832707480cebfc57.tar.gz historical-b2ddbb2ad32704f19b7b7bc9832707480cebfc57.tar.bz2 historical-b2ddbb2ad32704f19b7b7bc9832707480cebfc57.zip |
Version bump, migrated to generation-2 java eclasses.
Package-Manager: portage-2.1.2.5
Diffstat (limited to 'dev-java/skinlf/skinlf-6.7.ebuild')
-rw-r--r-- | dev-java/skinlf/skinlf-6.7.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-java/skinlf/skinlf-6.7.ebuild b/dev-java/skinlf/skinlf-6.7.ebuild new file mode 100644 index 000000000000..aaba75d889ad --- /dev/null +++ b/dev-java/skinlf/skinlf-6.7.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/skinlf/skinlf-6.7.ebuild,v 1.1 2007/04/28 22:14:23 caster Exp $ + +JAVA_PKG_IUSE="examples source" +WANT_ANT_TASKS="ant-nodeps" +inherit eutils java-pkg-2 java-ant-2 + +MY_P="${P}-20060722" + +DESCRIPTION="Skin Look and Feel - Skinning Engine for the Swing toolkit" +HOMEPAGE="http://${PN}.l2fprod.com/" +SRC_URI="https://${PN}.dev.java.net/files/documents/66/37801/${MY_P}.zip" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +CDEPEND="dev-java/laf-plugin + dev-java/xalan" +RDEPEND=">=virtual/jre-1.4 + ${CDEPEND}" +DEPEND=">=virtual/jdk-1.4 + app-arch/unzip + ${CDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-image-utils-without-jimi.patch" + + cp "${FILESDIR}/${P}-build.xml" build.xml + cp "${FILESDIR}/${P}-common.xml" common.xml + + cd lib + # assert_built_jar_equals is your friend, upstream your enemy + unzip ${PN}.jar '*.gif' '*.template' -d ../src || die + rm -v *.jar + + java-pkg_jar-from xalan,laf-plugin +} + +src_install() { + java-pkg_dojar build/${PN}.jar + # laf-plugin.jar is referenced in manifest's Class-Path + # doesn't work without it due to class loader trickery + # upstream solved this by absorbing laf-plugin in own jar... + java-pkg_dojar lib/laf-plugin.jar + + use examples && java-pkg_doexamples src/examples + use source && java-pkg_dosrc src/com src/*.java + + dodoc CHANGES README LICENSE LICENSE_nanoxml || die +} + + |