diff options
Diffstat (limited to 'dev-java/jsx/jsx-1.0.7.4.ebuild')
-rw-r--r-- | dev-java/jsx/jsx-1.0.7.4.ebuild | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-java/jsx/jsx-1.0.7.4.ebuild b/dev-java/jsx/jsx-1.0.7.4.ebuild deleted file mode 100644 index c9f05772d410..000000000000 --- a/dev-java/jsx/jsx-1.0.7.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jsx/jsx-1.0.7.4.ebuild,v 1.5 2005/03/08 15:21:40 luckyduck Exp $ - -inherit java-pkg - -DESCRIPTION="Java Serialization to XML (JSX) allows you to write and read any Java object graph as XML data with one line of code" -HOMEPAGE="http://www.csse.monash.edu.au/~bren/JSX/" -SRC_URI="http://www.csse.monash.edu.au/~bren/JSX/JSX${PV}.jar" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ~ppc ~amd64" -IUSE="" -DEPEND=">=virtual/jdk-1.2 - dev-java/java-config" -RDEPEND=">=virtual/jre-1.2" - -S=${WORKDIR} - -src_unpack() { - jar xf ${DISTDIR}/${A} -} - -src_compile() { - rm -f JSX/*.class JSX/magic/*.class - $(java-config -c) JSX/*.java JSX/magic/*.java || die "compilation failed" -} - -src_install() { - dodoc JSX/readme.txt - jar cf jsx.jar JSX/*.class JSX/magic/*.class || die "failed to create jar" - java-pkg_dojar jsx.jar -} - |