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 /source/xap | |
parent | 8c9271e25c83e23cce857e3d79b47280b88a5ec4 (diff) | |
download | current-49c42264db93dbcfad7b9c15f7cb731627cc4ebc.tar.gz |
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 'source/xap')
-rw-r--r-- | source/xap/fvwm/fvwm-2.6.7-symlink-fix.patch | 15 | ||||
-rwxr-xr-x | source/xap/fvwm/fvwm.SlackBuild | 11 |
2 files changed, 3 insertions, 23 deletions
diff --git a/source/xap/fvwm/fvwm-2.6.7-symlink-fix.patch b/source/xap/fvwm/fvwm-2.6.7-symlink-fix.patch deleted file mode 100644 index 89f02f34..00000000 --- a/source/xap/fvwm/fvwm-2.6.7-symlink-fix.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/default-config/Makefile.am 2017-01-20 22:30:43.356970266 +0000 -+++ b/default-config/Makefile.am 2017-01-20 22:49:56.060484603 +0000 -@@ -17,9 +17,9 @@ - - install-data-hook: - cp -r $(srcdir)/images $(inst_location) -- ln -sf $(inst_location)/FvwmScript-DateTime $(inst_location)/.. -- ln -sf $(inst_location)/FvwmScript-ConfirmQuit $(inst_location)/.. -- ln -sf $(inst_location)/FvwmScript-ConfirmCopyConfig $(inst_location)/.. -+ ln -sf default-config/FvwmScript-DateTime $(inst_location)/.. -+ ln -sf default-config/FvwmScript-ConfirmQuit $(inst_location)/.. -+ ln -sf default-config/FvwmScript-ConfirmCopyConfig $(inst_location)/.. - - uninstall-hook: - rm -fr $(DESTDIR)/$(configdir) diff --git a/source/xap/fvwm/fvwm.SlackBuild b/source/xap/fvwm/fvwm.SlackBuild index c2696016..2facd4d9 100755 --- a/source/xap/fvwm/fvwm.SlackBuild +++ b/source/xap/fvwm/fvwm.SlackBuild @@ -23,8 +23,8 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=fvwm -VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-4} +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -68,7 +68,7 @@ mkdir -p $TMP $PKG cd $TMP rm -rf $PKGNAM-$VERSION -tar xvf $CWD/$PKGNAM-$VERSION.tar.?z* || exit 1 +tar xvf $CWD/$PKGNAM-$VERSION.tar.?z || exit 1 cd $PKGNAM-$VERSION || exit 1 chown -R root:root . find . \ @@ -77,11 +77,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Fix broken symlinks: -zcat $CWD/fvwm-2.6.7-symlink-fix.patch.gz | patch -p1 --verbose || exit 1 - -autoreconf -vif - CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |