diff options
Diffstat (limited to 'source/xap/xsane/xsane.SlackBuild')
-rwxr-xr-x | source/xap/xsane/xsane.SlackBuild | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/source/xap/xsane/xsane.SlackBuild b/source/xap/xsane/xsane.SlackBuild index 991cea30..a7617a32 100755 --- a/source/xap/xsane/xsane.SlackBuild +++ b/source/xap/xsane/xsane.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009, 2011 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2011, 2015 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,8 +21,8 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=0.998 -BUILD=${BUILD:-3} +VERSION=0.999 +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -63,6 +63,27 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +zcat $CWD/xsane-0.995-xdg-open.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.995-close-fds.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.996-no-eula.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.997-off-root-build.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-no-file-selected.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.997-ipv6.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.998-preview-selection.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.998-libpng.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.998-wmclass.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.998-desktop-file.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-man-page.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-pdf-no-high-bpp.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-lcms2.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-coverity.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-snprintf-update.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-signal-handling.patch.gz | patch -p1 --verbose || exit 1 +zcat $CWD/xsane-0.999-7-autoconf.patch.gz | patch -p1 --verbose || exit 1 + +# This isn't working :/ +#autoreconf -fiv + CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |