1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/textproc/saxon-devel/Makefile
Greg Lewis a03dd5e89f . Add a saxon-devel port for the development version of Saxon:
"The Saxon 8.0 package is a collection of tools for processing XML documents.
 The main components are:

 - An XSLT 2.0 processor, that can be used from the command line, or invoked
   from a Java application by use of the standard JAXP API. Saxon can be
   integrated with Java applications using the JAXP API, which means it is
   possible for a Java application to switch between different XSLT processors
   without changing the application code. As well as conforming closely with the
   XSLT 2.0 specification, Saxon offers a number of powerful extensions.
 - An XPath 2.0 processor accessible via an API to Java applications.
 - An XQuery 1.0 processor that can be used from the command line, or invoked
   from a Java application by use of an API.
 - An XML Schema 1.0 processor. This can be used on its own to validate a schema
   for correctness, or to validate a source document against the definitions in
   a schema. It is also used to support the schema-aware functionality of the
   XSLT and XQuery processors.

 So you can use Saxon to process XML by writing XSLT stylesheets, by writing
 XQuery queries, by writing Java applications, or by combinations of the
 approaches."

PR:		68637
Submitted by:	Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
2004-07-07 20:36:36 +00:00

67 lines
1.9 KiB
Makefile

# New ports collection makefile for: saxon-devel
# Date created: 03 July 2004
# Whom: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
#
# $FreeBSD$
#
PORTNAME= saxon
PORTVERSION= 8.0
CATEGORIES= textproc java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= saxon
PKGNAMESUFFIX= -devel
DISTNAME= ${PORTNAME}b${PORTVERSION:S/./-/g}
MAINTAINER= ports@FreeBSD.org
COMMENT= An XSLT 2.0 / XPath 2.0 / XQuery 1.0 processor for Java
RUN_DEPENDS= ${LOCALBASE}/bin/javavm:${PORTSDIR}/java/javavmwrapper
USE_ZIP= yes
USE_JAVA= yes
JAVA_VERSION= 1.4+
NO_WRKSUBDIR= yes
NO_BUILD= yes
CONFLICTS= saxon-6.*
JARFILES= saxon8-sql.jar saxon8-jdom.jar saxon8.jar
PLIST_FILES+= ${JARFILES:S,^,%%JAVAJARDIR%%/,} bin/saxon
.if !defined(NOPORTDOCS)
PORTDOCS= background documentation img index.html javadoc saxon.css
.endif
do-configure:
@${SED} 's|%%PREFIX%%|${PREFIX}|g ; s|%%JAVAJARDIR%%|${JAVAJARDIR}|g' \
${FILESDIR}/saxon.sh >${WRKSRC}/saxon
do-install:
@${ECHO_MSG} -n ">> Installing JARs in ${JAVAJARDIR}..."
@${MKDIR} ${JAVAJARDIR}
.for JARFILE in ${JARFILES}
@${ECHO_MSG} -n " ${JARFILE}"
@${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${JAVAJARDIR}/
.endfor
@${ECHO_MSG} " [ DONE ]"
.if !defined(NOPORTDOCS)
@${ECHO_MSG} -n ">> Installing samples in ${EXAMPLESDIR}..."
@${MKDIR} ${EXAMPLESDIR}
@${CP} -R ${WRKSRC}/samples/* ${EXAMPLESDIR}/
@${CHOWN} -h -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
@${ECHO_MSG} " [ DONE ]"
@${ECHO_MSG} -n ">> Installing documentation..."
@${MKDIR} ${DOCSDIR}
.for DOCFILE in ${PORTDOCS}
@${ECHO_MSG} -n " ${DOCFILE}"
@${CP} -R ${WRKSRC}/doc/${DOCFILE} ${DOCSDIR}/
.endfor
@${CHOWN} -h -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
@${ECHO_MSG} " [ DONE ]"
.endif
@${ECHO_MSG} -n ">> Installing script in ${PREFIX}/bin..."
@${INSTALL_SCRIPT} ${WRKSRC}/saxon ${PREFIX}/bin/
@${ECHO_MSG} " [ DONE ]"
.include <bsd.port.mk>