diff options
author | glewis <glewis@FreeBSD.org> | 2005-10-18 20:31:22 +0000 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2005-10-18 20:31:22 +0000 |
commit | 71cfd59ddeebcd21aa4113547c4cffb4331a1498 (patch) | |
tree | 5606befcfa9ad9a77cbc18c823d599b069991508 | |
parent | 12165a9f0cf456be17f52cf1b1332b700a2686de (diff) | |
download | FreeBSD-ports-71cfd59ddeebcd21aa4113547c4cffb4331a1498.zip FreeBSD-ports-71cfd59ddeebcd21aa4113547c4cffb4331a1498.tar.gz |
. Add a port of dom4j:
"dom4j is an easy to use, open source library for working with XML, XPath
and XSLT on the Java platform using the Java Collections Framework and
with full support for DOM, SAX and JAXP.
WWW: http://www.dom4j.org/"
Reviewed by: hq
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/dom4j/Makefile | 42 | ||||
-rw-r--r-- | textproc/dom4j/distinfo | 2 | ||||
-rw-r--r-- | textproc/dom4j/pkg-descr | 5 |
4 files changed, 50 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index abf4cae..00bba46 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -96,6 +96,7 @@ SUBDIR += docproj-jadetex SUBDIR += docproj-nojadetex SUBDIR += domc + SUBDIR += dom4j SUBDIR += dsssl-docbook-cygnus SUBDIR += dsssl-docbook-modular SUBDIR += dtd-catalogs diff --git a/textproc/dom4j/Makefile b/textproc/dom4j/Makefile new file mode 100644 index 0000000..2585586 --- /dev/null +++ b/textproc/dom4j/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: dom4j +# Date created: 7 Oct 2005 +# Whom: <glewis@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= dom4j +PORTVERSION= 1.6.1 +CATEGORIES= textproc java +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= dom4j + +MAINTAINER= glewis@FreeBSD.org +COMMENT= Open Source XML framework for Java + +USE_JAVA= yes +JAVA_VERSION= 1.2+ +NO_BUILD= yes + +PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar +.if !defined(NOPORTDOCS) +PORTDOCS= * +.endif + +do-install: + @${ECHO_MSG} -n ">> Installing JAR in ${JAVAJARDIR}..." + @cd ${WRKSRC} && \ + ${INSTALL_DATA} ${PORTNAME}-${PORTVERSION}.jar \ + ${JAVAJARDIR}/${PORTNAME}.jar + @${ECHO_MSG} " [ DONE ]" +.if !defined(NOPORTDOCS) + @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${DOCSDIR} + @cd ${WRKSRC}/docs && ${FIND} . | \ + ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > \ + /dev/null 2>&1 + @${ECHO_MSG} " [ DONE ]" +.endif + +.include <bsd.port.mk> diff --git a/textproc/dom4j/distinfo b/textproc/dom4j/distinfo new file mode 100644 index 0000000..2110937 --- /dev/null +++ b/textproc/dom4j/distinfo @@ -0,0 +1,2 @@ +MD5 (dom4j-1.6.1.tar.gz) = 1e7ef6d20939315714de4a8502f27b2d +SIZE (dom4j-1.6.1.tar.gz) = 9687211 diff --git a/textproc/dom4j/pkg-descr b/textproc/dom4j/pkg-descr new file mode 100644 index 0000000..28f0c69 --- /dev/null +++ b/textproc/dom4j/pkg-descr @@ -0,0 +1,5 @@ +dom4j is an easy to use, open source library for working with XML, XPath +and XSLT on the Java platform using the Java Collections Framework and +with full support for DOM, SAX and JAXP. + +WWW: http://www.dom4j.org/ |