mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
88 lines
2.5 KiB
Bash
88 lines
2.5 KiB
Bash
# $Id$
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - use --disable-jit to solve segfaults
|
|
# - use --disable-gtk-doc to solve html docs breaking the build
|
|
|
|
pkgbase=webkitgtk
|
|
pkgname=(webkitgtk webkitgtk2)
|
|
pkgver=2.4.8
|
|
pkgrel=1
|
|
pkgdesc="GTK+ Web content engine library"
|
|
arch=(i686 x86_64)
|
|
url="http://webkitgtk.org/"
|
|
license=(custom)
|
|
depends=(libxt libxslt sqlite libsoup enchant libgl geoclue2 gst-plugins-base-libs
|
|
libsecret libwebp harfbuzz-icu)
|
|
makedepends=(gtk3 gtk2 gperf gobject-introspection python2 mesa ruby)
|
|
optdepends=('gst-plugins-base: free media decoding'
|
|
'gst-plugins-good: media decoding'
|
|
'gst-libav: nonfree media decoding')
|
|
options=(!emptydirs)
|
|
source=(http://webkitgtk.org/releases/$pkgbase-${pkgver}.tar.xz
|
|
fix-pretty-quotes.patch bug140241.patch)
|
|
sha256sums=('68f11559cb178679ca92acc9e3a3d7febede7acb7b98afd7fb761875bbc6bd23'
|
|
'56316228bbbf0b7ebcbe210a35120f4e72cb9c1b680dd82cc2bde0f4549245e6'
|
|
'a08d43d45e9c226197d4bc4257a416bcb3507bebd2d9c9e8554d1002ddbbe537')
|
|
|
|
prepare() {
|
|
mkdir build-gtk{,2} path
|
|
|
|
ln -s /usr/bin/python2 path/python
|
|
|
|
cd $pkgbase-$pkgver
|
|
patch -Np0 -i ../fix-pretty-quotes.patch
|
|
|
|
# Fix build bug; https://bugs.webkit.org/show_bug.cgi?id=140241 patch v3
|
|
patch -Np1 -i ../bug140241.patch
|
|
}
|
|
|
|
_build() (
|
|
_ver="$1"; shift
|
|
cd build-${_ver}
|
|
|
|
../$pkgbase-$pkgver/configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/webkit${_ver} \
|
|
--enable-introspection \
|
|
--disable-jit \
|
|
--disable-webkit2 \
|
|
--disable-gtk-doc \
|
|
"$@"
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make all stamp-po
|
|
)
|
|
|
|
build() {
|
|
PATH="$srcdir/path:$PATH"
|
|
|
|
_build gtk
|
|
_build gtk2 --with-gtk=2.0
|
|
}
|
|
|
|
package_webkitgtk() {
|
|
depends+=(gtk3)
|
|
optdepends+=('gtk2: Netscape plugin support')
|
|
provides=("webkitgtk3=${pkgver}" "libwebkit3=${pkgver}")
|
|
conflicts=(webkitgtk3 libwebkit3)
|
|
replaces=(webkitgtk3 libwebkit3)
|
|
|
|
make -C build-gtk -j1 DESTDIR="$pkgdir" install
|
|
install -Dm644 $pkgbase-$pkgver/Source/WebKit/LICENSE \
|
|
"$pkgdir/usr/share/licenses/webkitgtk/LICENSE"
|
|
}
|
|
|
|
package_webkitgtk2() {
|
|
pkgdesc+=" for GTK2"
|
|
depends+=(gtk2)
|
|
provides=("libwebkit=${pkgver}")
|
|
conflicts=(libwebkit)
|
|
replaces=(libwebkit)
|
|
|
|
make -C build-gtk2 -j1 DESTDIR="$pkgdir" install
|
|
install -Dm644 $pkgbase-$pkgver/Source/WebKit/LICENSE \
|
|
"$pkgdir/usr/share/licenses/webkitgtk2/LICENSE"
|
|
}
|