diff options
Diffstat (limited to 'games/megaglest/megaglest.SlackBuild')
-rw-r--r-- | games/megaglest/megaglest.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/games/megaglest/megaglest.SlackBuild b/games/megaglest/megaglest.SlackBuild index 6501b9b28e..0bb57a7de9 100644 --- a/games/megaglest/megaglest.SlackBuild +++ b/games/megaglest/megaglest.SlackBuild @@ -5,8 +5,8 @@ # Written by Larry Hajali <larryhaj[at]gmail[dot]com> PRGNAM=megaglest -VERSION=${VERSION:-3.6.0.3} -BUILD=${BUILD:-2} +VERSION=${VERSION:-3.7.1} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -62,8 +62,11 @@ find . \ sed -i "/^const string glestVersionString/ s|=.*|= \"v${VERSION}\";|" \ source/glest_game/facilities/game_util.cpp -# From upstream. Fixes gcc 4.7.x compile issues. -patch -p1 < $CWD/gcc-4.7.patch +# Fix megaglest help2man when no X display is available. Use a wrapper +# script from upstream for Xvfb that create a temporary *fake* framebuffer +install -m 0755 -D $CWD/xvfb-run $TMP/$SRCDIR/bin/xvfb-run +export PATH="$PATH:$TMP/$SRCDIR/bin" +patch -p1 < $CWD/megaglest-3.6.0.2-help2man.patch mkdir build cd build |