2013-06-07 18:32:13 +00:00
|
|
|
# $Id$
|
2013-04-24 19:11:36 +00:00
|
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2014-03-12 13:08:03 +00:00
|
|
|
# - use --disable-jit to solve segfaults
|
2014-06-07 22:54:47 +00:00
|
|
|
# - use --disable-gtk-doc to solve html docs breaking the build
|
2013-04-24 19:11:36 +00:00
|
|
|
|
2014-04-14 22:41:05 +00:00
|
|
|
pkgbase=webkitgtk
|
2014-03-03 23:32:37 +00:00
|
|
|
pkgname=(webkitgtk webkitgtk2)
|
2015-05-21 00:01:59 +00:00
|
|
|
pkgver=2.4.9
|
|
|
|
pkgrel=1
|
2013-06-07 18:32:13 +00:00
|
|
|
pkgdesc="GTK+ Web content engine library"
|
|
|
|
arch=(i686 x86_64)
|
2013-04-24 19:11:36 +00:00
|
|
|
url="http://webkitgtk.org/"
|
2013-06-07 18:32:13 +00:00
|
|
|
license=(custom)
|
2014-06-07 19:17:32 +00:00
|
|
|
depends=(libxt libxslt sqlite libsoup enchant libgl geoclue2 gst-plugins-base-libs
|
2013-06-12 20:57:10 +00:00
|
|
|
libsecret libwebp harfbuzz-icu)
|
2014-10-16 13:19:12 +00:00
|
|
|
makedepends=(gtk3 gtk2 gperf gobject-introspection python2 mesa ruby)
|
2014-04-14 21:07:45 +00:00
|
|
|
optdepends=('gst-plugins-base: free media decoding'
|
|
|
|
'gst-plugins-good: media decoding'
|
|
|
|
'gst-libav: nonfree media decoding')
|
2014-03-03 23:32:37 +00:00
|
|
|
options=(!emptydirs)
|
2015-05-21 00:01:59 +00:00
|
|
|
source=(http://webkitgtk.org/releases/$pkgbase-${pkgver}.tar.xz)
|
|
|
|
sha256sums=('afdf29e7828816cad0be2604cf19421e96d96bf493987328ffc8813bb20ac564')
|
2013-04-24 19:11:36 +00:00
|
|
|
|
2014-03-03 23:32:37 +00:00
|
|
|
prepare() {
|
2014-06-07 19:17:32 +00:00
|
|
|
mkdir build-gtk{,2} path
|
|
|
|
ln -s /usr/bin/python2 path/python
|
2014-03-03 23:32:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_build() (
|
|
|
|
_ver="$1"; shift
|
|
|
|
cd build-${_ver}
|
2013-10-18 01:38:43 +00:00
|
|
|
|
2015-05-21 00:01:59 +00:00
|
|
|
PATH="$srcdir/path:$PATH"
|
|
|
|
|
2014-03-03 23:32:37 +00:00
|
|
|
../$pkgbase-$pkgver/configure --prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/webkit${_ver} \
|
2014-10-16 13:19:12 +00:00
|
|
|
--enable-introspection \
|
|
|
|
--disable-jit \
|
|
|
|
--disable-webkit2 \
|
|
|
|
--disable-gtk-doc \
|
2014-03-12 13:08:03 +00:00
|
|
|
"$@"
|
2013-06-07 18:32:13 +00:00
|
|
|
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
|
|
sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
2013-04-24 19:11:36 +00:00
|
|
|
|
|
|
|
make all stamp-po
|
2014-03-03 23:32:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
build() {
|
2014-10-16 13:19:12 +00:00
|
|
|
_build gtk
|
|
|
|
_build gtk2 --with-gtk=2.0
|
2013-04-24 19:11:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-03 23:32:37 +00:00
|
|
|
package_webkitgtk() {
|
|
|
|
depends+=(gtk3)
|
2014-04-14 21:07:45 +00:00
|
|
|
optdepends+=('gtk2: Netscape plugin support')
|
2014-03-03 23:32:37 +00:00
|
|
|
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"
|
2013-04-24 19:11:36 +00:00
|
|
|
}
|