diff options
-rw-r--r-- | development/spl/README | 22 | ||||
-rw-r--r-- | development/spl/curses.patch | 12 | ||||
-rw-r--r-- | development/spl/slack-desc | 19 | ||||
-rw-r--r-- | development/spl/spl.SlackBuild | 87 | ||||
-rw-r--r-- | development/spl/spl.info | 10 |
5 files changed, 0 insertions, 150 deletions
diff --git a/development/spl/README b/development/spl/README deleted file mode 100644 index d1071572dd..0000000000 --- a/development/spl/README +++ /dev/null @@ -1,22 +0,0 @@ -SPL is a powerful and feature-rich scripting language with hashes, -regular expressions, objects, exceptions and a c-style syntax. - -The SPL VM is a pure bytecode interpeter. The entire SPL toolchain -(compiler, assembler, virtual machine, etc) only requires about -100k and the additional memory usage by the applications is also -small. One of the more advanced VM features is the capability to -dump the entire VM state to a file and resume later. It is even -possible to resume on another machine with a different architecture. - -SPL has support for loadable modules. The spl package contains -modules for databases (SQLite, Postgres, MySQL), XML (incl. XPATH -and XSLT), Terminal and File IO, Web Application development -(the CGI, WSF and W2T (Web 2.0 Toolkit) modules), SDL, Qt3, OpenGL -and more. - -SPL can optionally be compiled with support for Postgres. - -The SlackBuild script will install Vim syntax highlighting for SPL, -but it still must be activated in the user's .vimrc before it will -activated. See /usr/doc/spl for programming examples and a language -reference. diff --git a/development/spl/curses.patch b/development/spl/curses.patch deleted file mode 100644 index 1c414f8685..0000000000 --- a/development/spl/curses.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nur a/GNUmakefile b/GNUmakefile ---- a/GNUmakefile 2008-09-18 07:34:23.000000000 -0700 -+++ b/GNUmakefile 2012-05-21 20:30:28.369555445 -0700 -@@ -139,7 +139,7 @@ - - ifeq ($(BUILDING_FOR_BSD),0) - LDLIBS_DL = -ldl -- LDLIBS_CURSES = -lncurses -+ LDLIBS_CURSES = -lncursesw - else - LDLIBS_DL = - LDLIBS_CURSES = -lcurses diff --git a/development/spl/slack-desc b/development/spl/slack-desc deleted file mode 100644 index 2c041ff0d3..0000000000 --- a/development/spl/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -spl: spl (the SPL Programming Language) -spl: -spl: SPL is a powerful and feature-rich scripting language with hashes, -spl: regular expressions, objects, exceptions and a c-style syntax. -spl: -spl: Homepage: http://www.clifford.at/spl/ -spl: -spl: -spl: -spl: -spl: diff --git a/development/spl/spl.SlackBuild b/development/spl/spl.SlackBuild deleted file mode 100644 index 8075c413c4..0000000000 --- a/development/spl/spl.SlackBuild +++ /dev/null @@ -1,87 +0,0 @@ -#!/bin/sh - -# Slackware build script for spl -# Written by Benjamin Trigona-Harany <slackbuilds@jaxartes.net> - -PRGNAM=spl -VERSION=${VERSION:-1.0pre6} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \ - -o -perm 400 \) -exec chmod 644 {} \; - -# Allow custom options in Makefile -patch -p1 < $CWD/curses.patch - -make install \ - USER_CFLAGS="$SLKCFLAGS" \ - BUILD_WITH_DEBUG=0 \ - prefix=/usr \ - mandir=/usr/man \ - libdir=/usr/lib${LIBDIRSUFFIX} \ - DESTDIR=$PKG - -find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true -find $PKG -depth -type d -empty -delete || true - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING README README.API README.LANG README.WEBSPL $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# install examples -cp -ra examples webspl_demo webspltut $PKG/usr/doc/$PRGNAM-$VERSION -cp *.spl $PKG/usr/doc/$PRGNAM-$VERSION/examples - -# instal vim syntax highlighting for SPL -mkdir -p $PKG/usr/share/vim/vim73/syntax -cp syntax-spl.vim $PKG/usr/share/vim/vim73/syntax/spl.vim -cp syntax-spltpl.vim $PKG/usr/share/vim/vim73/syntax/spltpl.vim - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/spl/spl.info b/development/spl/spl.info deleted file mode 100644 index fa9ec9dbf8..0000000000 --- a/development/spl/spl.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="spl" -VERSION="1.0pre6" -HOMEPAGE="http://www.clifford.at/spl/" -DOWNLOAD="http://www.clifford.at/spl/releases/spl-1.0pre6.tar.gz" -MD5SUM="d74e576280369cc6c7471e84820cc260" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="orphaned - no maintainer" -EMAIL="nobody@nowhere" |