mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
ebaae469b6
The Jaxen project is a Java XPath Engine. jaxen is a universal object model walker, capable of evaluating XPath expressions across multiple models. Currently supported are dom4j and JDOM . Jaxen provides a single point for XPath expression evaluation, regardless of the target object model, whether its dom4j, JDOM, DOM, JavaBeans, or whatnot. WWW: http://jaxen.org PR: 60085 Submitted by: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# Ports collection makefile for: Jaxen
|
|
# Date created: 9 Decemeber 2003
|
|
# Whom: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jaxen
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= java
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-FCS
|
|
|
|
MAINTAINER= herve.quiroz@esil.univ-mrs.fr
|
|
COMMENT= Java XPath Engine
|
|
|
|
USE_JAVA= 1.3+
|
|
NO_BUILD= YES
|
|
|
|
PORT_JARFILES= jaxen-core.jar jaxen-dom.jar jaxen-dom4j.jar jaxen-exml.jar jaxen-full.jar jaxen-jdom.jar
|
|
DEST_JARFILES= ${PORT_JARFILES:S,^,${JAVAJARDIR},}
|
|
JAVA_WRKDOCSDIR= ${WRKSRC}/doc
|
|
PLIST_SUB+= JAVAJARDIR=${JAVAJARDIR:S/^${PREFIX}\///}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= LICENSE default.css download.html faq.html index.html javadoc status.html style
|
|
.endif
|
|
|
|
do-install:
|
|
@${ECHO_CMD} -n ">> Installing JAR files..."
|
|
@${MKDIR} ${JAVAJARDIR}
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORT_JARFILES} ${JAVAJARDIR}
|
|
@${ECHO_CMD} " [DONE]"
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_CMD} -n ">> Installing documentation..."
|
|
@cd ${JAVA_WRKDOCSDIR} && ${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/{} ";"
|
|
@cd ${JAVA_WRKDOCSDIR} && ${FIND} . -type f -exec ${INSTALL_MAN} ${JAVA_WRKDOCSDIR}/{} ${DOCSDIR}/{} ";"
|
|
@${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}/LICENSE
|
|
@${ECHO_CMD} " [DONE]"
|
|
.endif
|
|
|
|
post-install:
|
|
@${ECHO_CMD} "${PORTNAME}-${PORTVERSION} installed as ${DEST_JARFILES}"
|
|
|
|
.include <bsd.port.mk>
|