From 6b99009272d01ed915a4c34900af0af62ebb1d55 Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Fri, 19 Jan 2018 15:04:57 +0100 Subject: nonprism/webkit2gtk: updated to 2.18.5 --- nonprism/webkit2gtk/PKGBUILD | 61 ++++++++++++++++++++++---------------------- 1 file changed, 31 insertions(+), 30 deletions(-) (limited to 'nonprism') diff --git a/nonprism/webkit2gtk/PKGBUILD b/nonprism/webkit2gtk/PKGBUILD index 0b26b3777..222c7690d 100644 --- a/nonprism/webkit2gtk/PKGBUILD +++ b/nonprism/webkit2gtk/PKGBUILD @@ -1,55 +1,54 @@ -# Maintainer: Andreas Grapentin +# $Id$ # Contributor (Arch): Eric Bélanger +# Contributor: Andreas Grapentin # Contributor: Jesús E. # Contributor: André Silva # Contributor: Luke R. -pkgname=webkit2gtk - -pkgver=2.18.3 -pkgrel=3.nonprism2 -arch=(i686 x86_64 armv7h) +# parabola changes and rationale: +# - remove geoclue2 support +pkgname=webkit2gtk +pkgver=2.18.5 +pkgrel=1.nonprism1 pkgdesc="GTK+ Web content engine library, without geoclue2 support" +arch=(x86_64 i686 armv7h) url="https://webkitgtk.org/" license=(custom) - -depends=(libxt libxslt enchant libsoup gst-plugins-base-libs gst-plugins-bad +depends=(libxt libxslt enchant gst-plugins-base-libs gst-plugins-bad libsecret libwebp harfbuzz-icu gtk3 libnotify hyphen) makedepends=(gtk2 gperf gobject-introspection ruby gtk-doc cmake python python2 ninja) optdepends=('gtk2: Netscape plugin support' 'gst-plugins-base: free media decoding' 'gst-plugins-good: media decoding' 'gst-libav: nonfree media decoding') -options=(!emptydirs) - -source=("https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz"{,.asc}) -sha256sums=('e15420e1616a6f70f321541d467af5ca285bff66b1e0fa68a01df3ccf1b18f9e' +source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc}) +sha256sums=('0c6d80cc7eb5d32f8063041fa11a1a6f17a29765c2f69c6bc862cd47c2d539b8' 'SKIP') validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3') prepare() { mkdir build cd webkitgtk-$pkgver - sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc rm -r Source/ThirdParty/gtest/ } build() { cd build - # temporarily disabling GTKDOC build, it breaks compilation on x86_64 - cmake -G Ninja -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 \ - -DENABLE_GTKDOC=OFF -DPYTHON_EXECUTABLE=/usr/bin/python2 ../webkitgtk-$pkgver - - if [[ "$CARCH" =~ ^arm*|^aarch64$ ]]; then - # strip -O3 from cmake generated makefiles - find ./ -type f -exec sed -i -e 's/-O3//g' {} \; - fi - + cmake \ + -G Ninja \ + -DPORT=GTK \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_SKIP_RPATH=ON \ + -DENABLE_GTKDOC=ON \ + -DLIBEXEC_INSTALL_DIR=/usr/lib \ + -DLIB_INSTALL_DIR=/usr/lib \ + -DPYTHON_EXECUTABLE=/usr/bin/python2 \ + -DUSE_GEOCLUE2=OFF \ + -DENABLE_GEOLOCATION=OFF \ + ../webkitgtk-$pkgver ninja } @@ -57,9 +56,11 @@ package() { cd build DESTDIR="$pkgdir" ninja install - cd ../webkitgtk-$pkgver/Source - while IFS= read -d $'\0' -r _f; do - echo "### $_f ###"; cat "$_f"; echo - done < <(find . -name 'COPYING*' -or -name 'LICENSE*' -print0) \ - | install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + cd ../webkitgtk-$pkgver + find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | while IFS= read -d $'\0' -r _f + do + echo "### $_f ###" + cat "$_f" + echo + done | install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } -- cgit v1.2.3