# $Id: PKGBUILD 185357 2013-05-13 17:34:56Z heftig $ # Maintainer: Andreas Radke pkgbase=webkitgtk pkgname=('webkitgtk3') pkgver=2.0.2 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url="http://webkitgtk.org/" license=('custom') makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 'gtk2' 'gtk3' 'gst-plugins-base-libs' 'gperf' 'gobject-introspection' 'python' 'mesa' 'ruby' 'gtk-doc' 'libsecret' 'libwebp') options=('!libtool' '!emptydirs') source=(http://webkitgtk.org/releases/$pkgbase-$pkgver.tar.xz 0001-https-bugs.webkit.org-show_bug.cgi-id-112141.patch) sha256sums=('c3685032545eb4c23f3f56826817783a6963ad59bd7bbf806705059b3d8caeb2' '7b4c1419342bafcca642d7a41abe92713810401591906b081fe476169cb9a3aa') prepare() { cd $pkgbase-$pkgver mkdir build-gtk3 if [ "$CARCH" = "mips64el" ]; then # Fix MIPS N32 support. sed -i 's/defined(_ABIO32)/(defined(_ABIO32) || defined(_ABIN32))/' \ Source/WTF/wtf/Platform.h # Don't enable JIT even if configure finds that it's not supported. sed -i 's/#define ENABLE_JIT 1/#define ENABLE_JIT 0/' \ Source/WTF/wtf/Platform.h fi # Fix build on 32-bit platforms. patch -p1 -i "$srcdir/0001-https-bugs.webkit.org-show_bug.cgi-id-112141.patch" # Won't be made before files there. mkdir -p build-gtk3/Programs/resources } build() { cd $pkgbase-$pkgver/build-gtk3 if [ "$CARCH" = "mips64el" ]; then # Optimizations make it segfault when running; without # -mlong-calls R_MIPS_26 relocations will be used and truncated. # Disable unneeded arch-specific warnings. export CPPFLAGS="${CPPFLAGS/-D_FORTIFY_SOURCE=[0-9]} -Wno-cast-align" export CFLAGS="${CFLAGS/-O[0-9]} -mlong-calls" export CXXFLAGS="${CXXFLAGS/-O[0-9]} -mlong-calls" extra="--disable-fast-malloc --disable-optimizations" fi ../configure --prefix=/usr --libexecdir=/usr/lib/webkitgtk3 --enable-introspection $extra make all stamp-po } package_webkitgtk3() { pkgdesc="GTK+ Web content engine library for GTK+ 3.0" depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 'gtk3' 'gst-plugins-base-libs' 'libsecret' 'libwebp') conflicts=('libwebkit3') provides=("libwebkit3=${pkgver}") replaces=('libwebkit3') optdepends=('gtk2: Webkit2 plugin support') cd $pkgbase-$pkgver/build-gtk3 make -j1 DESTDIR="$pkgdir" install install -Dm644 ../Source/WebKit/LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" }