diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:21 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:21 +0200 |
commit | 8645e9824a26aa15c2e64245f57091872ea9b229 (patch) | |
tree | 736a082a764350f573bcd00d90e9c292ab70e5b8 /development | |
parent | 346f4123d0b192562174fd26c3a3197b636b10ad (diff) | |
download | slackbuilds-8645e9824a26aa15c2e64245f57091872ea9b229.tar.gz |
development/saxonb: Removed from 13.0 repository
Diffstat (limited to 'development')
-rw-r--r-- | development/saxonb/README | 6 | ||||
-rw-r--r-- | development/saxonb/README.SLACKWARE | 53 | ||||
-rw-r--r-- | development/saxonb/csh.profile | 2 | ||||
-rw-r--r-- | development/saxonb/saxonb.SlackBuild | 75 | ||||
-rw-r--r-- | development/saxonb/saxonb.info | 8 | ||||
-rw-r--r-- | development/saxonb/saxonbq | 5 | ||||
-rw-r--r-- | development/saxonb/saxonbt | 5 | ||||
-rw-r--r-- | development/saxonb/sh.profile | 2 | ||||
-rw-r--r-- | development/saxonb/slack-desc | 19 |
9 files changed, 0 insertions, 175 deletions
diff --git a/development/saxonb/README b/development/saxonb/README deleted file mode 100644 index 3f2fa7cfda..0000000000 --- a/development/saxonb/README +++ /dev/null @@ -1,6 +0,0 @@ -Saxonb-B is the open source version of Saxonica's Saxon-SA -schema aware XSLT processor. Visit http://www.saxonica.com/ -for more information and complete documentation. - -See README.SLACKWARE (which is also installed with the package -documentation) for setup and usage information. diff --git a/development/saxonb/README.SLACKWARE b/development/saxonb/README.SLACKWARE deleted file mode 100644 index 5055a8f14b..0000000000 --- a/development/saxonb/README.SLACKWARE +++ /dev/null @@ -1,53 +0,0 @@ -Setting CLASSPATH -================= - -SaxonB is a java application and as such the main jar file -MUST be included in the $CLASSPATH environment variable. - -For most uses you should only add the path to the saxon9.jar file. -However, if you need to use DOM, JDOM or other xml tree -models, you may need to add some or all of the other jar file -paths. The SaxonB jar files are found in /usr/lib/saxonb/, the -online documentation below has additional information on this. - -To add the path from the command line for a single session: -export CLASSPATH=$CLASSPATH:/usr/lib/saxonb/saxon9.jar -This package installs scripts to /etc/profile.d/saxonb.{sh,csh} -which should handle this correctly for you. - - -Using XSLT Transforms -===================== - -Because SaxonB is a java application it must be invoked using -java syntax. See the usage documentation at... - -http://saxonica.com/documentation/using-xsl/intro.html - -The command line syntax is: - -java net.sf.saxon.Transform [options] -s:source -xsl:stylesheet -o:output [params] - -To make this easier, we have included a script /usr/bin/saxonbt which will -perform the java invocation for you using the same syntax for options -and filenames. For example... - -saxonbt [options] -s:source -xsl:stylesheet -o:output [params] - -Using XQuery -===================== - -See the usage documentation at... - -http://saxonica.com/documentation/using-xquery/intro.html - -The command line syntax is: - -java net.sf.saxon.Query [options] -q:queryfile | -qs:querystring [params] - -To make this easier, we have included a script /usr/bin/saxonbq which will -perform the java invocation for you using the same syntax for options -and filenames. For example... - -saxonbq [options] -q:queryfile | -qs:querystring [params] - diff --git a/development/saxonb/csh.profile b/development/saxonb/csh.profile deleted file mode 100644 index 88a041aa66..0000000000 --- a/development/saxonb/csh.profile +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/csh -setenv CLASSPATH ${CLASSPATH}:/usr/lib/saxonb/saxon9.jar diff --git a/development/saxonb/saxonb.SlackBuild b/development/saxonb/saxonb.SlackBuild deleted file mode 100644 index b8a614a23a..0000000000 --- a/development/saxonb/saxonb.SlackBuild +++ /dev/null @@ -1,75 +0,0 @@ -#!/bin/sh - -# Copyright 2009 Robert Allen - slacker@slaphappygeeks.com -# All rights reserved including Creator Endowed Unalienable Rights. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# Modified by Robby Workman <rworkman@slackbuilds.org> - -PRGNAM=saxonb -VERSION=${VERSION:-9.1.0.5j} -ARCH=i486 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Upstream source uses dashes for the VERSION string -SRC_VERSION=$(echo $VERSION |tr '.' '-') - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -mkdir $PRGNAM-$VERSION -unzip -d $PRGNAM-$VERSION $CWD/${PRGNAM}${SRC_VERSION}.zip -cd $PRGNAM-$VERSION -chown -R root:root . - -mkdir -p $PKG/usr/bin -cat $CWD/saxonbt > $PKG/usr/bin/saxonbt -cat $CWD/saxonbq > $PKG/usr/bin/saxonbq -chmod 0755 $PKG/usr/bin/* - -mkdir -p $PKG/usr/lib/$PRGNAM-$VERSION -cp -a *.jar $PKG/usr/lib/$PRGNAM-$VERSION -# Add convenience symlink -( cd $PKG/usr/lib ; ln -s $PRGNAM-$VERSION $PRGNAM ) - -# We'll install profile scripts, and they will *not* be config()'d -mkdir -p $PKG/etc/profile.d -cat $CWD/sh.profile > $PKG/etc/profile.d/saxonb.sh -cat $CWD/csh.profile > $PKG/etc/profile.d/saxonb.csh -chmod 0755 $PKG/etc/profile.d/* - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a doc/* notices/* $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/README.SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README.SLACKWARE -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -c n -l y $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/saxonb/saxonb.info b/development/saxonb/saxonb.info deleted file mode 100644 index f717729dc6..0000000000 --- a/development/saxonb/saxonb.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="saxonb" -VERSION="9.1.0.5j" -HOMEPAGE="http://www.saxonica.com/products.html" -DOWNLOAD="http://downloads.sourceforge.net/saxon/saxonb9-1-0-5j.zip" -MD5SUM="898f4aa68a1c0a8c1bd5f9f723272443" -MAINTAINER="Robert Allen" -EMAIL="slacker@slaphappygeeks.com" -APPROVED="rworkman" diff --git a/development/saxonb/saxonbq b/development/saxonb/saxonbq deleted file mode 100644 index 2a721c8ad5..0000000000 --- a/development/saxonb/saxonbq +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -# Simple invocation of saxon-B java XQuery processor -# The saxon9.jar must be in your CLASSPATH -java net.sf.saxon.Query $* - diff --git a/development/saxonb/saxonbt b/development/saxonb/saxonbt deleted file mode 100644 index c259ff46d9..0000000000 --- a/development/saxonb/saxonbt +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -# Simple invocation of saxon-B java XSLT transform processor -# The saxon9.jar must be in your CLASSPATH -java net.sf.saxon.Transform $* - diff --git a/development/saxonb/sh.profile b/development/saxonb/sh.profile deleted file mode 100644 index 4142a7d4bd..0000000000 --- a/development/saxonb/sh.profile +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -export CLASSPATH="${CLASSPATH}:/usr/lib/saxonb/saxon9.jar" diff --git a/development/saxonb/slack-desc b/development/saxonb/slack-desc deleted file mode 100644 index 6b520ae2b9..0000000000 --- a/development/saxonb/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -saxonb: Saxon-B (Java XSLT Processor) -saxonb: -saxonb: Saxon-B is the free, open source version of the Saxon XSLT, -saxonb: XQuery, and XML Schema processor, Saxon-SA -saxonb: -saxonb: Homepage: http://saxonica.com/products.html -saxonb: Project: http://saxon.sourceforge.net/ -saxonb: Documentation: http://saxonica.com/documentation/index.html -saxonb: -saxonb: Package includes saxonbt and saxonbq invocation scripts. -saxonb: Add /usr/lib/saxonb/saxon9.jar to your java CLASSPATH |