mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/cairomm: Initial import
This commit is contained in:
parent
f54ab2de08
commit
b25fcc249a
4 changed files with 102 additions and 0 deletions
11
libraries/cairomm/README
Normal file
11
libraries/cairomm/README
Normal file
|
@ -0,0 +1,11 @@
|
|||
cairomm is a C++ wrapper for the cairo graphics library. It offers
|
||||
all the power of cairo with an interface familiar to C++ developers,
|
||||
including use of the Standard Template Library where it makes sense.
|
||||
|
||||
This requires glibmm (also available from SlackBuilds.org).
|
||||
|
||||
If you want to build a newer version of cairomm, this script has been
|
||||
tested and found to work properly with cairomm-1.2.2. The only change
|
||||
needed in the script is the VERSION string. You will, however, have
|
||||
to install the cairo-1.2.4 package from Slackware 11.0 /testing.
|
||||
|
75
libraries/cairomm/cairomm.SlackBuild
Normal file
75
libraries/cairomm/cairomm.SlackBuild
Normal file
|
@ -0,0 +1,75 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for cairomm
|
||||
|
||||
# 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=cairomm
|
||||
VERSION=0.6.0
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
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 \
|
||||
--enable-static=no \
|
||||
|| exit 1
|
||||
|
||||
make -j3 || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PKGNAME-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL MAINTAINERS NEWS README TODO examples \
|
||||
$PKG/usr/doc/$PKGNAME-$VERSION
|
||||
mv $PKG/usr/share/doc/libcairomm-1.0/reference/html $PKG/usr/doc/$PKGNAME-$VERSION
|
||||
rm -rf $PKG/usr/share/doc
|
||||
cat $CWD/$PKGNAME.SlackBuild > $PKG/usr/doc/$PKGNAME-$VERSION/$PKGNAME.SlackBuild
|
||||
|
||||
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/cairomm/cairomm.info
Normal file
8
libraries/cairomm/cairomm.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="cairomm"
|
||||
VERSION="0.6.0"
|
||||
HOMEPAGE="http://cairographics.org/cairomm/"
|
||||
DOWNLOAD="http://cairographics.org/releases/cairomm-0.6.0.tar.gz"
|
||||
MD5SUM="9d967cf486b0ac59d451d47922c99e6f"
|
||||
MAINTAINER="paul wisehart"
|
||||
EMAIL="wise@lupulin.net"
|
||||
APPROVED="robw810"
|
8
libraries/cairomm/slack-desc
Normal file
8
libraries/cairomm/slack-desc
Normal file
|
@ -0,0 +1,8 @@
|
|||
cairomm:
|
||||
cairomm: cairomm 1.2.2
|
||||
cairomm: pkg'd by paul wisehart <wise@lupulin.net>
|
||||
cairomm:
|
||||
cairomm: cairomm is a C++ wrapper for the cairo graphics library. It offers
|
||||
cairomm: all the power of cairo with an interface familiar to C++ developers,
|
||||
cairomm: including use of the Standard Template Library where it makes sense.
|
||||
cairomm:
|
Loading…
Reference in a new issue