summaryrefslogtreecommitdiff
path: root/textproc/saxon-he
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/saxon-he')
-rw-r--r--textproc/saxon-he/Makefile74
-rw-r--r--textproc/saxon-he/distinfo2
-rw-r--r--textproc/saxon-he/files/saxon.sh.in20
-rw-r--r--textproc/saxon-he/pkg-descr22
4 files changed, 0 insertions, 118 deletions
diff --git a/textproc/saxon-he/Makefile b/textproc/saxon-he/Makefile
deleted file mode 100644
index 4ba6e738ef0a..000000000000
--- a/textproc/saxon-he/Makefile
+++ /dev/null
@@ -1,74 +0,0 @@
-# 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.1.1
-PORTEPOCH= 1
-CATEGORIES= textproc java
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= saxon
-PKGNAMESUFFIX= -devel
-DISTNAME= ${PORTNAME}b${PORTVERSION:S,.,-,g}
-
-MAINTAINER= hq@FreeBSD.org
-COMMENT= An XSLT 2.0 / XPath 2.0 / XQuery 1.0 processor for Java
-
-RUN_DEPENDS= java:${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 bin/saxon-xquery
-.if !defined(NOPORTDOCS)
-PORTDOCS= background documentation img javadoc
-.endif
-
-SUB_FILES= saxon.sh
-SUB_LIST= SAXON_JARS="${JARFILES:S,^,${JAVAJARDIR}/,}"
-
-do-install:
- @${ECHO_MSG} -n ">> Installing JARs in ${JAVAJARDIR}/..."
- @${MKDIR} ${JAVAJARDIR}
-.for file in ${JARFILES}
- @${ECHO_MSG} -n " ${file}"
- @${INSTALL_DATA} ${WRKSRC}/${file} ${JAVAJARDIR}/
-.endfor
- @${ECHO_MSG} " [ DONE ]"
-.if !defined(NOPORTDOCS)
- @${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 ]"
- @${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 scripts in ${PREFIX}/bin..."
-.for scriptfile in saxon saxon-xquery
- @${ECHO_MSG} -n " ${scriptfile}"
- @${INSTALL_SCRIPT} ${WRKSRC}/saxon.sh ${PREFIX}/bin/${scriptfile}
-.endfor
- @${ECHO_MSG} " [ DONE ]"
-
-.if !defined(NOPORTDOCS)
-post-install:
- @${FIND} -s ${WRKSRC}/samples -not -type d | \
- ${SED} -ne 's,^${WRKSRC}/samples,${EXAMPLESDIR:S,${PREFIX}/,,},p' >> ${TMPPLIST}
- @${FIND} -s -d ${WRKSRC}/samples -type d | \
- ${SED} -ne 's,^${WRKSRC}/samples,@dirrm ${EXAMPLESDIR:S,${PREFIX}/,,},p' >> ${TMPPLIST}
-.endif
-
-.include <bsd.port.mk>
diff --git a/textproc/saxon-he/distinfo b/textproc/saxon-he/distinfo
deleted file mode 100644
index 68852ab74fb6..000000000000
--- a/textproc/saxon-he/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (saxonb8-1-1.zip) = c4463c7a437533188c06bb558aa4f1a5
-SIZE (saxonb8-1-1.zip) = 6155706
diff --git a/textproc/saxon-he/files/saxon.sh.in b/textproc/saxon-he/files/saxon.sh.in
deleted file mode 100644
index 5732faa6a5b2..000000000000
--- a/textproc/saxon-he/files/saxon.sh.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-
-IAM="`basename "$0"`"
-
-if [ "${IAM}" = "saxon-xquery" ]
-then
- LAUNCHER_CLASS="net.sf.saxon.Query"
-else
- LAUNCHER_CLASS="net.sf.saxon.Transform"
-fi
-
-SAXON_CLASSPATH=""
-for jarfile in %%SAXON_JARS%%
-do
- SAXON_CLASSPATH="${SAXON_CLASSPATH}:${jarfile}"
-done
-
-JAVA_VERSION="1.4+" "%%LOCALBASE%%/bin/java" -classpath "${SAXON_CLASSPATH}" "${LAUNCHER_CLASS}" "$@"
diff --git a/textproc/saxon-he/pkg-descr b/textproc/saxon-he/pkg-descr
deleted file mode 100644
index f1c67d88e2eb..000000000000
--- a/textproc/saxon-he/pkg-descr
+++ /dev/null
@@ -1,22 +0,0 @@
-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.
-
-WWW: http://www.saxonica.com/