diff options
author | 2008-07-30 19:38:48 +0000 | |
---|---|---|
committer | 2008-07-30 19:38:48 +0000 | |
commit | 7e22e72c200bc5d138135556b802b6fe6776016a (patch) | |
tree | 3878c9c3f70d560ec311083dca255ed7a7fcbb3a /dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild | |
parent | Nuke test source files in src_unpack so we don't have to depend on junit and ... (diff) | |
download | gentoo-2-7e22e72c200bc5d138135556b802b6fe6776016a.tar.gz gentoo-2-7e22e72c200bc5d138135556b802b6fe6776016a.tar.bz2 gentoo-2-7e22e72c200bc5d138135556b802b6fe6776016a.zip |
Remove a bunch of unneeded dependencies.
(Portage version: 2.2_rc4/cvs/Linux 2.6.26-gentoo i686)
Diffstat (limited to 'dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild')
-rw-r--r-- | dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild b/dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild new file mode 100644 index 000000000000..593a8d015d15 --- /dev/null +++ b/dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/txw2-runtime/txw2-runtime-20070407-r1.ebuild,v 1.1 2008/07/30 19:38:48 betelgeuse Exp $ + +JAVA_PKG_IUSE="doc source" + +inherit eutils java-pkg-2 java-ant-2 + +DESCRIPTION="TXW is a library that allows you to write XML documents." +HOMEPAGE="https://txw.dev.java.net/" +SRC_URI="https://txw.dev.java.net/files/documents/3310/54821/txw2-${PV}.zip" + +LICENSE="CDDL" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="" + +COMMON_DEP="dev-java/jsr173" + +DEPEND=">=virtual/jdk-1.5 + app-arch/unzip + ${COMMON_DEP}" +RDEPEND=">=virtual/jre-1.5 + ${COMMON_DEP}" + +S="${WORKDIR}/txw2-${PV}" + +src_unpack() { + + unpack ${A} + + cd "${S}" + rm -v *.jar || die + cd "${S}/lib" + rm -v *.jar || die + + java-pkg_jarfrom --build-only ant-core + java-pkg_jarfrom jsr173 + + cd "${S}" + unzip -qq txw2-src.zip -d runtime || die unzip failed + unzip -qq txw2c-src.zip -d compiler || die unzip failed + + cp -i "${FILESDIR}/build.xml-20070407" "${S}/build.xml" || die cp failed + +} + +EANT_BUILD_TARGET="runtime-jar" +EANT_DOC_TARGET="" + +src_install() { + java-pkg_newjar txw2.jar + + use doc && java-pkg_dojavadoc javadoc + use source && java-pkg_dosrc runtime/* +} |