diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:25 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:25 +0200 |
commit | 5de277355d18a1daf74e10250eaddf90815e0197 (patch) | |
tree | 96358c0e6f3e90b980a3254ac28fa6b0ee4a90d9 /development | |
parent | 44385edecda2ccaa20b371ed1da420974da1f87f (diff) | |
download | slackbuilds-5de277355d18a1daf74e10250eaddf90815e0197.tar.gz |
development/subversion-bindings: Removed from 13.0 repository
Diffstat (limited to 'development')
-rw-r--r-- | development/subversion-bindings/README | 8 | ||||
-rw-r--r-- | development/subversion-bindings/slack-desc | 19 | ||||
-rw-r--r-- | development/subversion-bindings/subversion-bindings.SlackBuild | 122 | ||||
-rw-r--r-- | development/subversion-bindings/subversion-bindings.info | 8 |
4 files changed, 0 insertions, 157 deletions
diff --git a/development/subversion-bindings/README b/development/subversion-bindings/README deleted file mode 100644 index 2bfe5d3aaa..0000000000 --- a/development/subversion-bindings/README +++ /dev/null @@ -1,8 +0,0 @@ -This package adds the Subversion bindings for Perl, Python and Ruby. - -These are actually part of the Subversion source distribution, but aren't -availabile in the Slackware package since they require Swig, which is not -part of Slackware. The JavaHL bindings are NOT installed by this script. -You will need this package to use "git svn". - -Swig is required to build this package. diff --git a/development/subversion-bindings/slack-desc b/development/subversion-bindings/slack-desc deleted file mode 100644 index 482371c070..0000000000 --- a/development/subversion-bindings/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------------------------------------------| -subversion-bindings: subversion-bindings (Language bindings for Subversion) -subversion-bindings: -subversion-bindings: Subversion is a version control system which allows you to -subversion-bindings: keep old versions of files and directories and keep a log -subversion-bindings: of who, when, and why changes occurred. -subversion-bindings: -subversion-bindings: This package contains bindings enabling SVN usage from -subversion-bindings: several programming languages. -subversion-bindings: -subversion-bindings: -subversion-bindings: diff --git a/development/subversion-bindings/subversion-bindings.SlackBuild b/development/subversion-bindings/subversion-bindings.SlackBuild deleted file mode 100644 index 58df2ef916..0000000000 --- a/development/subversion-bindings/subversion-bindings.SlackBuild +++ /dev/null @@ -1,122 +0,0 @@ -#!/bin/sh - -# Slackware build script for Subversion-bindings - -# Written by Mauro Giachero (mauro dot giachero at gmail dot com) using: -# - the Slackware build script for Subversion 1.5.4 -# - the Slackware build script for Pilot-link 0.12.3 -# - the SlackBuilds.org template -# as starting points. - -# Copyright 2008 Mauro Giachero -# Copyright 2008 Patrick J. Volkerding, Sebeka, MN, USA -# All rights reserved. -# -# 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. - -SRCNAM=subversion -PRGNAM=subversion-bindings -VERSION=${VERSION:-1.5.4} -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 -cd $SRCNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --mandir=/usr/man \ - --enable-shared \ - --disable-static \ - --with-apr=/usr \ - --with-apr-util=/usr \ - --with-apxs=/usr/sbin/apxs \ - --with-neon=/usr \ - --with-zlib=/usr \ - --with-pic \ - --with-ssl \ - --build=$ARCH-slackware-linux - -# Python bindings -make swig-py -make install-swig-py DESTDIR=$PKG - -# Move Python bindings to system-wide site-packages -PY_VER=$(python -c 'import sys; print "%d.%d" % sys.version_info[:2]') -mkdir -p $PKG/usr/lib/python$PY_VER/site-packages -mv $PKG/usr/lib/svn-python/* $PKG/usr/lib/python$PY_VER/site-packages -rmdir $PKG/usr/lib/svn-python - -# Perl bindings -make swig-pl -make install-swig-pl DESTDIR=$PKG - -# Ruby bindings -make swig-rb -make install-swig-rb DESTDIR=$PKG - -# Get rid of perllocal.pod -rm -f $PKG/usr/lib/perl5/$(perl -v | head -2 | tail -1 | cut -f 2 -d v | cut -f 1 -d ' ')/*/perllocal.pod -# Something doesn't honor --mandir -mv $PKG/usr/share/man $PKG/usr -# Remove empty folders -find $PKG -type d |tac |xargs rmdir --ignore-fail-on-non-empty - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - -gzip -9 $PKG/usr/man/man?/* - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - BUGS CHANGES COMMITTERS COPYING* HACKING INSTALL README TRANSLATING \ - $PKG/usr/doc/$PRGNAM-$VERSION -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 -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/subversion-bindings/subversion-bindings.info b/development/subversion-bindings/subversion-bindings.info deleted file mode 100644 index 59307e32e7..0000000000 --- a/development/subversion-bindings/subversion-bindings.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="subversion-bindings" -VERSION="1.5.4" -HOMEPAGE="http://subversion.tigris.org" -DOWNLOAD="http://slackware.osuosl.org/slackware-12.2/source/d/subversion/subversion-1.5.4.tar.bz2" -MD5SUM="037d1ed7a313631d50defdc3cf727415" -MAINTAINER="Mauro Giachero" -EMAIL="mauro dot giachero at gmail dot com" -APPROVED="rworkman" |