wok-next diff librsvg/receipt @ rev 4609
libv4l: add LD_PREPLOAD trick to /etc/profile
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Tue Dec 15 16:42:43 2009 +0000 (2009-12-15) |
parents | d7f80a67feb1 |
children | 8752c40cc534 |
line diff
1.1 --- a/librsvg/receipt Tue Jun 23 18:10:53 2009 +0200 1.2 +++ b/librsvg/receipt Tue Dec 15 16:42:43 2009 +0000 1.3 @@ -1,15 +1,16 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="librsvg" 1.7 -VERSION="2.13.93" 1.8 -CATEGORY="misc" 1.9 +VERSION="2.26.0" 1.10 +CATEGORY="system-tools" 1.11 SHORT_DESC="SVG Rendering Library" 1.12 MAINTAINER="erjo@slitaz.org" 1.13 -DEPENDS="cairo freetype libxml2 pango fontconfig" 1.14 -BUILD_DEPENDS="cairo-dev freetype-dev libxml2-dev pango-dev fontconfig-dev" 1.15 +DEPENDS="cairo freetype libxml2 pango fontconfig libcroco" 1.16 +BUILD_DEPENDS="$DEPENDS cairo-dev freetype-dev libxml2-dev pango-dev \ 1.17 +fontconfig-dev libcroco-dev" 1.18 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.19 WEB_SITE="http://librsvg.sourceforge.net/" 1.20 -WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.13/$TARBALL" 1.21 +WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.26/$TARBALL" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 @@ -19,6 +20,7 @@ 1.26 --prefix=/usr \ 1.27 --infodir=/usr/share/info \ 1.28 --mandir=/usr/share/man \ 1.29 + --disable-mozilla-plugin \ 1.30 $CONFIGURE_ARGS && 1.31 make && make DESTDIR=$PWD/_pkg install 1.32 } 1.33 @@ -26,16 +28,11 @@ 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 genpkg_rules() 1.36 { 1.37 - mkdir -p $fs/usr $fs/usr/lib 1.38 - cp -a $_pkg/usr/bin $fs/usr 1.39 + mkdir -p $fs/usr/lib 1.40 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.41 cp -a $_pkg/usr/lib/gtk-2.0 $fs/usr/lib 1.42 - 1.43 + 1.44 # remove *.*a files 1.45 find $fs/usr/lib/gtk-2.0 -name "*.*a" -exec rm -f {} \; 1.46 - 1.47 - # strip libs 1.48 - find $fs/usr/lib/gtk-2.0 -name "*.so" -exec strip -s {} \; 1.49 - 1.50 } 1.51