summaryrefslogtreecommitdiff
path: root/nonprism/webkit2gtk
diff options
context:
space:
mode:
authorJesús Eduardo <heckyel@openmailbox.org>2017-05-15 13:13:20 -0500
committerJesús Eduardo <heckyel@openmailbox.org>2017-05-15 13:13:20 -0500
commit7dcf5a61f8b6fa7ee2d0c608f37ae917ce8ba602 (patch)
tree1ea4e149f1c5e27669b414267e44d7cf32f1fa3a /nonprism/webkit2gtk
parent364e76bf8de591156fb0b97781d20bea310ced69 (diff)
downloadabslibre-7dcf5a61f8b6fa7ee2d0c608f37ae917ce8ba602.tar.gz
abslibre-7dcf5a61f8b6fa7ee2d0c608f37ae917ce8ba602.tar.bz2
abslibre-7dcf5a61f8b6fa7ee2d0c608f37ae917ce8ba602.zip
webkit2gtk: update version 2.17.2
Diffstat (limited to 'nonprism/webkit2gtk')
-rw-r--r--nonprism/webkit2gtk/PKGBUILD16
-rw-r--r--nonprism/webkit2gtk/icu59.patch38
2 files changed, 47 insertions, 7 deletions
diff --git a/nonprism/webkit2gtk/PKGBUILD b/nonprism/webkit2gtk/PKGBUILD
index 765fb4e4c..00bed4e58 100644
--- a/nonprism/webkit2gtk/PKGBUILD
+++ b/nonprism/webkit2gtk/PKGBUILD
@@ -1,11 +1,11 @@
# $Id: PKGBUILD 289009 2017-02-15 15:43:20Z jgc $
# Contributor (Arch): Eric Bélanger <eric@archlinux.org>
-# Maintainer: André Silva <emulatorman@parabola.nu>
+# Contributor: André Silva <emulatorman@riseup.net>
# Contributor: Luke R. <g4jc@openmailbox.org>
pkgname=webkit2gtk
-pkgver=2.14.5
-pkgrel=1.nonprism1
+pkgver=2.17.2
+pkgrel=2.nonprism1
pkgdesc="GTK+ Web content engine library, without geoclue2 support"
arch=(i686 x86_64)
url="https://webkitgtk.org/"
@@ -18,8 +18,9 @@ optdepends=('gtk2: Netscape plugin support'
'gst-plugins-good: media decoding'
'gst-libav: nonfree media decoding')
options=(!emptydirs)
-source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
-sha256sums=('3ca8f1c33a9b43d6c753dcac1c0788656930e06382b10fdf5c2805ea8f96369f'
+source=("https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz" #{,.sig}
+ 'icu59.patch')
+sha256sums=('7ad9d11fe247100f476fc70bc9e425306cf56aa97b399dce52964493a9c666e0'
'SKIP')
validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3')
@@ -29,7 +30,8 @@ prepare() {
cd webkitgtk-$pkgver
sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
rm -r Source/ThirdParty/gtest/
- rm -r Source/ThirdParty/qunit/
+ #rm -r Source/ThirdParty/qunit/
+ patch -Np1 -i ../icu59.patch
}
build() {
@@ -37,7 +39,7 @@ build() {
cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_INSTALL_DIR=/usr/lib -DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \
- -DUSE_GEOCLUE2=OFF -DENABLE_GEOLOCATION=OFF \
+ -DUSE_GEOCLUE2=OFF -DENABLE_GEOLOCATION=OFF \
-DENABLE_GTKDOC=ON -DPYTHON_EXECUTABLE=/usr/bin/python2 ../webkitgtk-$pkgver
if [[ "$CARCH" =~ ^arm*|^aarch64$ ]]; then
# strip -O3 from cmake generated makefiles
diff --git a/nonprism/webkit2gtk/icu59.patch b/nonprism/webkit2gtk/icu59.patch
new file mode 100644
index 000000000..1f4de2cbf
--- /dev/null
+++ b/nonprism/webkit2gtk/icu59.patch
@@ -0,0 +1,38 @@
+--- webkitgtk-2.17.2/Source/JavaScriptCore/API/JSStringRef.h.orig 2017-01-18 02:06:54.000000000 -0500
++++ webkitgtk-2.17.2/Source/JavaScriptCore/API/JSStringRef.h 2017-05-14 15:44:49.756359140 -0500
+@@ -32,6 +32,7 @@
+ #include <stdbool.h>
+ #endif
+ #include <stddef.h> /* for size_t */
++#include <uchar.h>
+
+ #ifdef __cplusplus
+ extern "C" {
+@@ -46,7 +47,7 @@
+ character. As with all scalar types, endianness depends on the underlying
+ architecture.
+ */
+- typedef unsigned short JSChar;
++ typedef char16_t JSChar;
+ #else
+ typedef wchar_t JSChar;
+ #endif
+--- webkitgtk-2.17.2/Source/WebKit2/Shared/API/c/WKString.h.orig 2016-09-16 04:56:48.000000000 -0500
++++ webkitgtk-2.17.2/Source/WebKit2/Shared/API/c/WKString.h 2017-05-14 15:47:03.846355158 -0500
+@@ -28,6 +28,7 @@
+
+ #include <WebKit/WKBase.h>
+ #include <stddef.h>
++#include <uchar.h>
+
+ #ifndef __cplusplus
+ #include <stdbool.h>
+@@ -39,7 +40,7 @@
+
+ #if !defined(WIN32) && !defined(_WIN32) \
+ && !((defined(__CC_ARM) || defined(__ARMCC__)) && !defined(__linux__)) /* RVCT */
+- typedef unsigned short WKChar;
++ typedef char16_t WKChar;
+ #else
+ typedef wchar_t WKChar;
+ #endif