diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-06-01 21:28:10 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-06-02 12:41:13 +0200 |
commit | 49c42264db93dbcfad7b9c15f7cb731627cc4ebc (patch) | |
tree | 9f4bbeb53f936de5228d333cfb3b8b98064304a7 /extra/source | |
parent | 8c9271e25c83e23cce857e3d79b47280b88a5ec4 (diff) | |
download | current-49c42264db93dbcfad7b9c15f7cb731627cc4ebc.tar.gz current-49c42264db93dbcfad7b9c15f7cb731627cc4ebc.tar.xz |
Fri Jun 1 21:28:10 UTC 201820180601212810
a/mcelog-158-x86_64-1.txz: Upgraded.
a/pkgtools-15.0-noarch-15.txz: Rebuilt.
installpkg, upgradepkg: test tty -s before using tput. Thanks to aaazen.
d/cmake-3.11.3-x86_64-1.txz: Upgraded.
l/imagemagick-6.9.9_49-x86_64-1.txz: Upgraded.
Support OpenMP. This had been disabled years ago due to issues with perl
modules, but probably that's been fixed by now. Thanks to olear.
l/pygobject3-3.28.3-x86_64-1.txz: Upgraded.
x/xf86-input-evdev-2.10.6-x86_64-1.txz: Upgraded.
x/xf86-input-synaptics-1.9.1-x86_64-1.txz: Upgraded.
xap/fvwm-2.6.8-x86_64-1.txz: Upgraded.
extra/xf86-video-fbdev/xf86-video-fbdev-0.5.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'extra/source')
-rwxr-xr-x | extra/source/xf86-video-fbdev/xf86-video-fbdev.SlackBuild | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/extra/source/xf86-video-fbdev/xf86-video-fbdev.SlackBuild b/extra/source/xf86-video-fbdev/xf86-video-fbdev.SlackBuild index bb966a889..3e1aac9b1 100755 --- a/extra/source/xf86-video-fbdev/xf86-video-fbdev.SlackBuild +++ b/extra/source/xf86-video-fbdev/xf86-video-fbdev.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2012, 2013 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2012, 2013, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ PKGNAM=xf86-video-fbdev VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-4} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -71,15 +71,7 @@ mkdir -p $TMP $PKG cd $TMP rm -rf $PKGNAM-$VERSION tar xvf $CWD/$PKGNAM-$VERSION.tar.?z* || exit 1 -cd $PKGNAM-$VERSION - -# Remove obsolete references to mibstore.h and miInitializeBackingStore(): -grep -r -l '#include "mibstore.h"' * | while read file ; do - sed -i "s/#include \"mibstore.h\"//g" $file -done -grep -r -l 'miInitializeBackingStore(pScreen);' | while read file ; do - sed -i "s/miInitializeBackingStore(pScreen);//g" $file -done +cd $PKGNAM-$VERSION || exit 1 chown -R root:root . find . \ @@ -99,7 +91,7 @@ CFLAGS=$SLKCFLAGS \ --mandir=/usr/man \ --docdir=/usr/doc/xf86-video-fbdev-$VERSION \ --disable-static \ - --build=$ARCH-slackware-linux + --build=$ARCH-slackware-linux || exit 1 # Build and install: make $NUMJOBS || make || exit 1 |