diff options
author | Erwin van Zanten <e.van.zanten.evz@gmail.com> | 2012-12-24 11:51:19 +0100 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-24 11:51:36 +0100 |
commit | e7b01d9ebff23efc18baa5c67543256d1da91343 (patch) | |
tree | 203582b9b531bfe64b54f7d80ddd38077742bb01 /libraries | |
parent | a2124ca8df34ee340cd3c08fb4bff9ad2ce734ad (diff) | |
download | slackbuilds-e7b01d9ebff23efc18baa5c67543256d1da91343.tar.gz |
libraries/gtkmm-utils: Added (gtkmm additions).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/gtkmm-utils/README | 14 | ||||
-rw-r--r-- | libraries/gtkmm-utils/gtkmm-utils.SlackBuild | 93 | ||||
-rw-r--r-- | libraries/gtkmm-utils/gtkmm-utils.info | 10 | ||||
-rw-r--r-- | libraries/gtkmm-utils/slack-desc | 19 |
4 files changed, 136 insertions, 0 deletions
diff --git a/libraries/gtkmm-utils/README b/libraries/gtkmm-utils/README new file mode 100644 index 0000000000..ad6665f7e7 --- /dev/null +++ b/libraries/gtkmm-utils/README @@ -0,0 +1,14 @@ +High level utility functions, classes and widgets written on top of +gtkmm and glibmm. + +- logging framework +- option parsing, date and string utilities +- tile widgets +- dialog helpers + +The package consists of two shared libraries which will be installed +to your pkg-config path, glibmm-utils and gtkmm-utils. + +gtkmm is the official C++ API for GTK+, a graphical user interface +toolkit used in the GNOME desktop. +glibmm is a C++ API for GLib. diff --git a/libraries/gtkmm-utils/gtkmm-utils.SlackBuild b/libraries/gtkmm-utils/gtkmm-utils.SlackBuild new file mode 100644 index 0000000000..97669cba30 --- /dev/null +++ b/libraries/gtkmm-utils/gtkmm-utils.SlackBuild @@ -0,0 +1,93 @@ +#!/bin/sh + +# Slackware build script for gtkmm-utils + +# Copyright (C) 2012 Erwin van Zanten <e.van.zanten.evz@gmail.com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=gtkmm-utils +VERSION=${VERSION:-0.4.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) 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 xvzf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R a-s,u+rw,go-w+r . + +CFLAGS="-DGLIB_COMPILATION" \ +CXXFLAGS="-DGLIB_COMPILATION" \ + ./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --build=$ARCH-slackware-linux + +make libdocdir=/usr/doc/$PRGNAM-$VERSION +make install-strip DESTDIR=$PKG libdocdir=/usr/doc/$PRGNAM-$VERSION + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog COPYING HACKING INSTALL NEWS README TODO* \ + $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/gtkmm-utils/gtkmm-utils.info b/libraries/gtkmm-utils/gtkmm-utils.info new file mode 100644 index 0000000000..cee62551c4 --- /dev/null +++ b/libraries/gtkmm-utils/gtkmm-utils.info @@ -0,0 +1,10 @@ +PRGNAM="gtkmm-utils" +VERSION="0.4.1" +HOMEPAGE="http://code.google.com/p/gtkmm-utils/" +DOWNLOAD="http://gtkmm-utils.googlecode.com/files/gtkmm-utils-0.4.1.tar.gz" +MD5SUM="8b9d5503aaba434f5811e530208962b3" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="gtkmm" +MAINTAINER="Erwin van Zanten" +EMAIL="e.van.zanten.evz@gmail.com" diff --git a/libraries/gtkmm-utils/slack-desc b/libraries/gtkmm-utils/slack-desc new file mode 100644 index 0000000000..367b828728 --- /dev/null +++ b/libraries/gtkmm-utils/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +gtkmm-utils: gtkmm-utils (High level utility functions, classes and widgets) +gtkmm-utils: +gtkmm-utils: High level utility functions, classes and widgets written on top of +gtkmm-utils: gtkmm and glibmm. +gtkmm-utils: It consists: logging framework, option parsing, date and string +gtkmm-utils: utilities, tile widgets, dialog helpers. +gtkmm-utils: The package consists of two shared libraries which will be installed +gtkmm-utils: to your pkg-config path, glibmm-utils and gtkmm-utils. +gtkmm-utils: +gtkmm-utils: homepage: http://code.google.com/p/gtkmm-utils/ +gtkmm-utils: |