summaryrefslogtreecommitdiffstats
path: root/system/rxvt-unicode/rxvt-unicode.SlackBuild
diff options
context:
space:
mode:
author Daniel LEVAI <leva@ecentrum.hu>2010-12-29 15:14:40 +0000
committer Robby Workman <rworkman@slackbuilds.org>2010-12-31 19:00:12 -0600
commitd8004a7324275a7adc06f94f62caa43280245ef9 (patch)
tree34d63b5843b1e2efca6cd5bb4c3602db17906057 /system/rxvt-unicode/rxvt-unicode.SlackBuild
parentad409b7053bd0eaa51e9a1826a533589864768dc (diff)
downloadslackbuilds-d8004a7324275a7adc06f94f62caa43280245ef9.tar.gz
slackbuilds-d8004a7324275a7adc06f94f62caa43280245ef9.tar.xz
system/rxvt-unicode: Updated with various script improvements.
Signed-off-by: Michiel van Wessem <michiel@slackbuilds.org>
Diffstat (limited to 'system/rxvt-unicode/rxvt-unicode.SlackBuild')
-rw-r--r--system/rxvt-unicode/rxvt-unicode.SlackBuild18
1 files changed, 13 insertions, 5 deletions
diff --git a/system/rxvt-unicode/rxvt-unicode.SlackBuild b/system/rxvt-unicode/rxvt-unicode.SlackBuild
index 3714d22bfc..9225a8c3cd 100644
--- a/system/rxvt-unicode/rxvt-unicode.SlackBuild
+++ b/system/rxvt-unicode/rxvt-unicode.SlackBuild
@@ -26,7 +26,7 @@
PRGNAM=rxvt-unicode
VERSION="9.10"
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -69,7 +69,15 @@ cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
-# Changing to --disable-perl will provide a much lighter package
+# Option to enable/disable the embedded perl interpreter
+CONFIG_PERL=${CONFIG_PERL:-YES}
+
+if [ "${CONFIG_PERL}" == 'YES' ];then
+ CONFIG_PERL='--enable-perl'
+else
+ CONFIG_PERL='--disable-perl'
+fi
+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
@@ -79,7 +87,6 @@ CXXFLAGS="$SLKCFLAGS" \
--localstatedir=/var \
--mandir=/usr/man \
--enable-everything \
- --enable-frills \
--enable-unicode3 \
--enable-combining \
--enable-xft \
@@ -87,11 +94,12 @@ CXXFLAGS="$SLKCFLAGS" \
--enable-transparency \
--enable-fading \
--enable-frills \
- --enable-afterimage \
+ --disable-afterimage \
+ --enable-pixbuf \
--enable-rxvt-scroll \
--enable-next-scroll \
--enable-xterm-scroll \
- --enable-perl \
+ ${CONFIG_PERL} \
--enable-xim \
--enable-iso14755 \
--enable-keepscrolling \