diff options
Diffstat (limited to 'system/rxvt-unicode/rxvt-unicode.SlackBuild')
-rw-r--r-- | system/rxvt-unicode/rxvt-unicode.SlackBuild | 18 |
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 \ |