diff options
author | Kyle Guinn <elyk03@gmail.com> | 2013-11-15 07:26:31 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-14 23:00:13 -0600 |
commit | a23950a58c6382a243aeb3d0312c971e9014cf72 (patch) | |
tree | 6c2c7e4f0bbf8121fcd34db3541b0d2bada20b1c /multimedia/gnash/gnash.SlackBuild | |
parent | b7448da42aca8d402b2332451bd61a55773240d0 (diff) | |
download | slackbuilds-a23950a58c6382a243aeb3d0312c971e9014cf72.tar.gz |
multimedia/gnash: Fix a linking error
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'multimedia/gnash/gnash.SlackBuild')
-rw-r--r-- | multimedia/gnash/gnash.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/multimedia/gnash/gnash.SlackBuild b/multimedia/gnash/gnash.SlackBuild index 679769f480..a6dc531744 100644 --- a/multimedia/gnash/gnash.SlackBuild +++ b/multimedia/gnash/gnash.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for gnash -# Copyright 2012 Kyle Guinn <elyk03@gmail.com>, USA +# Copyright 2012-2013 Kyle Guinn <elyk03@gmail.com>, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ PRGNAM=gnash VERSION=${VERSION:-0.8.10} -BUILD=${BUILD:-4} +BUILD=${BUILD:-5} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -78,13 +78,14 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 cd $PRGNAM-$VERSION chown -R root:root . -chmod -R u+w,go+r-w,a-st . +chmod -R u+w,go-w,a+rX-st . # Fix compilation with GCC 4.7. patch -p1 < $CWD/patch/gcc47.patch -# Fix paths for kde plugin and a cve patch. +# Fix a boost linking error, paths for kde plugin, and a cve patch. # Ripped from gentoo +patch -p1 < $CWD/patch/gnash-0.8.10-boost-1.50.patch patch -p1 < $CWD/patch/gnash-0.8.10-klash.patch patch -p1 < $CWD/patch/gnash-0.8.10-kde4-libdir.patch patch -p1 < $CWD/patch/gnash-0.8.10-cve-2012-1175.patch |