summaryrefslogtreecommitdiff
path: root/libraries/perl-tk
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2011-03-16 01:18:10 -0500
committerRobby Workman <rworkman@slackbuilds.org>2011-03-20 12:32:34 -0500
commit93ba4df5022a8c4d422dd97a2a13ffa8a8946453 (patch)
treeea69c40d48150458e051a851cdf77e722c9118e2 /libraries/perl-tk
parent6a511b1c665a1f7efecadaa3447af889b1dcba58 (diff)
downloadslackbuilds-93ba4df5022a8c4d422dd97a2a13ffa8a8946453.tar.gz
perl/*: Moved all of the Perl modules to here
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/perl-tk')
-rw-r--r--libraries/perl-tk/README8
-rw-r--r--libraries/perl-tk/perl-tk-804.029.diff27
-rw-r--r--libraries/perl-tk/perl-tk.SlackBuild93
-rw-r--r--libraries/perl-tk/perl-tk.info10
-rw-r--r--libraries/perl-tk/slack-desc19
5 files changed, 0 insertions, 157 deletions
diff --git a/libraries/perl-tk/README b/libraries/perl-tk/README
deleted file mode 100644
index d78338991f..0000000000
--- a/libraries/perl-tk/README
+++ /dev/null
@@ -1,8 +0,0 @@
-perl-tk (Tk graphical interface for Perl)
-
-Perl/Tk is an extension for writing Perl programs with a GUI.
-
-Tk was originally developed as an extension to the Tcl language
-for use with the X Window System on Unix. With its port to perl,
-Tk gives Perl programmers the same control over the graphical
-desktop that Tcl programmers have taken for granted.
diff --git a/libraries/perl-tk/perl-tk-804.029.diff b/libraries/perl-tk/perl-tk-804.029.diff
deleted file mode 100644
index 0aab9659ed..0000000000
--- a/libraries/perl-tk/perl-tk-804.029.diff
+++ /dev/null
@@ -1,27 +0,0 @@
-diff -ru Tk-804.029.org//TextList/reindex.pl Tk-804.029/TextList/reindex.pl
---- Tk-804.029.org//TextList/reindex.pl 2007-02-10 05:54:45.000000000 -0300
-+++ Tk-804.029/TextList/reindex.pl 2010-08-05 13:53:36.447371174 -0300
-@@ -1,4 +1,4 @@
--#!/bin/perl
-+#!/usr/bin/perl
-
- use lib qw(/home1/gbartels/textlist);
- use Tk;
-diff -ru Tk-804.029.org//pTk/Tcl-pTk Tk-804.029/pTk/Tcl-pTk
---- Tk-804.029.org//pTk/Tcl-pTk 2007-02-10 05:55:23.000000000 -0300
-+++ Tk-804.029/pTk/Tcl-pTk 2010-08-05 13:54:06.527369253 -0300
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/perl -w
-+#!/usr/bin/perl -w
- use open IO => ':bytes'; # Avoid UTF-8 issues with some perl5.8.0 (RedHat)
- use Carp;
- my $verbose = 0;
-diff -ru Tk-804.029.org//pTk/mkVFunc Tk-804.029/pTk/mkVFunc
---- Tk-804.029.org//pTk/mkVFunc 2008-11-04 20:06:50.000000000 -0200
-+++ Tk-804.029/pTk/mkVFunc 2010-08-05 13:54:20.074244152 -0300
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/perl -w
-+#!/usr/bin/perl -w
- use strict;
-
-
diff --git a/libraries/perl-tk/perl-tk.SlackBuild b/libraries/perl-tk/perl-tk.SlackBuild
deleted file mode 100644
index 11b9d93e12..0000000000
--- a/libraries/perl-tk/perl-tk.SlackBuild
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for perl-tk (Tk)
-
-# Written by Pablo Santamaria (pablosantamaria@gmail.com)
-
-PRGNAM=perl-tk
-VERSION=${VERSION:-804.029}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-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 Tk-$VERSION
-tar xvf $CWD/Tk-$VERSION.tar.gz
-cd Tk-$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 {} \;
-
-# Apply a few patches
-patch -p1 < $CWD/$PRGNAM-$VERSION.diff
-
-# XFT=1 (font manager) support, which gives perl-tk programs the ability to
-# use all fonts accessible from XFT and antialiasing.
-perl Makefile.PL \
- XFT=1 \
- INSTALLDIRS=vendor \
- INSTALLVENDORMAN1DIR=/usr/man/man1 \
- INSTALLVENDORMAN3DIR=/usr/man/man3 \
-make OPTIMIZE="$SLKCFLAGS"
-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
-
-( 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
-)
-
-( cd $PKG
- find . -name perllocal.pod \
- -o -name ".packlist" \
- -o -name "*.bs" \
- | xargs rm -f
-)
-
-find $PKG -depth -type d -empty -delete || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYING Change.log Changes Funcs.doc INSTALL PPM-HowTo README \
- README.linux ToDo VERSIONS $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/libraries/perl-tk/perl-tk.info b/libraries/perl-tk/perl-tk.info
deleted file mode 100644
index d0955ac0b3..0000000000
--- a/libraries/perl-tk/perl-tk.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="perl-tk"
-VERSION="804.029"
-HOMEPAGE="http://search.cpan.org/~srezic/Tk-804.029/"
-DOWNLOAD="http://search.cpan.org/CPAN/authors/id/S/SR/SREZIC/Tk-804.029.tar.gz"
-MD5SUM="f4aebe6fcdb309a8480514f2ccf8117c"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Pablo Santamaria"
-EMAIL="pablosantamaria@gmail.com"
-APPROVED="Erik Hanson"
diff --git a/libraries/perl-tk/slack-desc b/libraries/perl-tk/slack-desc
deleted file mode 100644
index 907091f1b8..0000000000
--- a/libraries/perl-tk/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-tk: perl-tk (Tk graphical interface for Perl)
-perl-tk:
-perl-tk: Perl/Tk is an extension for writing Perl programs with a GUI.
-perl-tk:
-perl-tk: Tk was originally developed as an extension to the Tcl language
-perl-tk: for use with the X Window System on Unix. With its port to perl,
-perl-tk: Tk gives Perl programmers the same control over the graphical
-perl-tk: desktop that Tcl programmers have taken for granted.
-perl-tk:
-perl-tk:
-perl-tk: