wok diff libwebkit/receipt @ rev 14819
Add: libcups
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Wed Jul 17 13:45:11 2013 +0200 (2013-07-17) |
parents | b242093530f9 |
children | c07c17f1c70b |
line diff
1.1 --- a/libwebkit/receipt Mon May 28 09:50:41 2012 +0200 1.2 +++ b/libwebkit/receipt Wed Jul 17 13:45:11 2013 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libwebkit" 1.7 -VERSION="1.8.1" 1.8 +VERSION="1.8.3" 1.9 CATEGORY="network" 1.10 SHORT_DESC="xHTML render library." 1.11 MAINTAINER="mallory@sweetpeople.org" 1.12 @@ -25,10 +25,17 @@ 1.13 compile_rules() 1.14 { 1.15 cd $src 1.16 - # fix Bug 84526: webkit-gtk-1.8.0 fails to build with --disable-video 1.17 - patch -p0 < $stuff/CodeGeneratorGObject-bug-84526.patch || exit 1 1.18 # libwebkit does not like parallel builds. 1.19 export MAKEFLAGS=$(echo $MAKEFLAGS | sed 's/-j[0-9]*/-j1/') 1.20 + # fix Bug 84526: webkit-gtk-1.8.0 fails to build with --disable-video 1.21 + # Build fix with newer bison 2.6 1.22 + for file_diff in $stuff/*.diff; do 1.23 + echo -n "Applying patch $(basename $file_diff)" 1.24 + patch -Np1 -i $file_diff > /dev/null 1.25 + status 1.26 + done 1.27 + # Build 1.28 + patch -p0 < $stuff/CodeGeneratorGObject-bug-84526.patch || exit 1 1.29 ./configure \ 1.30 --prefix=/usr \ 1.31 --infodir=/usr/share/info \