mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/gtkmm: Initial import
This commit is contained in:
parent
a44ab91948
commit
059b8477e3
4 changed files with 108 additions and 0 deletions
10
libraries/gtkmm/README
Normal file
10
libraries/gtkmm/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
gtkmm is the official C++ interface for the popular GUI library
|
||||
GTK+. Highlights include typesafe callbacks, and a comprehensive set
|
||||
of widgets that are easily extensible via inheritance. You can create
|
||||
user interfaces either in code or with the Glade User Interface
|
||||
designer, using libglademm. There's extensive documentation,
|
||||
including API reference and a tutorial.
|
||||
|
||||
This package requires cairomm, which is also available from the
|
||||
SlackBuilds.org project.
|
||||
|
79
libraries/gtkmm/gtkmm.SlackBuild
Normal file
79
libraries/gtkmm/gtkmm.SlackBuild
Normal file
|
@ -0,0 +1,79 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gtkmm 2.10.6
|
||||
|
||||
# Copyright (C) 2006 paul wisehart wise@lupulin.net
|
||||
# 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.
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PKGNAME=gtkmm
|
||||
VERSION=2.8.10
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PKGNAME
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
rm -rf $PKGNAME-$VERSION
|
||||
tar -xvzf $CWD/$PKGNAME-$VERSION.tar.gz || exit 1
|
||||
cd $PKGNAME-$VERSION || exit 1
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+rw,go-w+r .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PKGNAME-$VERSION
|
||||
mv $PKG/usr/share/doc/gtkmm-2.4/* $PKG/usr/doc/$PKGNAME-$VERSION
|
||||
cp -a AUTHORS CHANGES COPYING ChangeLog INSTALL NEWS PORTING README* \
|
||||
$PKG/usr/doc/$PKGNAME-$VERSION
|
||||
mv $PKG/usr/share/devhelp/books/gtkmm-2.4/gtkmm-2.4.devhelp \
|
||||
$PKG/usr/doc/$PKGNAME-$VERSION
|
||||
rm -rf $PKG/usr/share
|
||||
cat $CWD/$PKGNAME.SlackBuild > $PKG/usr/doc/$PKGNAME-$VERSION/$PKGNAME.SlackBuild
|
||||
# Remove API docs
|
||||
rm -rf $PKG/usr/doc/$PKGNAME-$VERSION/docs/reference \
|
||||
$PKG/usr/doc/$PKGNAME-$VERSION/examples
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PKGNAME-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
libraries/gtkmm/gtkmm.info
Normal file
8
libraries/gtkmm/gtkmm.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gtkmm"
|
||||
VERSION="2.8.10"
|
||||
HOMEPAGE="http://www.gtkmm.org/"
|
||||
DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.8/gtkmm-2.8.10.tar.gz"
|
||||
MD5SUM="11f74358773c3be9a2b1bba8f1ce9528"
|
||||
MAINTAINER="paul wisehart"
|
||||
EMAIL="wise@lupulin.net"
|
||||
APPROVED="rworkman"
|
11
libraries/gtkmm/slack-desc
Normal file
11
libraries/gtkmm/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
gtkmm: gtkmm
|
||||
gtkmm:
|
||||
gtkmm: gtkmm is the official C++ interface for the popular GUI library
|
||||
gtkmm: GTK+. Highlights include typesafe callbacks, and a comprehensive set
|
||||
gtkmm: of widgets that are easily extensible via inheritance. You can create
|
||||
gtkmm: user interfaces either in code or with the Glade User Interface
|
||||
gtkmm: designer, using libglademm. There's extensive documentation,
|
||||
gtkmm: including API reference and a tutorial.
|
||||
gtkmm:
|
||||
gtkmm:
|
||||
gtkmm:
|
Loading…
Reference in a new issue