diff options
Diffstat (limited to 'games/FlightGear/FlightGear.SlackBuild')
-rw-r--r-- | games/FlightGear/FlightGear.SlackBuild | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/games/FlightGear/FlightGear.SlackBuild b/games/FlightGear/FlightGear.SlackBuild index 52b041b65d3d..a0cc30ea4dc3 100644 --- a/games/FlightGear/FlightGear.SlackBuild +++ b/games/FlightGear/FlightGear.SlackBuild @@ -3,6 +3,8 @@ # Copyright before version 2016.3.1 by Diego Pantano <poplin.dp@gmail.com> # Copyright 2016-2018 Panagiotis Nikolaou, Culver City, CA +# Copyright 2019, 2020 Lenard Spencer, Orlando, Florida, USA + # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +26,7 @@ PRGNAM=FlightGear SRCNAM=flightgear -VERSION=${VERSION:-2018.3.5} +VERSION=${VERSION:-2020.1.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -77,13 +79,18 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# patch for the new boost (Thanks Gentoo) +if [ "${CURRENT:-no}" = "yes" ]; then + patch -p1 < $CWD/FlightGear-version.patch +fi + mkdir -p build cd build cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_C_FLAGS="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DEVENT_INPUT:STRING="ON" \ + -DEVENT_INPUT="ON" \ -DFG_DATA_DIR=/usr/share/${PRGNAM} \ $OPT \ -DCMAKE_BUILD_TYPE=Release .. |