From 625f87d37aebd1fd1963bbb7a261a17d2cb262d4 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 21 Mar 2022 11:56:27 -0400 Subject: games/d2x-rebirth: Fix 32-bit build. Signed-off-by: B. Watson Signed-off-by: Willy Sudiarto Raharjo --- games/d2x-rebirth/d2x-rebirth.SlackBuild | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'games/d2x-rebirth') diff --git a/games/d2x-rebirth/d2x-rebirth.SlackBuild b/games/d2x-rebirth/d2x-rebirth.SlackBuild index cc460c2ab6..0cafd4fd74 100644 --- a/games/d2x-rebirth/d2x-rebirth.SlackBuild +++ b/games/d2x-rebirth/d2x-rebirth.SlackBuild @@ -23,6 +23,10 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220321 bkw: Modified by SlackBuilds.org: fix 32-bit build. +# TODO: the executable needs to go in /usr/games, and the .desktop +# needs absolute paths to the icon and executable. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=d2x-rebirth @@ -40,9 +44,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -77,9 +78,15 @@ cd $SRCNAM-$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 \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ + +# 20220321 bkw: I hate scons, and I hate people who use -Werror and +# don't give a sane way to disable it. I especially hate them if they +# write code that triggers warnings... 32-bit builds were failing +# because of this. +sed -i -e "s,'-W','-Wno-'," -e "s,'-Werror=','-Wno-error='," SConstruct # 'sharepath' is for the game-content data files, they can # also perhaps more conveniently go in ~/.d2x-rebirth... -- cgit v1.2.3