summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Sennhauser <sera@gentoo.org>2014-08-03 07:23:12 +0000
committerRalph Sennhauser <sera@gentoo.org>2014-08-03 07:23:12 +0000
commit499f2ba4515e6af72f03248b5109390f94f36ac0 (patch)
tree01b8ec2de807cd76c5e2514d89246ba53483e7da /app-text
parentCleanup. (diff)
downloadgentoo-2-499f2ba4515e6af72f03248b5109390f94f36ac0.tar.gz
gentoo-2-499f2ba4515e6af72f03248b5109390f94f36ac0.tar.bz2
gentoo-2-499f2ba4515e6af72f03248b5109390f94f36ac0.zip
Remove old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 3C5CF75A)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/jing/ChangeLog7
-rw-r--r--app-text/jing/jing-20030619-r3.ebuild76
2 files changed, 5 insertions, 78 deletions
diff --git a/app-text/jing/ChangeLog b/app-text/jing/ChangeLog
index b76849d80b00..c748f650c672 100644
--- a/app-text/jing/ChangeLog
+++ b/app-text/jing/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/jing
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/jing/ChangeLog,v 1.27 2012/10/17 03:03:05 phajdan.jr Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/jing/ChangeLog,v 1.28 2014/08/03 07:23:12 sera Exp $
+
+ 03 Aug 2014; Ralph Sennhauser <sera@gentoo.org> -jing-20030619-r3.ebuild:
+ Remove old
17 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> jing-20091111-r1.ebuild:
x86 stable wrt bug #433199
diff --git a/app-text/jing/jing-20030619-r3.ebuild b/app-text/jing/jing-20030619-r3.ebuild
deleted file mode 100644
index a5e48145e4a8..000000000000
--- a/app-text/jing/jing-20030619-r3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/jing/jing-20030619-r3.ebuild,v 1.4 2007/03/30 13:32:59 betelgeuse Exp $
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="Jing: A RELAX NG validator in Java"
-HOMEPAGE="http://thaiopensource.com/relaxng/jing.html"
-SRC_URI="http://www.thaiopensource.com/download/${P}.zip"
-LICENSE="BSD Apache-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="doc source"
-COMMON_DEPEND="
- =dev-java/saxon-8*
- >=dev-java/xerces-2.7
- dev-java/iso-relax
- dev-java/xalan
- dev-java/relaxng-datatype
- dev-java/ant-core"
-RDEPEND=">=virtual/jre-1.4
- ${COMMON_DEPEND}"
-DEPEND=">=virtual/jdk-1.4
- app-arch/unzip
- source? ( app-arch/zip )
- ${COMMON_DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- cp ${FILESDIR}/build-r1.xml build.xml || die
-
- mkdir src/
- cd src/
- unpack ./../src.zip
- # Has java.util.regex, xerces2 and xerces1 implementation
- # We only need the first one
- rm -vr com/thaiopensource/datatype/xsd/regex/{xerces,xerces2} || die
- epatch "${FILESDIR}/build-patch.diff"
- epatch "${FILESDIR}/${P}-xerces.patch"
-
- #remove bundled relaxng-datatype
- rm -r org || die
-
- cd ../bin/
- rm -v *.jar || die
- java-pkg_jar-from iso-relax
- java-pkg_jar-from xerces-2
- java-pkg_jar-from xalan
- java-pkg_jar-from saxon saxon8.jar saxon.jar
- java-pkg_jar-from relaxng-datatype
- java-pkg_jar-from ant-core
-}
-
-src_compile() {
- eant jar #premade javadocs
-}
-
-src_test() {
- local cp
- for jar in bin/*.jar; do
- cp="${cp}:${jar}"
- done
- # would need some test files could probably take this from the gcj version
- #java -cp ${cp} com.thaiopensource.datatype.xsd.regex.test.TestDriver || die
- #java -cp ${cp} com.thaiopensource.datatype.relaxng.util.TestDriver || die
- #java -cp ${cp} com.thaiopensource.datatype.xsd.regex.test.CategoryTest \
- # || die
-}
-
-src_install() {
- java-pkg_dojar bin/jing.jar
- java-pkg_dolauncher ${PN} --main com.thaiopensource.relaxng.util.Driver
- use doc && java-pkg_dohtml -r doc/* readme.html
- use source && java-pkg_dosrc src/com
-}