diff options
author | jwise <jwise@pkgsrc.org> | 2000-10-19 23:11:34 +0000 |
---|---|---|
committer | jwise <jwise@pkgsrc.org> | 2000-10-19 23:11:34 +0000 |
commit | 02ad473a4a64deb0441174d6a7ddc3ed001df2ef (patch) | |
tree | 04325547470f70ed7b48e922c703507363f961fd /textproc/xalan-j/Makefile | |
parent | caf32d2950a1c18ce72600b2be87a219704b2e75 (diff) | |
download | pkgsrc-02ad473a4a64deb0441174d6a7ddc3ed001df2ef.tar.gz |
Update xalan-j to version 1.2.
Changes from xalan-j-1.0.1 (the last pkgsrc version):
Xalan-Java now suports UTF-16 output encoding.
We incorporated an updated BSF (support for extension elements and functions) that supports Mozilla
Rhino js.jar 1.5. The new bsf.jar replaces the older bsf.jar and bsfengines.jar. If you are using Javascript
extensions, you must now use js.jar 1.5. Mozilla Rhino 1.4 R3 is no longer supported.
We have added a custom processing instruction that you can use to instruct the Xalan-Java processor not to
cache an XML document.
Also, many bug fixes.
Diffstat (limited to 'textproc/xalan-j/Makefile')
-rw-r--r-- | textproc/xalan-j/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/textproc/xalan-j/Makefile b/textproc/xalan-j/Makefile index f627a9f1fbd..03947033b47 100644 --- a/textproc/xalan-j/Makefile +++ b/textproc/xalan-j/Makefile @@ -1,30 +1,29 @@ -# $NetBSD: Makefile,v 1.3 2000/06/22 14:28:52 jwise Exp $ +# $NetBSD: Makefile,v 1.4 2000/10/19 23:11:34 jwise Exp $ # # Note: we currently use the pre-built (-bin) distribution of Xalan-J, # because although Xalan runs fine under JDK 1.1, JDK 1.2 or greater is # required to build it. -DISTNAME= xalan-j_1_0_1 -PKGNAME= xalan-j-1.0.1 +DISTNAME= xalan-j_1_2 +PKGNAME= xalan-j-1.2 CATEGORIES= textproc www MASTER_SITES= http://xml.apache.org/dist/xalan-j/ MAINTAINER= jwise@netbsd.org HOMEPAGE= http://xml.apache.org/xalan-j/ -DEPENDS+= xerces-j-*:../../textproc/xerces-j +DEPENDS+= xerces-j>=1.2.0:../../textproc/xerces-j USE_JAVA= yes NO_PATCH= NO_CONFIGURE= NO_BUILD= -WRKSRC= ${WRKDIR}/xalan_1_0_1 +NO_WRKSUBDIR= do-install: ${INSTALL_DATA} ${WRKSRC}/xalan.jar ${PREFIX}/lib/java ${INSTALL_DATA} ${WRKSRC}/bsf.jar ${PREFIX}/lib/java - ${INSTALL_DATA} ${WRKSRC}/bsfengines.jar ${PREFIX}/lib/java ${MKDIR} ${PREFIX}/share/doc/java/xalan cd ${WRKSRC}/docs ; ${GTAR} pcf - . | ( cd ${PREFIX}/share/doc/java/xalan ; ${GTAR} pvxf - ) ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/java/xalan |