#Packager: George Vlahavas #Previous packager: Christian Dersch pkgname=webkit pkgver=1.8.3 pkgrel=3gv source=("http://webkitgtk.org/releases/webkit-$pkgver.tar.xz" "02_notebook_scroll.patch" "12_large-mem-page.patch" "13_thread-safe-icon-db.patch" "14_ia64-wide-ptr.patch" "15_ia64-use-system-malloc.patch") url=http://www.webkit.org docs=("ChangeLog" "INSTALL" "LICENSE" "README") slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "WebKit (Web Browser Engine)" "WebKit is an open source web browser engine. WebKit is also the name" "of the Mac OS X system framework version of the engine that's used by" "Safari, Dashboard, Mail, and many other OS X applications. WebKit's" "HTML and JavaScript code began as a branch of the KHTML and KJS" "libraries from KDE. " "This package contains the GTK port of WebKit." "" "http://webkit.org http://webkitgtk.org" ) build() { cd $startdir/src/webkit-$pkgver patch -p1 < $startdir/src/02_notebook_scroll.patch || exit 1 patch -p1 < $startdir/src/12_large-mem-page.patch || exit 1 patch -p1 < $startdir/src/13_thread-safe-icon-db.patch || exit 1 patch -p1 < $startdir/src/14_ia64-wide-ptr.patch || exit 1 patch -p1 < $startdir/src/15_ia64-use-system-malloc.patch || exit 1 ./configure --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --disable-static \ --enable-database \ --enable-icon-database \ --enable-video \ --enable-svg \ --disable-geolocation \ --disable-gtk-doc \ --disable-gtk-doc-html \ --disable-gtk-doc-pdf \ --with-gtk=2.0 \ --build=$arch-slackware-linux || return 1 make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg }