diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2013-03-30 15:47:49 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-06 00:52:48 -0600 |
commit | e06fe12c22ac108f516b068a6a070918e6ded1c8 (patch) | |
tree | ea54ca4ce872e9f20d698a45b1577360db5e5ffe /libraries/webkitgtk/webkitgtk.SlackBuild | |
parent | 2fd7099e9be28da1d4654802f485cb937fbf8048 (diff) | |
download | slackbuilds-e06fe12c22ac108f516b068a6a070918e6ded1c8.tar.gz |
libraries/webkitgtk: Updated for version 1.10.2.
Noted the new dependency libwebp
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/webkitgtk/webkitgtk.SlackBuild')
-rw-r--r-- | libraries/webkitgtk/webkitgtk.SlackBuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/libraries/webkitgtk/webkitgtk.SlackBuild b/libraries/webkitgtk/webkitgtk.SlackBuild index 3961219003..b8bad6707e 100644 --- a/libraries/webkitgtk/webkitgtk.SlackBuild +++ b/libraries/webkitgtk/webkitgtk.SlackBuild @@ -23,8 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=webkitgtk -SRCNAM=webkit -VERSION=${VERSION:-1.8.3} +VERSION=${VERSION:-1.10.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -60,15 +59,16 @@ set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.?z* -cd $SRCNAM-$VERSION +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* +cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . # Check if geoclue is there if pkg-config --exists geoclue ; then GEOCLUE="yes" ; else GEOCLUE="no" ; fi +CPPFLAGS="-I/usr/include/pango-1.0" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -77,6 +77,8 @@ CXXFLAGS="$SLKCFLAGS" \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --with-font-backend=pango \ --with-gtk=2.0 \ + --enable-webkit2=no \ + --enable-plugin-process=no \ --enable-geolocation=$GEOCLUE \ --build=$ARCH-slackware-linux |