090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
66 lines
1.9 KiB
Makefile
66 lines
1.9 KiB
Makefile
# New ports collection makefile for: saxon
|
|
# Date created: 30 January 2002
|
|
# Whom: Kimura Fuyuki <fuyuki@mj.0038.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= saxon
|
|
PORTVERSION= 6.5.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc java
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
|
|
MASTER_SITE_SUBDIR= saxon
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/./-/g}
|
|
|
|
MAINTAINER= hq@FreeBSD.org
|
|
COMMENT= An XSLT 1.0 processor for Java
|
|
|
|
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
|
|
|
|
USE_ZIP= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.2+
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
CONFLICTS= saxon-devel-8.*
|
|
|
|
JARFILES= saxon-jdom.jar saxon.jar
|
|
PLIST_FILES+= ${JARFILES:S,^,%%JAVAJARDIR%%/,} bin/saxon
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= api api-guide.html changes.html conditions.html \
|
|
conformance.html dtdgen.html expressions.html \
|
|
extensibility.html extensions.html index.html \
|
|
instant.html limitations.html patterns.html samples.html \
|
|
saxon-style.css using-xsl.html xsl-elements.html
|
|
.endif
|
|
|
|
SUB_LIST= SAXON_JARS="${JARFILES:S,^,${JAVAJARDIR}/,}"
|
|
SUB_FILES= saxon.sh
|
|
|
|
do-install:
|
|
@${ECHO_MSG} -n ">> Installing JARs in ${JAVAJARDIR}..."
|
|
.for JARFILE in ${JARFILES}
|
|
@${ECHO_MSG} -n " ${JARFILE}"
|
|
@${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${JAVAJARDIR}/
|
|
.endfor
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
@${ECHO_MSG} -n ">> Installing samples in ${EXAMPLESDIR}..."
|
|
@cd ${WRKSRC}/samples/ && \
|
|
${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \; && \
|
|
${FIND} . -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \;
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..."
|
|
@cd ${WRKSRC}/doc/ && \
|
|
${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; && \
|
|
${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \;
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
.endif
|
|
@${ECHO_MSG} -n ">> Installing script in ${PREFIX}/bin..."
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/saxon.sh ${PREFIX}/bin/saxon
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
|
|
.include <bsd.port.mk>
|