From a1a54dd36f730f3c27a0a99b4c813929f5b1b191 Mon Sep 17 00:00:00 2001 From: Zbigniew Baniewski Date: Sun, 9 Jan 2011 10:53:55 -0200 Subject: development/tklib: Added (utility modules for TCL/Tk) Signed-off-by: Niels Horn --- development/tklib/README | 5 +++ development/tklib/slack-desc | 19 +++++++++ development/tklib/tklib.SlackBuild | 82 ++++++++++++++++++++++++++++++++++++++ development/tklib/tklib.info | 10 +++++ 4 files changed, 116 insertions(+) create mode 100644 development/tklib/README create mode 100644 development/tklib/slack-desc create mode 100644 development/tklib/tklib.SlackBuild create mode 100644 development/tklib/tklib.info (limited to 'development/tklib') diff --git a/development/tklib/README b/development/tklib/README new file mode 100644 index 0000000000..7601eb3e11 --- /dev/null +++ b/development/tklib/README @@ -0,0 +1,5 @@ +Tklib is intended to be a collection of Tcl packages that provide Tk +utility functions and widgets useful to a large collection of Tcl/Tk +programmers. + +This requires tcllib. diff --git a/development/tklib/slack-desc b/development/tklib/slack-desc new file mode 100644 index 0000000000..60b0a9ce09 --- /dev/null +++ b/development/tklib/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +tklib: tklib (utility modules for TCL/Tk) +tklib: +tklib: Tklib is intended to be a collection of Tcl packages that provide +tklib: Tk utility functions and widgets useful to a large collection of +tklib: Tcl/Tk programmers. +tklib: +tklib: +tklib: +tklib: Homepage: http://www.tcl.tk/software/tklib/ +tklib: +tklib: diff --git a/development/tklib/tklib.SlackBuild b/development/tklib/tklib.SlackBuild new file mode 100644 index 0000000000..4f62a73470 --- /dev/null +++ b/development/tklib/tklib.SlackBuild @@ -0,0 +1,82 @@ +#!/bin/sh + +# Slackware build script for tklib + +# Based on slackbuild script written by Paul Wisehart wise@lupulin.net + +PRGNAM=tklib +VERSION=0.5 +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 $PRGNAM-$VERSION +tar zxvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $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 {} \; + + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man + +make +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 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ChangeLog DESCRIPTION.txt README INSTALL.txt \ + $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/tklib/tklib.info b/development/tklib/tklib.info new file mode 100644 index 0000000000..233930bcd7 --- /dev/null +++ b/development/tklib/tklib.info @@ -0,0 +1,10 @@ +PRGNAM="tklib" +VERSION="0.5" +HOMEPAGE="http://www.tcl.tk/software/tklib/" +DOWNLOAD="http://downloads.sourceforge.net/tcllib/tklib-0.5.tar.gz" +MD5SUM="c8b84f3eb4dafbd4e5818e29d408faea" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Zbigniew Baniewski" +EMAIL="zb@ispid.com.pl" +APPROVED="Niels Horn" -- cgit v1.2.3