diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-12 23:31:21 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:31:21 +0200 |
commit | 54b3b308026f4ce11cc86ef077e7324048dbe954 (patch) | |
tree | 635df255f632fff5e90379da08fe8c4280dcb7fb /libraries | |
parent | ca0f5478ada1e04bf8ef6f855f2b96dbbfefd475 (diff) | |
download | slackbuilds-54b3b308026f4ce11cc86ef077e7324048dbe954.tar.gz |
libraries/pywebkitgtk: Added to 12.2 repository
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/pywebkitgtk/README | 4 | ||||
-rw-r--r-- | libraries/pywebkitgtk/pywebkitgtk.SlackBuild | 65 | ||||
-rw-r--r-- | libraries/pywebkitgtk/pywebkitgtk.info | 8 | ||||
-rw-r--r-- | libraries/pywebkitgtk/slack-desc | 19 |
4 files changed, 96 insertions, 0 deletions
diff --git a/libraries/pywebkitgtk/README b/libraries/pywebkitgtk/README new file mode 100644 index 0000000000..05ed057147 --- /dev/null +++ b/libraries/pywebkitgtk/README @@ -0,0 +1,4 @@ +PyWebKitGtk allows Python (Gtk) developers to create software +on top of the WebKitGtk rendering engine. + +This requires webkit. diff --git a/libraries/pywebkitgtk/pywebkitgtk.SlackBuild b/libraries/pywebkitgtk/pywebkitgtk.SlackBuild new file mode 100644 index 0000000000..40c83178c4 --- /dev/null +++ b/libraries/pywebkitgtk/pywebkitgtk.SlackBuild @@ -0,0 +1,65 @@ +#!/bin/sh + +# Slackware build script for pywebkitgtk + +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=pywebkitgtk +VERSION=${VERSION:-1.1} +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" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $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} \ + --enable-static=no \ + --disable-dependency-tracking \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS ChangeLog COPYING INSTALL MAINTAINERS NEWS 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.tgz diff --git a/libraries/pywebkitgtk/pywebkitgtk.info b/libraries/pywebkitgtk/pywebkitgtk.info new file mode 100644 index 0000000000..9c54aa577a --- /dev/null +++ b/libraries/pywebkitgtk/pywebkitgtk.info @@ -0,0 +1,8 @@ +PRGNAM="pywebkitgtk" +VERSION="1.1" +HOMEPAGE="http://code.google.com/p/pywebkitgtk/" +DOWNLOAD="http://pywebkitgtk.googlecode.com/files/pywebkitgtk-1.1.tar.gz" +MD5SUM="5c6aa1db64f40ba7ee1811f28df47303" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="rworkman" diff --git a/libraries/pywebkitgtk/slack-desc b/libraries/pywebkitgtk/slack-desc new file mode 100644 index 0000000000..594ee746af --- /dev/null +++ b/libraries/pywebkitgtk/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------------------------------------------------------| +pywebkitgtk: PyWebkitGTK +pywebkitgtk: +pywebkitgtk: PyWebKitGtk allows Python (Gtk) developers to create software +pywebkitgtk: on top of the WebKitGtk rendering engine. +pywebkitgtk: +pywebkitgtk: Hompeage: http://code.google.com/p/pywebkitgtk/ +pywebkitgtk: +pywebkitgtk: +pywebkitgtk: +pywebkitgtk: +pywebkitgtk: |