summaryrefslogtreecommitdiffstats
path: root/network/netsurf/netsurf.SlackBuild
diff options
context:
space:
mode:
author Ruben Schuller <ruben at orgizm.net>2014-01-25 14:26:02 +0700
committer Erik Hanson <erik@slackbuilds.org>2014-01-29 23:21:14 -0600
commit13d34e87f41914b9ccaba271b52c707a4f81002e (patch)
tree2cd0372fecb62f41234d645de0c55372f39aa0be /network/netsurf/netsurf.SlackBuild
parent0576cbccaf01b582c9636069849a597fe118e708 (diff)
downloadslackbuilds-13d34e87f41914b9ccaba271b52c707a4f81002e.tar.gz
slackbuilds-13d34e87f41914b9ccaba271b52c707a4f81002e.tar.xz
network/netsurf: Added patch for scroll.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/netsurf/netsurf.SlackBuild')
-rw-r--r--network/netsurf/netsurf.SlackBuild14
1 files changed, 12 insertions, 2 deletions
diff --git a/network/netsurf/netsurf.SlackBuild b/network/netsurf/netsurf.SlackBuild
index 5658e8ee5e..d1c87b73b6 100644
--- a/network/netsurf/netsurf.SlackBuild
+++ b/network/netsurf/netsurf.SlackBuild
@@ -24,8 +24,9 @@
PRGNAM=netsurf
VERSION=${VERSION:-3.0}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
+JAVASCRIPT=${JAVASCRIPT:-YES}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -74,7 +75,16 @@ find -L . \
patch -d src/nsgenbind-0.0.1/src < $CWD/nsgenbind-lexer.l.patch
patch -d src/nsgenbind-0.0.1/src < $CWD/webidl-lexer.l.patch
-make install DESTDIR=$PKG PREFIX=/usr
+# Scroll patch so it changes 30 lines a time instead of one
+# thanks to Sabotage-Linux@git
+# https://github.com/sabotage-linux/sabotage/blob/master/KEEP/netsurf-3.0-scrollspeed.patch
+patch -d src/netsurf-3.0/gtk/res/ < $CWD/scroll.patch
+
+if [ "$JAVASCRIPT" == "YES" ]; then
+ PATH="$(pwd)/src/nsgenbind-0.0.1/build-Linux-gtk-release-binary":$PATH make install DESTDIR=$PKG PREFIX=/usr NETSURF_USE_MOZJS=YES
+else
+ make install DESTDIR=$PKG PREFIX=/usr
+fi
mkdir $PKG/usr/share/pixmaps
cp src/netsurf-3.0/gtk/res/netsurf.png $PKG/usr/share/pixmaps