summaryrefslogtreecommitdiff
path: root/textproc/nux
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/nux')
-rw-r--r--textproc/nux/Makefile48
-rw-r--r--textproc/nux/distinfo2
-rw-r--r--textproc/nux/files/fire-xquery.sh.in3
-rw-r--r--textproc/nux/pkg-descr18
4 files changed, 0 insertions, 71 deletions
diff --git a/textproc/nux/Makefile b/textproc/nux/Makefile
deleted file mode 100644
index c82c02b86317..000000000000
--- a/textproc/nux/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-PORTNAME= nux
-PORTVERSION= 1.6
-PORTREVISION= 3
-PORTEPOCH= 1
-CATEGORIES= textproc java
-MASTER_SITES= http://dst.lbl.gov/ACSSoftware/nux/nux-download/releases/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Small open-source XQuery extension of the XOM library
-WWW= https://dst.lbl.gov/ACSSoftware/nux/
-
-RUN_DEPENDS= ${JAVALIBDIR}/xom.jar:textproc/xom \
- ${JAVALIBDIR}/saxon9.jar:textproc/saxon-devel
-
-USES= java
-
-DEPRECATED= Depends on deprecated port textproc/saxon-devel
-EXPIRATION_DATE=2025-04-30
-
-NO_BUILD= yes
-NO_ARCH= yes
-WRKSRC= ${WRKDIR}/${PORTNAME}
-
-PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
-PORTDOCS= api changelog.html cvs.html dependencies.html \
- gettingstarted.html images index.html license.html licenses \
- mailing.html readme.html related.html style.css todo.html
-
-OPTIONS_DEFINE= XQUERY_TOOL DOCS
-OPTIONS_DEFAULT= XQUERY_TOOL
-
-XQUERY_TOOL_DESC= Install the XQuery command-line tool
-XQUERY_TOOL_RUN_DEPENDS=${JAVALIBDIR}/java-getopt.jar:java/java-getopt
-XQUERY_TOOL_PLIST_FILES=bin/fire-xquery
-XQUERY_TOOL_SUB_FILES= fire-xquery.sh
-
-do-install:
- @${MKDIR} ${STAGEDIR}${JAVAJARDIR}
- ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}
-
-do-install-XQUERY_TOOL-on:
- ${INSTALL_SCRIPT} ${WRKDIR}/fire-xquery.sh ${STAGEDIR}${PREFIX}/bin/fire-xquery
-
-do-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}
-
-.include <bsd.port.mk>
diff --git a/textproc/nux/distinfo b/textproc/nux/distinfo
deleted file mode 100644
index cf417651a570..000000000000
--- a/textproc/nux/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (nux-1.6.tar.gz) = 23f5a9ae41faeaef037f0ac2aa7027c1716422d3d0c9558a1c9b269d46e54418
-SIZE (nux-1.6.tar.gz) = 16999259
diff --git a/textproc/nux/files/fire-xquery.sh.in b/textproc/nux/files/fire-xquery.sh.in
deleted file mode 100644
index 2d0bc7b436bc..000000000000
--- a/textproc/nux/files/fire-xquery.sh.in
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec "%%LOCALBASE%%/bin/java" -classpath "`%%LOCALBASE%%/bin/classpath`" nux.xom.tests.XQueryCommand "$@"
diff --git a/textproc/nux/pkg-descr b/textproc/nux/pkg-descr
deleted file mode 100644
index c5a93caa95bf..000000000000
--- a/textproc/nux/pkg-descr
+++ /dev/null
@@ -1,18 +0,0 @@
-Nux is a small, straightforward, and surprisingly effective open-source
-extension of the XOM XML library. Nux is geared towards versatile embedded
-integration and interchange, in particular for high-throughput server container
-environments (e.g. large-scale Peer-to-Peer messaging network infrastructures
-over high-bandwidth networks, scalable MOMs, etc). But its simplicity also
-makes it useful for client side XML query/transformation workflow pipelines.
-Features include:
-
-- Seamless W3C XQuery support for XOM.
-- Efficient and flexible pools and factories for XQueries, XSL Transforms, as
- well as Builders that validate against various schema languages, including
- W3C XML Schemas, DTDs, RELAX NG, Schematron, etc.
-- For simple and complex continuous queries and/or transformations over very
- large or infinitely long XML input, a convenient streaming path filter API
- combines full XQuery support with straightforward filtering.
-- Glue for integration with JAXB and for queries over ill-formed HTML.
-- All this is rock-solid, dependable, well documented, and ships in a jar file
- that weighs just 60 KB.