diff options
author | jwise <jwise@pkgsrc.org> | 2002-04-13 20:58:53 +0000 |
---|---|---|
committer | jwise <jwise@pkgsrc.org> | 2002-04-13 20:58:53 +0000 |
commit | ecfcc5fad503dfb9891d9d086579e8955d91855d (patch) | |
tree | 158f3d8d63fb3bb3c0f72814ab000e30306a74a4 /textproc/crimson/Makefile | |
parent | 3057923e208b7942fe415ce973d1d660a572c80a (diff) | |
download | pkgsrc-ecfcc5fad503dfb9891d9d086579e8955d91855d.tar.gz |
Initial import of packages for crimson-1.1.3, the apache.org implementation
of JAXP (it also includes implementations of SAX and DOM).
We install from the binary (bytecode) distribution of crimson, as crimson
is required to run jakarta-ant, and jakarta-ant is used to build crimson
from sources.
Diffstat (limited to 'textproc/crimson/Makefile')
-rw-r--r-- | textproc/crimson/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/textproc/crimson/Makefile b/textproc/crimson/Makefile new file mode 100644 index 00000000000..e915a3a125d --- /dev/null +++ b/textproc/crimson/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/04/13 20:58:53 jwise Exp $ +# +# We use the binary distribution of crimson because otherwise we +# have a bootstrap-loop between jakarta-ant and crimson, each of which +# uses the other. + +DISTNAME= ${PKGNAME}-bin +PKGNAME= crimson-1.1.3 +CATEGORIES= textproc www +MASTER_SITES= http://xml.apache.org/dist/crimson/ + +MAINTAINER= jwise@netbsd.org +HOMEPAGE= http://xml.apache.org/crimson/ +COMMENT= Apache.org implementation of JAXP, SAX, and DOM + +WRKSRC= ${WRKDIR}/${PKGNAME} +USE_JAVA= +NO_PATCH= +NO_CONFIGURE= +NO_BUILD= + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/lib/java + ${INSTALL_DATA} ${WRKSRC}/crimson.jar ${PREFIX}/lib/java + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/java/crimson + cd ${WRKSRC}/docs && ${PAX} -rwpp * ${PREFIX}/share/doc/java/crimson + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/java/crimson + cd ${WRKSRC}/examples && ${PAX} -rwpp * ${PREFIX}/share/examples/java/crimson + +.include "../../mk/bsd.pkg.mk" |