summaryrefslogtreecommitdiff
path: root/textproc/crimson/Makefile
diff options
context:
space:
mode:
authorjwise <jwise>2002-04-13 20:58:53 +0000
committerjwise <jwise>2002-04-13 20:58:53 +0000
commit338af4bdcbd704a50de82bfe9fe005ebb1bfd5eb (patch)
tree158f3d8d63fb3bb3c0f72814ab000e30306a74a4 /textproc/crimson/Makefile
parent71948b39c9626bab683754ca8b1bdbb5587b4c03 (diff)
downloadpkgsrc-338af4bdcbd704a50de82bfe9fe005ebb1bfd5eb.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/Makefile30
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"