wok diff cairo/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents 188a05620c45
children 46416cd47a1f
line diff
     1.1 --- a/cairo/receipt	Fri Nov 06 22:23:40 2015 +0100
     1.2 +++ b/cairo/receipt	Thu Jan 10 21:49:04 2019 +0100
     1.3 @@ -3,19 +3,22 @@
     1.4  PACKAGE="cairo"
     1.5  VERSION="1.14.4"
     1.6  CATEGORY="x-window"
     1.7 -SHORT_DESC="2D graphics library."
     1.8 +SHORT_DESC="2D graphics library"
     1.9  MAINTAINER="pankso@slitaz.org"
    1.10  LICENSE="MPL LGPL2.1"
    1.11  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.12 -WEB_SITE="http://www.cairographics.org/"
    1.13 -WGET_URL="http://cairographics.org/releases/$TARBALL"
    1.14 +WEB_SITE="https://www.cairographics.org/"
    1.15 +WGET_URL="${WEB_SITE}releases/$TARBALL"
    1.16  HOST_ARCH="i486 arm"
    1.17  
    1.18 -DEPENDS="glib pixman libpng zlib expat fontconfig freetype xorg-libX11 \
    1.19 -xorg-libXau xorg-libXdmcp xorg-libXrender xcb-util libxcb"
    1.20 +DEPENDS="bzlib fontconfig freetype glib glibc-base harfbuzz libffi libpng \
    1.21 +libxcb libxml2 pcre pixman xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext \
    1.22 +xorg-libXrender zlib"
    1.23  BUILD_DEPENDS="pkg-config glib-dev libpng-dev zlib-dev fontconfig-dev \
    1.24  freetype-dev xorg-libX11-dev pixman-dev xorg-libXau-dev xorg-libXdmcp-dev \
    1.25  xorg-libXrender-dev xcb-util-dev libxcb-dev expat-dev libxml2-dev"
    1.26 +SPLIT="cairo-tools"
    1.27 +SIBLINGS="cairo-gl"
    1.28  
    1.29  # Handle cross compilation
    1.30  case "$ARCH" in
    1.31 @@ -25,15 +28,13 @@
    1.32  # Rules to configure and make the package.
    1.33  compile_rules()
    1.34  {
    1.35 -	cd $src
    1.36  	./configure \
    1.37  		--prefix=/usr \
    1.38 - 		--mandir=/usr/share/man \
    1.39 -		--with-html-dir=/usr/share/doc \
    1.40  		--enable-xcb \
    1.41 +		--enable-xlib-xcb \
    1.42  		--enable-tee \
    1.43  		--disable-static \
    1.44 - 		$CONFIGURE_ARGS &&
    1.45 +		$CONFIGURE_ARGS &&
    1.46  	make $MAKEFLAGS &&
    1.47  	make DESTDIR=$DESTDIR install
    1.48  }
    1.49 @@ -41,8 +42,6 @@
    1.50  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.51  genpkg_rules()
    1.52  {
    1.53 -	mkdir -p $fs/usr/lib/cairo
    1.54 -	cp -a $install/usr/bin	$fs/usr
    1.55 +	mkdir -p $fs/usr/lib
    1.56  	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.57 -	cp -a $install/usr/lib/cairo/*.so* $fs/usr/lib/cairo
    1.58  }