diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-16 01:18:10 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-20 12:32:34 -0500 |
commit | 93ba4df5022a8c4d422dd97a2a13ffa8a8946453 (patch) | |
tree | ea69c40d48150458e051a851cdf77e722c9118e2 /development | |
parent | 6a511b1c665a1f7efecadaa3447af889b1dcba58 (diff) | |
download | slackbuilds-93ba4df5022a8c4d422dd97a2a13ffa8a8946453.tar.gz |
perl/*: Moved all of the Perl modules to here
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development')
44 files changed, 0 insertions, 1590 deletions
diff --git a/development/perl-Bit-Vector/README b/development/perl-Bit-Vector/README deleted file mode 100644 index 3677b126eb..0000000000 --- a/development/perl-Bit-Vector/README +++ /dev/null @@ -1,3 +0,0 @@ -Bit::Vector - Efficient bit vector, set of integers and "big int" math library - -This package requires perl-Carp-Clan from SlackBuilds.org. diff --git a/development/perl-Bit-Vector/perl-Bit-Vector.SlackBuild b/development/perl-Bit-Vector/perl-Bit-Vector.SlackBuild deleted file mode 100644 index 08fb448467..0000000000 --- a/development/perl-Bit-Vector/perl-Bit-Vector.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Bit-Vector - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Bit-Vector -VERSION=${VERSION:-7.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Bit-Vector -DOCS="Artistic.txt CREDITS.txt GNU_GPL.txt GNU_LGPL.txt README.txt" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Bit-Vector/perl-Bit-Vector.info b/development/perl-Bit-Vector/perl-Bit-Vector.info deleted file mode 100644 index e5462aa827..0000000000 --- a/development/perl-Bit-Vector/perl-Bit-Vector.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Bit-Vector" -VERSION="7.1" -HOMEPAGE="http://search.cpan.org/dist/Bit-Vector/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/Bit-Vector-7.1.tar.gz" -MD5SUM="164c8574b728f6171b2a6f564fcd2e50" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Bit-Vector/slack-desc b/development/perl-Bit-Vector/slack-desc deleted file mode 100644 index c3edaf7b28..0000000000 --- a/development/perl-Bit-Vector/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-------------------------------------------------------| -perl-Bit-Vector: perl-Bit-Vector (perl math library) -perl-Bit-Vector: -perl-Bit-Vector: Bit::Vector is an efficient bit vector, set of integers and "big int" -perl-Bit-Vector: math library -perl-Bit-Vector: -perl-Bit-Vector: -perl-Bit-Vector: -perl-Bit-Vector: -perl-Bit-Vector: -perl-Bit-Vector: -perl-Bit-Vector: diff --git a/development/perl-Carp-Clan/README b/development/perl-Carp-Clan/README deleted file mode 100644 index f65f5efb04..0000000000 --- a/development/perl-Carp-Clan/README +++ /dev/null @@ -1,20 +0,0 @@ -Carp::Clan - Report errors from perspective of caller of a "clan" of modules. - -This module is based on "Carp.pm" from Perl 5.005_03. It has been modified to -skip all package names matching the pattern given in the "use" statement -inside the "qw()" term (or argument list). -Suppose you have a family of modules or classes named "Pack::A", "Pack::B" and -so on, and each of them uses "Carp::Clan qw(^Pack::);" (or at least the one in -which the error or warning gets raised). -Thus when for example your script "tool.pl" calls module "Pack::A", and module -"Pack::A" calls module "Pack::B", an exception raised in module "Pack::B" will -appear to have originated in "tool.pl" where "Pack::A" was called, and not in -"Pack::A" where "Pack::B" was called, as the unmodified "Carp.pm" would try to -make you believe :-). -This works similarly if "Pack::B" calls "Pack::C" where the exception is -raised, etcetera. -In other words, this blames all errors in the "Pack::*" modules on the user of -these modules, i.e., on you. ;-) - -For more informations, see: -http://search.cpan.org/dist/Carp-Clan/lib/Carp/Clan.pod diff --git a/development/perl-Carp-Clan/perl-Carp-Clan.SlackBuild b/development/perl-Carp-Clan/perl-Carp-Clan.SlackBuild deleted file mode 100644 index 7c76d23a5a..0000000000 --- a/development/perl-Carp-Clan/perl-Carp-Clan.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Carp-Clan - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Carp-Clan -VERSION=${VERSION:-6.04} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Carp-Clan -DOCS="README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Carp-Clan/perl-Carp-Clan.info b/development/perl-Carp-Clan/perl-Carp-Clan.info deleted file mode 100644 index 06f60268c2..0000000000 --- a/development/perl-Carp-Clan/perl-Carp-Clan.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Carp-Clan" -VERSION="6.04" -HOMEPAGE="http://search.cpan.org/dist/Carp-Clan/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/Carp-Clan-6.04.tar.gz" -MD5SUM="b6316bc51bb530d994f2784615939fb2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Carp-Clan/slack-desc b/development/perl-Carp-Clan/slack-desc deleted file mode 100644 index a04567e534..0000000000 --- a/development/perl-Carp-Clan/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-------------------------------------------------------| -perl-Carp-Clan: perl-Carp-Clan (error reporting module) -perl-Carp-Clan: -perl-Carp-Clan: Carp::Clan report errors from perspective of caller of a "clan" of -perl-Carp-Clan: modules. -perl-Carp-Clan: -perl-Carp-Clan: -perl-Carp-Clan: -perl-Carp-Clan: -perl-Carp-Clan: -perl-Carp-Clan: -perl-Carp-Clan: diff --git a/development/perl-Class-Gomor/README b/development/perl-Class-Gomor/README deleted file mode 100644 index ac25c4af7b..0000000000 --- a/development/perl-Class-Gomor/README +++ /dev/null @@ -1,14 +0,0 @@ -Class::Gomor - another class and object builder - -This module is yet another class builder. This one adds parameter checking in -new constructor, that is to check for attributes existence, and definedness. -In order to validate parameters, the module needs to find attributes, and that -is the reason for declaring attributes in global variables named @AS, @AA, -@AO. They respectively state for Attributes Scalar, Attributes Array and -Attributes Other. The last one is used to avoid autocreation of accessors, -that is to let you declare your own ones. -Attribute validation is performed by looking at classes hierarchy, by -following @ISA tree inheritance. -The loss in speed by validating all attributes is quite negligeable on a -decent machine (Pentium IV, 2.4 GHz) with Perl 5.8.x. But if you want to avoid -checking, you can do it. diff --git a/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild b/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild deleted file mode 100644 index ba2d8a50cf..0000000000 --- a/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Class-Gomor - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Class-Gomor -VERSION=${VERSION:-1.02} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Class-Gomor -DOCS="LICENSE LICENSE.Artistic README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Class-Gomor/perl-Class-Gomor.info b/development/perl-Class-Gomor/perl-Class-Gomor.info deleted file mode 100644 index d65d490390..0000000000 --- a/development/perl-Class-Gomor/perl-Class-Gomor.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Class-Gomor" -VERSION="1.02" -HOMEPAGE="http://search.cpan.org/dist/Class-Gomor/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/G/GO/GOMOR/Class-Gomor-1.02.tar.gz" -MD5SUM="287c3b3be72fcb4a4089fe232b8b1002" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Class-Gomor/slack-desc b/development/perl-Class-Gomor/slack-desc deleted file mode 100644 index d11e8b7eda..0000000000 --- a/development/perl-Class-Gomor/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-------------------------------------------------------| -perl-Class-Gomor: perl-Class-Gomor (another class and object builder) -perl-Class-Gomor: -perl-Class-Gomor: Class::Gomor is yet another class builder. This one adds parameter -perl-Class-Gomor: checking in new constructor, that is to check for attributes existence, -perl-Class-Gomor: and definedness. -perl-Class-Gomor: -perl-Class-Gomor: -perl-Class-Gomor: -perl-Class-Gomor: -perl-Class-Gomor: -perl-Class-Gomor: diff --git a/development/perl-Math-Base85/README b/development/perl-Math-Base85/README deleted file mode 100644 index 06e906f766..0000000000 --- a/development/perl-Math-Base85/README +++ /dev/null @@ -1,5 +0,0 @@ -Math::Base85 - Perl extension for base 85 numbers, as referenced by RFC 1924 - -RFC 1924 describes a compact, fixed-size representation of IPv6 addresses -which uses a base 85 number system. This module handles some of the uglier -details of it. diff --git a/development/perl-Math-Base85/perl-Math-Base85.SlackBuild b/development/perl-Math-Base85/perl-Math-Base85.SlackBuild deleted file mode 100644 index 27d57d0d8b..0000000000 --- a/development/perl-Math-Base85/perl-Math-Base85.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Math-Base85 - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Math-Base85 -VERSION=${VERSION:-0.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Math-Base85 -DOCS="README rfc1924.txt" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Math-Base85/perl-Math-Base85.info b/development/perl-Math-Base85/perl-Math-Base85.info deleted file mode 100644 index 19e787ece9..0000000000 --- a/development/perl-Math-Base85/perl-Math-Base85.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Math-Base85" -VERSION="0.2" -HOMEPAGE="http://search.cpan.org/dist/Math-Base85/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/T/TM/TMONROE/Math-Base85-0.2.tar.gz" -MD5SUM="3a2914651dc680fd22661f35213211d3" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Math-Base85/slack-desc b/development/perl-Math-Base85/slack-desc deleted file mode 100644 index 84c3ac3ce8..0000000000 --- a/development/perl-Math-Base85/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-------------------------------------------------------| -perl-Math-Base85: perl-Math-Base85 (extension for base 85 numbers) -perl-Math-Base85: -perl-Math-Base85: RFC 1924 describes a compact, fixed-size representation of IPv6 -perl-Math-Base85: addresses which uses a base 85 number system. This module handles some -perl-Math-Base85: of the uglier details of it. -perl-Math-Base85: -perl-Math-Base85: -perl-Math-Base85: -perl-Math-Base85: -perl-Math-Base85: -perl-Math-Base85: diff --git a/development/perl-Net-IPv4Addr/README b/development/perl-Net-IPv4Addr/README deleted file mode 100644 index 988282d0db..0000000000 --- a/development/perl-Net-IPv4Addr/README +++ /dev/null @@ -1,6 +0,0 @@ -Net::IPv4Addr - Perl extension for manipulating IPv4 addresses. - -Net::IPv4Addr provides functions for parsing IPv4 addresses both in -traditional address/netmask format and in the new CIDR format. There are also -methods for calculating the network and broadcast address and also to see -check if a given address is in a specific network. diff --git a/development/perl-Net-IPv4Addr/perl-Net-IPv4Addr.SlackBuild b/development/perl-Net-IPv4Addr/perl-Net-IPv4Addr.SlackBuild deleted file mode 100644 index 9fa962b9b3..0000000000 --- a/development/perl-Net-IPv4Addr/perl-Net-IPv4Addr.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Net-IPv4Addr - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Net-IPv4Addr -VERSION=${VERSION:-0.10} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Net-IPv4Addr -DOCS="ChangeLog NEWS README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Net-IPv4Addr/perl-Net-IPv4Addr.info b/development/perl-Net-IPv4Addr/perl-Net-IPv4Addr.info deleted file mode 100644 index fb17cd10bf..0000000000 --- a/development/perl-Net-IPv4Addr/perl-Net-IPv4Addr.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Net-IPv4Addr" -VERSION="0.10" -HOMEPAGE="http://search.cpan.org/dist/Net-IPv4Addr/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/F/FR/FRAJULAC/Net-IPv4Addr-0.10.tar.gz" -MD5SUM="57aa8e28ebcd4c0c9f15792740e53d3c" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Net-IPv4Addr/slack-desc b/development/perl-Net-IPv4Addr/slack-desc deleted file mode 100644 index 3ad731e82e..0000000000 --- a/development/perl-Net-IPv4Addr/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-------------------------------------------------------| -perl-Net-IPv4Addr: perl-Net-IPv4Addr (perl extension for manipulating IPv4 addresses) -perl-Net-IPv4Addr: -perl-Net-IPv4Addr: Net::IPv4Addr provides functions for parsing IPv4 addresses both in -perl-Net-IPv4Addr: traditional address/netmask format and in the new CIDR format. There -perl-Net-IPv4Addr: are also methods for calculating the network and broadcast address and -perl-Net-IPv4Addr: also to see check if a given address is in a specific network. -perl-Net-IPv4Addr: -perl-Net-IPv4Addr: -perl-Net-IPv4Addr: -perl-Net-IPv4Addr: -perl-Net-IPv4Addr: diff --git a/development/perl-Net-IPv6Addr/README b/development/perl-Net-IPv6Addr/README deleted file mode 100644 index 91859b2b28..0000000000 --- a/development/perl-Net-IPv6Addr/README +++ /dev/null @@ -1,5 +0,0 @@ -Net::IPv6Addr -- check validity of IPv6 addresses - -Net::IPv6Addr checks strings for valid IPv6 addresses, as specified in -RFC1884. You throw possible addresses at it, it either accepts them or throws -an exception. diff --git a/development/perl-Net-IPv6Addr/perl-Net-IPv6Addr.SlackBuild b/development/perl-Net-IPv6Addr/perl-Net-IPv6Addr.SlackBuild deleted file mode 100644 index f2a08a33a2..0000000000 --- a/development/perl-Net-IPv6Addr/perl-Net-IPv6Addr.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Net-IPv6Addr - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Net-IPv6Addr -VERSION=${VERSION:-0.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Net-IPv6Addr -DOCS="ChangeLog README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Net-IPv6Addr/perl-Net-IPv6Addr.info b/development/perl-Net-IPv6Addr/perl-Net-IPv6Addr.info deleted file mode 100644 index 70fb6bfdb0..0000000000 --- a/development/perl-Net-IPv6Addr/perl-Net-IPv6Addr.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Net-IPv6Addr" -VERSION="0.2" -HOMEPAGE="http://search.cpan.org/dist/Net-IPv6Addr/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/T/TM/TMONROE/Net-IPv6Addr-0.2.tar.gz" -MD5SUM="cd06f0422ddb3ac119e2ef1e27aa9339" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Net-IPv6Addr/slack-desc b/development/perl-Net-IPv6Addr/slack-desc deleted file mode 100644 index 4ddb40ad9b..0000000000 --- a/development/perl-Net-IPv6Addr/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-------------------------------------------------------| -perl-Net-IPv6Addr: perl-Net-IPv6Addr (check validity of IPv6 addresses) -perl-Net-IPv6Addr: -perl-Net-IPv6Addr: Net::IPv6Addr checks strings for valid IPv6 addresses, as specified in -perl-Net-IPv6Addr: RFC1884. You throw possible addresses at it, it either accepts them or -perl-Net-IPv6Addr: throws an exception. -perl-Net-IPv6Addr: -perl-Net-IPv6Addr: -perl-Net-IPv6Addr: -perl-Net-IPv6Addr: -perl-Net-IPv6Addr: -perl-Net-IPv6Addr: diff --git a/development/perl-Net-Libdnet/README b/development/perl-Net-Libdnet/README deleted file mode 100644 index 5cf63913cb..0000000000 --- a/development/perl-Net-Libdnet/README +++ /dev/null @@ -1,10 +0,0 @@ -Net::Libdnet - binding for Dug Song's libdnet - -Net::Libdnet provides a simplified, portable interface to several low-level -networking routines, including network address manipulation, kernel arp cache -and route table lookup and manipulation, network firewalling, network -interface lookup and manipulation, network traffic interception via tunnel -interfaces, and raw IP packet and Ethernet frame transmission. It is intended -to complement the functionality provided by libpcap. - -This package requires perl-Class-Gomor and libdnet, from SlackBuilds.org diff --git a/development/perl-Net-Libdnet/perl-Net-Libdnet.SlackBuild b/development/perl-Net-Libdnet/perl-Net-Libdnet.SlackBuild deleted file mode 100644 index 6a686cc666..0000000000 --- a/development/perl-Net-Libdnet/perl-Net-Libdnet.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Net-Libdnet - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Net-Libdnet -VERSION=${VERSION:-0.92} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Net-Libdnet -DOCS="LICENSE README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Net-Libdnet/perl-Net-Libdnet.info b/development/perl-Net-Libdnet/perl-Net-Libdnet.info deleted file mode 100644 index b848a907f2..0000000000 --- a/development/perl-Net-Libdnet/perl-Net-Libdnet.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Net-Libdnet" -VERSION="0.92" -HOMEPAGE="http://search.cpan.org/dist/Net-Libdnet/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/G/GO/GOMOR/Net-Libdnet-0.92.tar.gz" -MD5SUM="3ae5ac04867b615ee20ec9ee281a31fd" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Net-Libdnet/slack-desc b/development/perl-Net-Libdnet/slack-desc deleted file mode 100644 index 93253bc49d..0000000000 --- a/development/perl-Net-Libdnet/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-------------------------------------------------------| -perl-Net-Libdnet: perl-Net-Libdnet (binding for Dug Song's libdnet) -perl-Net-Libdnet: -perl-Net-Libdnet: Net::Libdnet provides a simplified, portable interface to several -perl-Net-Libdnet: low-level networking routines, including network address manipulation, -perl-Net-Libdnet: kernel arp cache and route table lookup and manipulation, network -perl-Net-Libdnet: firewalling, network interface lookup and manipulation, network traffic -perl-Net-Libdnet: interception via tunnel interfaces, and raw IP packet and Ethernet -perl-Net-Libdnet: frame transmission. It is intended to complement the functionality -perl-Net-Libdnet: provided by libpcap. -perl-Net-Libdnet: -perl-Net-Libdnet: diff --git a/development/perl-Net-Packet/README b/development/perl-Net-Packet/README deleted file mode 100644 index b0be1ff930..0000000000 --- a/development/perl-Net-Packet/README +++ /dev/null @@ -1,16 +0,0 @@ -Net::Packet - a framework to easily send and receive frames from layer 2 to -layer 7 - -This module is a unified framework to craft, send and receive packets at -layers 2, 3, 4 and 7. -Basically, you forge each layer of a frame (Net::Packet::IPv4 for layer 3, -Net::Packet::TCP for layer 4; for example), and pack all of this into a -Net::Packet::Frame object. Then, you can send the frame to the network, and -receive its response easily, because the response is automatically searched -for and matched against the request (not implemented for all layers). - -This package requires: perl-Bit-Vector, perl-Class-Gomor, perl-Net-IPv4Addr, -perl-Net-IPv6Addr, perl-Net-Libdnet, perl-Net-Pcap, perl-Net-Write and -perl-Socket6. All of them are avalaible from SlackBuilds.org. - -This is not the same module as perl-NetPacket! diff --git a/development/perl-Net-Packet/perl-Net-Packet.SlackBuild b/development/perl-Net-Packet/perl-Net-Packet.SlackBuild deleted file mode 100644 index d5f5026926..0000000000 --- a/development/perl-Net-Packet/perl-Net-Packet.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Net-Packet - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Net-Packet -VERSION=${VERSION:-3.27} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Net-Packet -DOCS="LICENSE LICENSE.Artistic README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Net-Packet/perl-Net-Packet.info b/development/perl-Net-Packet/perl-Net-Packet.info deleted file mode 100644 index 841bb000e1..0000000000 --- a/development/perl-Net-Packet/perl-Net-Packet.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Net-Packet" -VERSION="3.27" -HOMEPAGE="http://search.cpan.org/dist/Net-Packet/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/G/GO/GOMOR/Net-Packet-3.27.tar.gz" -MD5SUM="1f1d0b19b043d47dd30d21d5cf02e1e7" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Net-Packet/slack-desc b/development/perl-Net-Packet/slack-desc deleted file mode 100644 index cec80dc612..0000000000 --- a/development/perl-Net-Packet/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-------------------------------------------------------| -perl-Net-Packet: perl-Net-Packet (a network framework) -perl-Net-Packet: -perl-Net-Packet: This module is a unified framework to craft, send and receive packets -perl-Net-Packet: at layers 2, 3, 4 and 7. -perl-Net-Packet: -perl-Net-Packet: -perl-Net-Packet: -perl-Net-Packet: -perl-Net-Packet: -perl-Net-Packet: -perl-Net-Packet: diff --git a/development/perl-Net-Write/README b/development/perl-Net-Write/README deleted file mode 100644 index 13836ed23a..0000000000 --- a/development/perl-Net-Write/README +++ /dev/null @@ -1,12 +0,0 @@ -Net::Write - a portable interface to open and send raw data to network - -Net::Write provides a portable interface to open a network interface, and be -able to write raw data directly to the network. It juste provides three -methods when a Net::Write object has been created for an interface: open, -send, close. -It is possible to open a network interface to send frames at layer 2 (you -craft a frame from link layer), or at layer 3 (you craft a frame from network -layer), or at layer 4 (you craft a frame from transport layer). - -This package requires perl-Class-Gomor, perl-Net-Pcap and perl-Socket6 from -SlackBuilds.org diff --git a/development/perl-Net-Write/perl-Net-Write.SlackBuild b/development/perl-Net-Write/perl-Net-Write.SlackBuild deleted file mode 100644 index a55a86de2c..0000000000 --- a/development/perl-Net-Write/perl-Net-Write.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-Net-Write - -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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. - -PRGNAM=perl-Net-Write -VERSION=${VERSION:-1.05} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Net-Write -DOCS="LICENSE LICENSE.Artistic README" - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL INSTALLDIRS=perl -make -make test -make install DESTDIR=$PKG - -# Move man pages -mv $PKG/usr/share/man $PKG/usr/ - -# Compress man pages -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Remove perllocal.pod and other special files that don't need to be installed -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) - -# Remove empty directories -find $PKG -depth -type d -empty -delete - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.${PKGTYPE:-tgz} diff --git a/development/perl-Net-Write/perl-Net-Write.info b/development/perl-Net-Write/perl-Net-Write.info deleted file mode 100644 index 532d6fb5b7..0000000000 --- a/development/perl-Net-Write/perl-Net-Write.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Net-Write" -VERSION="1.05" -HOMEPAGE="http://search.cpan.org/dist/Net-Write/" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/G/GO/GOMOR/Net-Write-1.05.tar.gz" -MD5SUM="833365d8474fd71a55c1190217613e73" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/development/perl-Net-Write/slack-desc b/development/perl-Net-Write/slack-desc deleted file mode 100644 index 865aebcfa2..0000000000 --- a/development/perl-Net-Write/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-------------------------------------------------------| -perl-Net-Write: perl-Net-Write (portable interface to open and send raw data to network) -perl-Net-Write: -perl-Net-Write: Net::Write provides a portable interface to open a network interface, -perl-Net-Write: and be able to write raw data directly to the network. It juste -perl-Net-Write: provides three methods when a Net::Write object has been created for an -perl-Net-Write: interface: open, send, close. -perl-Net-Write: -perl-Net-Write: -perl-Net-Write: -perl-Net-Write: -perl-Net-Write: diff --git a/development/perl-Tidy/README b/development/perl-Tidy/README deleted file mode 100644 index d643584ea4..0000000000 --- a/development/perl-Tidy/README +++ /dev/null @@ -1,6 +0,0 @@ -Perltidy is a tool to indent and reformat perl scripts. It can also -write scripts in html format. - -These modules are not required, but perltidy may use them if detected: -HTML::Entities will be used to encode HTML entities if detected. -Pod::Html will be used to format pod text. diff --git a/development/perl-Tidy/perl-Tidy.SlackBuild b/development/perl-Tidy/perl-Tidy.SlackBuild deleted file mode 100644 index cc74a49d41..0000000000 --- a/development/perl-Tidy/perl-Tidy.SlackBuild +++ /dev/null @@ -1,81 +0,0 @@ -#!/bin/sh - -# Slackware build script for Tidy -# Written by Joey Trungale <joey@trungale.net> - -PRGNAM=perl-Tidy -VERSION=${VERSION:-20090616} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRC_PRGNAM=Perl-Tidy - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$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 {} \; - -perl Makefile.PL \ - INSTALLDIRS=vendor \ - INSTALLVENDORMAN1DIR=/usr/man/man1 \ - INSTALLVENDORMAN3DIR=/usr/man/man3 -make -make test -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; - -find $PKG -name "perllocal.pod" -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true -find $PKG -depth -type d -empty -delete || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGES MANIFEST README \ - $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.${PKGTYPE:-tgz} diff --git a/development/perl-Tidy/perl-Tidy.info b/development/perl-Tidy/perl-Tidy.info deleted file mode 100644 index deee382f64..0000000000 --- a/development/perl-Tidy/perl-Tidy.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-Tidy" -VERSION="20090616" -HOMEPAGE="http://search.cpan.org/dist/Tidy" -DOWNLOAD="http://search.cpan.org/CPAN/authors/id/S/SH/SHANCOCK/Perl-Tidy-20090616.tar.gz" -MD5SUM="63baa94a96fc5c272e06e72e589e7673" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Joey Trungale" -EMAIL="joey@trungale.net" -APPROVED="rworkman" diff --git a/development/perl-Tidy/slack-desc b/development/perl-Tidy/slack-desc deleted file mode 100644 index db700709a7..0000000000 --- a/development/perl-Tidy/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------------------------------------------------------| -perl-Tidy: perl-Tidy (Parses and beutifies perl source) -perl-Tidy: -perl-Tidy: Perltidy is a tool to indent and reformat perl scripts. -perl-Tidy: It can also write scripts in html format. -perl-Tidy: -perl-Tidy: http://search.cpan.org/dist/Tidy -perl-Tidy: -perl-Tidy: -perl-Tidy: -perl-Tidy: -perl-Tidy: diff --git a/development/perl-xml-twig/README b/development/perl-xml-twig/README deleted file mode 100644 index eb59f3acf4..0000000000 --- a/development/perl-xml-twig/README +++ /dev/null @@ -1,5 +0,0 @@ -XML::Twig is (yet another!) XML transformation module. -Its strong points: can be used to process huge documents while -still being in tree mode; not bound by DOM or SAX, so it is -very perlish and offers a very comprehensive set of methods; -simple to use; DWIMs as much as possible. diff --git a/development/perl-xml-twig/perl-xml-twig.SlackBuild b/development/perl-xml-twig/perl-xml-twig.SlackBuild deleted file mode 100644 index d6f3b91f01..0000000000 --- a/development/perl-xml-twig/perl-xml-twig.SlackBuild +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh - -# Slackware build script for perl-xml-twig - -# Copyright 2008-2010 Heinz Wiesinger, Amsterdam, The Netherlands -# 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. - -PRGNAM=perl-xml-twig -VERSION=3.34 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=XML-Twig - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -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 $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -perl Makefile.PL -y INSTALLDIRS=vendor - -make -make install DESTDIR=$PKG - -#Move man-pages to appropriate place -mv $PKG/usr/share/man $PKG/usr/ - -# Remove perlocal.pod and .packlist from $PKG -( for i in perllocal.pod .packlist; do - find $PKG -name "$i" -exec rm -rf {} \; - done -) - -# Remove empty directories -find $PKG -depth -type d -empty -exec rm -rf {} \; - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a Changes README \ - $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.${PKGTYPE:-tgz} diff --git a/development/perl-xml-twig/perl-xml-twig.info b/development/perl-xml-twig/perl-xml-twig.info deleted file mode 100644 index 2072ddab65..0000000000 --- a/development/perl-xml-twig/perl-xml-twig.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="perl-xml-twig" -VERSION="3.34" -HOMEPAGE="http://xmltwig.com/xmltwig/" -DOWNLOAD="http://xmltwig.com/xmltwig/XML-Twig-3.34.tar.gz" -MD5SUM="e0d39cb8114870cc88fbe52cbb9762da" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Heinz Wiesinger" -EMAIL="pprkut@liwjatan.at" -APPROVED="rworkman" diff --git a/development/perl-xml-twig/slack-desc b/development/perl-xml-twig/slack-desc deleted file mode 100644 index 36a8508041..0000000000 --- a/development/perl-xml-twig/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------------------------------------------------| -perl-xml-twig: perl-xml-twig (Perl XML transformation module) -perl-xml-twig: -perl-xml-twig: XML::Twig is (yet another!) XML transformation module. -perl-xml-twig: Its strong points: can be used to process huge documents while -perl-xml-twig: still being in tree mode; not bound by DOM or SAX, so it is -perl-xml-twig: very perlish and offers a very comprehensive set of methods; -perl-xml-twig: simple to use; DWIMs as much as possible. -perl-xml-twig: -perl-xml-twig: Homepage: http://xmltwig.com/xmltwig/ -perl-xml-twig: -perl-xml-twig: |