libraries/libgnomecanvas: Initial import
This commit is contained in:
parent
8061f295ca
commit
f50d405526
|
@ -0,0 +1,10 @@
|
|||
The GNOME canvas is an engine for structured graphics that
|
||||
offers a rich imaging model, high performance rendering, and a
|
||||
powerful, high-level API. It offers a choice of two rendering
|
||||
back-ends, one based on Xlib for extremely fast display, and
|
||||
another based on Libart, a sophisticated, antialiased,
|
||||
alpha-compositing engine. Applications have a choice between
|
||||
the Xlib imaging model or a superset of the PostScript imaging
|
||||
model, depending on the level of graphic sophistication
|
||||
required.
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Written by James Rich james@chowhouse.com
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
# (assumed to be public domain per our submission policy)
|
||||
|
||||
PRGNAM=libgnomecanvas
|
||||
VERSION=2.14.0
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-2}
|
||||
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"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xjvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+rw,go+r-w .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var/lib/gnome
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README COPYING.LIB AUTHORS docs/reference/libgnomecanvas* \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
( cd $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
ln -s ../../share/gtk-doc/html/libgnomecanvas html
|
||||
)
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
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
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="libgnomecanvas"
|
||||
VERSION="2.14.0"
|
||||
HOMEPAGE="http://directory.fsf.org/all/libgnomecanvas.html"
|
||||
DOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/libgnomecanvas/2.14/libgnomecanvas-2.14.0.tar.bz2"
|
||||
MD5SUM="516c46fb4a1401b05cfef58c350fbd3d"
|
||||
MAINTAINER="James Rich"
|
||||
EMAIL="james@chowhouse.com"
|
||||
APPROVED="rworkman"
|
|
@ -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------------------------------------------------------|
|
||||
libgnomecanvas: libgnomecanvas
|
||||
libgnomecanvas:
|
||||
libgnomecanvas: The GNOME canvas is an engine for structured graphics that
|
||||
libgnomecanvas: offers a rich imaging model, high performance rendering, and a
|
||||
libgnomecanvas: powerful, high-level API. It offers a choice of two rendering
|
||||
libgnomecanvas: back-ends, one based on Xlib for extremely fast display, and
|
||||
libgnomecanvas: another based on Libart, a sophisticated, antialiased,
|
||||
libgnomecanvas: alpha-compositing engine. Applications have a choice between
|
||||
libgnomecanvas: the Xlib imaging model or a superset of the PostScript imaging
|
||||
libgnomecanvas: model, depending on the level of graphic sophistication
|
||||
libgnomecanvas: required.
|
Loading…
Reference in New Issue