diff options
author | Cezary M. Kruk <c.kruk@bigfoot.com> | 2010-05-12 23:30:11 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:30:11 +0200 |
commit | 1bbe22bf09fd87f72a07e0c78827d3794d1b6b92 (patch) | |
tree | 9802cdcbb363279b3c83465658def59ccec50902 /libraries/gdk-pixbuf | |
parent | 7f3fa8f9ac1651e2d88fa73f5a716972c85ca067 (diff) | |
download | slackbuilds-1bbe22bf09fd87f72a07e0c78827d3794d1b6b92.tar.gz |
libraries/gdk-pixbuf: Added to 12.2 repository
Diffstat (limited to 'libraries/gdk-pixbuf')
-rw-r--r-- | libraries/gdk-pixbuf/README | 10 | ||||
-rw-r--r-- | libraries/gdk-pixbuf/gdk-pixbuf.SlackBuild | 84 | ||||
-rw-r--r-- | libraries/gdk-pixbuf/gdk-pixbuf.info | 8 | ||||
-rw-r--r-- | libraries/gdk-pixbuf/slack-desc | 19 |
4 files changed, 121 insertions, 0 deletions
diff --git a/libraries/gdk-pixbuf/README b/libraries/gdk-pixbuf/README new file mode 100644 index 0000000000..77ed81396f --- /dev/null +++ b/libraries/gdk-pixbuf/README @@ -0,0 +1,10 @@ +gdk-pixbuf is a library for manipulating images. +The gdk-pixbuf library provides a number of features: + + - GdkPixbuf structure for representing images. + - Image loading facilities, both synchronous and progressive. + - Rendering of a GdkPixbuf into various formats: + drawables (windows, pixmaps), GdkRGB buffers. + - Fast scaling and compositing of pixbufs. + - Simple animation loading (ie. animated gifs). + diff --git a/libraries/gdk-pixbuf/gdk-pixbuf.SlackBuild b/libraries/gdk-pixbuf/gdk-pixbuf.SlackBuild new file mode 100644 index 0000000000..fde4a277a9 --- /dev/null +++ b/libraries/gdk-pixbuf/gdk-pixbuf.SlackBuild @@ -0,0 +1,84 @@ +#!/bin/sh + +# Slackware build script for gdk-pixbuf +# Written by Cezary M. Kruk (c.kruk@bigfoot.com) + +# Modified by the SlackBuilds.org project + +PRGNAM=gdk-pixbuf +VERSION=${VERSION:-0.22.0} +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" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT + +cd $TMP +rm -rf $PRGNAM-$VERSION +tar -xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +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 \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --disable-debug \ + --disable-gtk-doc + +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 +) + +( 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 +) + +# We don't need two copies of the html. +rm -rf $PKG/usr/share/gnome + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING COPYING.LIB ChangeLog INSTALL NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html +cp -a doc/html/* $PKG/usr/doc/$PRGNAM-$VERSION/html + +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/gdk-pixbuf/gdk-pixbuf.info b/libraries/gdk-pixbuf/gdk-pixbuf.info new file mode 100644 index 0000000000..c63a0159eb --- /dev/null +++ b/libraries/gdk-pixbuf/gdk-pixbuf.info @@ -0,0 +1,8 @@ +PRGNAM="gdk-pixbuf" +VERSION="0.22.0" +HOMEPAGE="http://library.gnome.org/devel/gdk-pixbuf/stable/" +DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/0.22/gdk-pixbuf-0.22.0.tar.bz2" +MD5SUM="05fcb68ceaa338614ab650c775efc2f2" +MAINTAINER="Cezary M. Kruk" +EMAIL="c.kruk@bigfoot.com" +APPROVED="dsomero" diff --git a/libraries/gdk-pixbuf/slack-desc b/libraries/gdk-pixbuf/slack-desc new file mode 100644 index 0000000000..1f3a02a4a8 --- /dev/null +++ b/libraries/gdk-pixbuf/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------------------------------------------------------| +gdk-pixbuf: gdk-pixbuf (library for manipulating images) +gdk-pixbuf: +gdk-pixbuf: The gdk-pixbuf library provides a number of features: +gdk-pixbuf: +gdk-pixbuf: - GdkPixbuf structure for representing images. +gdk-pixbuf: - Image loading facilities, both synchronous and progressive. +gdk-pixbuf: - Rendering of a GdkPixbuf into various formats: +gdk-pixbuf: drawables (windows, pixmaps), GdkRGB buffers. +gdk-pixbuf: - Fast scaling and compositing of pixbufs. +gdk-pixbuf: - Simple animation loading (ie. animated gifs). +gdk-pixbuf: |