diff options
author | Aleksandar Samardzic <asamardzic@matf.bg.ac.yu> | 2010-05-11 20:00:31 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 20:00:31 +0200 |
commit | 621bdb523ea319921bd07e4bd149ed95f8c3b7a4 (patch) | |
tree | c4cabd721b347a44e37e7c7faa9e8fb0ba3e5985 /development | |
parent | be1197df69cb73da05c938a4024c25a51ac2dcf1 (diff) | |
download | slackbuilds-621bdb523ea319921bd07e4bd149ed95f8c3b7a4.tar.gz |
development/sip: Added to 12.0 repository
Diffstat (limited to 'development')
-rw-r--r-- | development/sip/README | 29 | ||||
-rw-r--r-- | development/sip/sip.SlackBuild | 61 | ||||
-rw-r--r-- | development/sip/sip.info | 8 | ||||
-rw-r--r-- | development/sip/slack-desc | 19 |
4 files changed, 117 insertions, 0 deletions
diff --git a/development/sip/README b/development/sip/README new file mode 100644 index 0000000000..5f89d2ec27 --- /dev/null +++ b/development/sip/README @@ -0,0 +1,29 @@ +One of the features of Python that makes it so powerful is the ability +to take existing libraries, written in C or C++, and make them +available as Python extension modules. Such extension modules are +often called bindings for the library. + +SIP is a tool that makes it very easy to create Python bindings for C +and C++ libraries. It was originally developed to create PyQt, the +Python bindings for the Qt toolkit, but can be used to create bindings +for any C or C++ library. + +NOTE: +This package will, by default, overwrite some files contained in the +stock kdebindings package included in Slackware. The version of sip +included with kdebindings is an older version which works fine for +generating qt3/kde3 python bindings, but the newer versions are needed +to generate qt4 python bindings (pyqt4 on SlackBuilds.org). To the +best of our knowledge, sip is backwards compatible, so there shouldn't +be any adverse effects from the overwritten files, but we cannot make +any promises. If you do encounter problems, remove this sip package +and reinstall the stock kdebinding package, and then notify the +maintainer of this build script (see the sip.info file). +As an alternative, this build script provides a PREFIX variable that +can be set to select a different installation prefix (such as /opt). +Doing so will require you to add the directory in which the sip binary +is located to your PATH, add the sip includes directory to your +compiler includes search path, and add the sip python module path to +your PYTHONPATH environment variable. All of these things will have +to be done manually and in such a way that they take priority over the +files installed in /usr prefix. diff --git a/development/sip/sip.SlackBuild b/development/sip/sip.SlackBuild new file mode 100644 index 0000000000..82d50c3fce --- /dev/null +++ b/development/sip/sip.SlackBuild @@ -0,0 +1,61 @@ +#!/bin/sh + +# Slackware build script for SIP + +# Written by Aleksandar B. Samardzic <asamardzic@matf.bg.ac.yu> + +NAME=sip +VERSION=4.7.4 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=${PKG:-$TMP/package-$NAME} +OUTPUT=${OUTPUT:-/tmp} + +# See ./README for more information +PREFIX=${PREFIX:-/usr} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $NAME-$VERSION +tar xvf $CWD/$NAME-$VERSION.tar.gz +cd $NAME-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +python configure.py \ +-b "$PREFIX/bin" \ +-d "$PREFIX/lib/python2.5/site-packages" \ +-e "$PREFIX/include/python2.5" \ +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" + +make +make install DESTDIR=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$NAME-$VERSION +install -m 0644 ChangeLog LICENSE NEWS README THANKS TODO \ + doc/* $CWD/$NAME.SlackBuild $PKG/usr/doc/$NAME-$VERSION + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$NAME-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/sip/sip.info b/development/sip/sip.info new file mode 100644 index 0000000000..4d8e9849d1 --- /dev/null +++ b/development/sip/sip.info @@ -0,0 +1,8 @@ +PRGNAM="sip" +VERSION="4.7.4" +HOMEPAGE="http://www.riverbankcomputing.co.uk/sip/" +DOWNLOAD="http://www.riverbankcomputing.com/Downloads/sip4/sip-4.7.4.tar.gz" +MD5SUM="3bae6d0fb931fe2ddcd6f6c1da245afa" +MAINTAINER="Aleksandar B. Samardzic" +EMAIL="asamardzic@matf.bg.ac.yu" +APPROVED="David Somero,rworkman" diff --git a/development/sip/slack-desc b/development/sip/slack-desc new file mode 100644 index 0000000000..32f90f12d5 --- /dev/null +++ b/development/sip/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------------------------------------------------------| +sip: SIP (a tool for generating Python bindings) +sip: +sip: SIP is a tool that makes it very easy to create Python bindings +sip: for C and C++ libraries. It was originally developed to create +sip: PyQt, the Python bindings for the Qt toolkit, but can be used to +sip: create bindings for any C or C++ library. +sip: +sip: Homepage: http://www.riverbankcomputing.co.uk/sip/ +sip: +sip: +sip: |