summaryrefslogtreecommitdiffstats
path: root/accessibility/easystroke/easystroke.SlackBuild
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-02-03 22:39:44 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-02-05 07:02:20 +0700
commitf329a86965f82c2ed8f3e3549c0ece144d12629e (patch)
tree7194ec98bec48e7de567a08b1e12a792b1714d3f /accessibility/easystroke/easystroke.SlackBuild
parentc356bd4d77cd1673423e33fe3f282ef6310097b4 (diff)
downloadslackbuilds-f329a86965f82c2ed8f3e3549c0ece144d12629e.tar.gz
slackbuilds-f329a86965f82c2ed8f3e3549c0ece144d12629e.tar.xz
accessibility/easystroke: Fix build with newer GCC.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'accessibility/easystroke/easystroke.SlackBuild')
-rw-r--r--accessibility/easystroke/easystroke.SlackBuild11
1 files changed, 7 insertions, 4 deletions
diff --git a/accessibility/easystroke/easystroke.SlackBuild b/accessibility/easystroke/easystroke.SlackBuild
index 4c5a370d02..29b04e812b 100644
--- a/accessibility/easystroke/easystroke.SlackBuild
+++ b/accessibility/easystroke/easystroke.SlackBuild
@@ -47,16 +47,19 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Add StartupNotify to desktop menu item.
echo "StartupNotify=false" >> $PRGNAM.desktop.in
# Fix multithreading boost library in Makefile.
sed -i 's|-lboost_serialization-mt|-lboost_serialization|' Makefile
+# Thanks to ARCH Linux
+patch -p1 < $CWD/lambda.patch
+
make CXX="g++ $SLKCFLAGS" CC="gcc -std=c99 $SLKCFLAGS" PREFIX=/usr
# Determine if we compile manpages with help2man. Default is no.
@@ -68,7 +71,7 @@ fi
make install PREFIX=/usr DESTDIR=$PKG
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION