diff options
Diffstat (limited to 'libraries/libva-intel-driver/libva-intel-driver.SlackBuild')
-rw-r--r-- | libraries/libva-intel-driver/libva-intel-driver.SlackBuild | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/libraries/libva-intel-driver/libva-intel-driver.SlackBuild b/libraries/libva-intel-driver/libva-intel-driver.SlackBuild index 649c6b51a4..5b87c9f2d8 100644 --- a/libraries/libva-intel-driver/libva-intel-driver.SlackBuild +++ b/libraries/libva-intel-driver/libva-intel-driver.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for libva-intel-driver -# Copyright 2015 Eugene M. <damagedone at gmx dot com> +# Copyright 2015 Eugene M., <damagedone at gmx dot com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libva-intel-driver -VERSION=${VERSION:-1.5.0} +VERSION=${VERSION:-1.6.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -69,6 +69,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +autoreconf -fi + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -76,11 +78,10 @@ CXXFLAGS="$SLKCFLAGS" \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ - --disable-wayland \ - --enable-drm \ - --enable-X11 \ - --disable-static \ + --enable-wayland=no \ + --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ --build=$ARCH-slackware-linux make @@ -89,11 +90,6 @@ make install DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -find $PKG -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING NEWS README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |