wok annotate cairo/receipt @ rev 9164
Up: libupnp to 1.6.12.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Mar 07 23:14:16 2011 +0000 (2011-03-07) |
parents | 2d9d337dde69 |
children | e665eaf1521b |
rev | line source |
---|---|
pankso@22 | 1 # SliTaz package receipt. |
pankso@22 | 2 |
pankso@22 | 3 PACKAGE="cairo" |
slaxemulator@6628 | 4 VERSION="1.10.0" |
pankso@22 | 5 CATEGORY="x-window" |
pankso@22 | 6 SHORT_DESC="2D graphics library." |
pankso@22 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@2489 | 8 DEPENDS="glib pixman libpng zlib expat fontconfig freetype xorg-libX11 \ |
pankso@5336 | 9 xorg-libXau xorg-libXdmcp xorg-libXrender xcb-util libxcb" |
slaxemulator@8965 | 10 BUILD_DEPENDS="pkg-config" |
pankso@22 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@22 | 12 WEB_SITE="http://www.cairographics.org/" |
pankso@22 | 13 WGET_URL="http://cairographics.org/releases/$TARBALL" |
pankso@22 | 14 |
pankso@22 | 15 # Rules to configure and make the package. |
pankso@22 | 16 compile_rules() |
pankso@22 | 17 { |
pankso@1999 | 18 cd $src |
slaxemulator@6628 | 19 patch -Np1 -i ../stuff/cairo-1.10.0-buggy_gradients.patch |
slaxemulator@6628 | 20 # this patch is used to fix incorrect renders with QT |
slaxemulator@6628 | 21 patch -Np1 -i ../stuff/cairo-respect-fontconfig.patch |
pankso@1999 | 22 ./configure \ |
pankso@1999 | 23 --prefix=/usr \ |
pankso@1999 | 24 --mandir=/usr/share/man \ |
pankso@1999 | 25 --with-html-dir=/usr/share/doc \ |
pankso@5336 | 26 --enable-xcb \ |
slaxemulator@6628 | 27 --disable-static \ |
pascal@2489 | 28 $CONFIGURE_ARGS && |
slaxemulator@6628 | 29 make -j 4 && |
pankso@1999 | 30 make DESTDIR=$PWD/_pkg install |
pankso@22 | 31 } |
pankso@22 | 32 |
pankso@22 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@22 | 34 genpkg_rules() |
pankso@22 | 35 { |
pankso@22 | 36 mkdir -p $fs/usr/lib |
pankso@22 | 37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@22 | 38 } |