pkgsrc/textproc/xerces-j/Makefile

32 lines
1.1 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.24 2005/10/23 23:36:01 rillig Exp $
#
# Note: we currently use the pre-built (-bin) distribution of Xerces-J,
# because although Xerces runs fine under JDK 1.1, JDK 1.2 or greater is
# required to build it.
Update xerces-j to version 1.2. Changes since xerces-j-1.0.4 (some of these were in xerces-j-1.1.0, formerly available as xerces-j-current): Added "any" with "processContents='lax|skip'" support for Schema. [ericye] Added feature "load-dtd-grammar" [ericye] Added "anyAttribute" support for Schema. [ericye] Added "xsi:type" support for Schema. [ericye] Added full equivClass support for Schema. [ericye] Expanded "any" element support to model groups. [ericye] Added testcase under test to test DOM Java Serialization. [jeffreyr] Miscelanous DOM enhancements [lehors]. Added "any" element content support for Schema [andyc] Turned on namespace support in all parsers, by default [andyc] Added feature to allow Schema support to be turned off [andyc] Modified samples to include additional switches [jeffreyr] Added regular expression character class subtraction [tkent@jp.ibm.com] Added URI class [paul.eng@iclick.com] Added Schema include/import [ericye] Performance tuning [ericye, andyc] Added Ant support to build process [abagchi] Re-architecture Schema datatypes [jeffreyr] Re-organized docs directory to get FOP to work[abagchi, jeffreyr] Added JAXP to build, updated JAXP files [lehors] Added a DOM from scratch and Serializer sample [jeffreyr] Updated XML Schema support to April working draft [ericye, jeffreyr] Changed code to notify error handler of content model validation errors before calling endElement [lehors] In a few minutes, I will import cocoon-1.8, which supports the latest Xerces version, rendering the xerces-j-current package obsolete.
2000-10-20 01:01:29 +02:00
DISTNAME= Xerces-J-bin.1.2.0
PKGNAME= xerces-j-1.2.0
CATEGORIES= textproc www
MASTER_SITES= http://xml.apache.org/dist/xerces-j/
2003-07-18 00:50:55 +02:00
MAINTAINER= jwise@NetBSD.org
HOMEPAGE= http://xml.apache.org/xerces-j/
COMMENT= The Apache Project's validating XML parser with DOM and SAX support
WRKSRC= ${WRKDIR}/xerces-1_2_0
USE_JAVA= run
NO_CONFIGURE= yes
NO_BUILD= yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/java
2000-05-30 22:38:07 +02:00
${INSTALL_DATA} ${WRKSRC}/xerces.jar ${PREFIX}/lib/java
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/java/xerces
cd ${WRKSRC}/docs && ${PAX} -rw -pp . ${PREFIX}/share/doc/java/xerces
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/java/xerces
2000-05-30 22:38:07 +02:00
${INSTALL_DATA} ${WRKSRC}/xercesSamples.jar ${PREFIX}/share/examples/java/xerces
cd ${WRKSRC}/data && ${PAX} -rw -pp . ${PREFIX}/share/examples/java/xerces
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"