summaryrefslogtreecommitdiff
blob: a24e79ee5e08e4ac9cc21ad042c694739790763f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/jing/jing-20030619.ebuild,v 1.1 2004/05/13 18:15:17 mkennedy Exp $

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"
IUSE=""
RDEPEND=">=virtual/jdk-1.3
	dev-java/saxon
	dev-java/xerces"
DEPEND=""

S=${WORKDIR}/${P}

src_install() {
	dojar bin/jing.jar
	cat >jing <<'EOF'
#!/bin/sh
exec `java-config --java` -classpath `java-config -p xerces,saxon` -jar `java-config -p jing` "$@"
EOF
	dobin jing
	dohtml -r doc/* readme.html
}