summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2007-03-30 13:36:13 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2007-03-30 13:36:13 +0000
commit023d57359d22ae938efdbf4df61072a375a9893e (patch)
treeb720c0f1747ea9b7ebf056b8815e0a0b8b38a4cb /app-text
parentMarked stable on amd64 for bug #166862. (diff)
downloadgentoo-2-023d57359d22ae938efdbf4df61072a375a9893e.tar.gz
gentoo-2-023d57359d22ae938efdbf4df61072a375a9893e.tar.bz2
gentoo-2-023d57359d22ae938efdbf4df61072a375a9893e.zip
Remove -r1 so that we can get saxon-bin package masked.
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/jing/ChangeLog6
-rw-r--r--app-text/jing/files/digest-jing-20030619-r13
-rw-r--r--app-text/jing/jing-20030619-r1.ebuild58
3 files changed, 5 insertions, 62 deletions
diff --git a/app-text/jing/ChangeLog b/app-text/jing/ChangeLog
index 3b68e4316f68..2aef8db92c81 100644
--- a/app-text/jing/ChangeLog
+++ b/app-text/jing/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/jing
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/jing/ChangeLog,v 1.20 2007/03/30 13:32:59 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/jing/ChangeLog,v 1.21 2007/03/30 13:36:12 betelgeuse Exp $
+
+ 30 Mar 2007; Petteri Räty <betelgeuse@gentoo.org>
+ -jing-20030619-r1.ebuild:
+ Remove -r1 so that we can get saxon-bin package masked.
30 Mar 2007; Petteri Räty <betelgeuse@gentoo.org>
jing-20030619-r3.ebuild:
diff --git a/app-text/jing/files/digest-jing-20030619-r1 b/app-text/jing/files/digest-jing-20030619-r1
deleted file mode 100644
index 00777af6daec..000000000000
--- a/app-text/jing/files/digest-jing-20030619-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f9b0775d8740f16ab3df82ad3707a093 jing-20030619.zip 2523368
-RMD160 53ae68b42bee829f3e6da910c5a96e9910cfa430 jing-20030619.zip 2523368
-SHA256 b10a7fbbf1f5354de59700a1665f27d68a71b07f6927c2e497dc0ba294a47efd jing-20030619.zip 2523368
diff --git a/app-text/jing/jing-20030619-r1.ebuild b/app-text/jing/jing-20030619-r1.ebuild
deleted file mode 100644
index e62c4d7365d5..000000000000
--- a/app-text/jing/jing-20030619-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/jing/jing-20030619-r1.ebuild,v 1.7 2006/01/22 05:30:44 nichoj Exp $
-
-inherit java-pkg eutils
-
-DESCRIPTION="Jing: A RELAX NG validator in Java"
-HOMEPAGE="http://thaiopensource.com/relaxng/jing.html"
-SRC_URI="http://www.thaiopensource.com/download/jing-${PV}.zip"
-LICENSE="BSD Apache-1.1"
-SLOT="0"
-KEYWORDS="x86 amd64 ~ppc"
-IUSE="jikes doc"
-RDEPEND=">=virtual/jre-1.3
- =dev-java/saxon-bin-8*
- =dev-java/xerces-1.3*
- dev-java/iso-relax"
-DEPEND=">=virtual/jdk-1.3
- ${RDEPEND}
- jikes? ( >=dev-java/jikes-1.21 )
- app-arch/unzip"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- mkdir src/
- unzip -qq -d src/ src.zip || die "failed to unzip"
- cd src/
- epatch ${FILESDIR}/build-patch.diff
- epatch ${FILESDIR}/${P}-xerces.patch
-
- cd ../bin/
- rm -f *.jar
- java-pkg_jar-from iso-relax
- java-pkg_jar-from xerces-1.3 xerces.jar
- java-pkg_jar-from saxon-bin saxon8.jar saxon.jar
-
- cd ..
- cp ${FILESDIR}/build.xml .
- cp ${FILESDIR}/manifest.mf .
-}
-
-src_compile() {
- antflags="jar"
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- ant ${antflags} || die "failed to build"
-}
-
-src_install() {
- java-pkg_dojar bin/jing.jar
- cat >jing <<'EOF'
-#!/bin/sh
-exec `java-config --java` -classpath `java-config -p xerces-1.3,saxon-bin,iso-relax` -jar `java-config -p jing` "$@"
-EOF
- dobin jing
- use doc && java-pkg_dohtml -r doc/* readme.html
-}