diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2014-01-06 21:50:21 +0800 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2014-01-06 21:50:21 +0800 |
commit | a19a5dda523f53944ee5358e0ff8658339e4fe44 (patch) | |
tree | 3498010d06ae0089c7dfb4cdcc1874bb934fec71 /games/flightgear | |
parent | b1b8c2a1fa449aafcef4d7ef1edd6e9c0b99bba7 (diff) | |
download | freebsd-ports-gnome-a19a5dda523f53944ee5358e0ff8658339e4fe44.tar.gz freebsd-ports-gnome-a19a5dda523f53944ee5358e0ff8658339e4fe44.tar.zst freebsd-ports-gnome-a19a5dda523f53944ee5358e0ff8658339e4fe44.zip |
Update Flightgear and Simgear ports to 2.12.1 (bugfix release)
Diffstat (limited to 'games/flightgear')
-rw-r--r-- | games/flightgear/Makefile | 4 | ||||
-rw-r--r-- | games/flightgear/distinfo | 4 | ||||
-rw-r--r-- | games/flightgear/files/patch-src-Main-bootstrap.cxx | 26 |
3 files changed, 4 insertions, 30 deletions
diff --git a/games/flightgear/Makefile b/games/flightgear/Makefile index df1a6fa5e85e..2e419a7cc426 100644 --- a/games/flightgear/Makefile +++ b/games/flightgear/Makefile @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= flightgear -PORTVERSION= 2.12.0 +PORTVERSION= 2.12.1 CATEGORIES= games # see http://www.flightgear.org/templates.js -MASTER_SITES= http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/ \ +MASTER_SITES= http://mirrors.ibiblio.org/flightgear/ftp/Source/ \ http://ftp.linux.kiev.ua/pub/mirrors/ftp.flightgear.org/flightgear/Source/ \ ftp://ftp.kingmont.com/flightsims/flightgear/Source/ \ ftp://ftp.de.flightgear.org/pub/fgfs/Source/ \ diff --git a/games/flightgear/distinfo b/games/flightgear/distinfo index b2f8ae7e0751..bc0358b63161 100644 --- a/games/flightgear/distinfo +++ b/games/flightgear/distinfo @@ -1,2 +1,2 @@ -SHA256 (flightgear-2.12.0.tar.bz2) = 84499d1b2a6c3c801a3c163f4f40d1f55b5fbcd4b65259fc5e5d5aa12e513341 -SIZE (flightgear-2.12.0.tar.bz2) = 3424463 +SHA256 (flightgear-2.12.1.tar.bz2) = bcc7478825c435bad1c93318c91d6a38d75d802bfbec4a3d2580e09b665240f2 +SIZE (flightgear-2.12.1.tar.bz2) = 3423670 diff --git a/games/flightgear/files/patch-src-Main-bootstrap.cxx b/games/flightgear/files/patch-src-Main-bootstrap.cxx deleted file mode 100644 index d403099f0d09..000000000000 --- a/games/flightgear/files/patch-src-Main-bootstrap.cxx +++ /dev/null @@ -1,26 +0,0 @@ -Backport of patch 78f2f2f, -fixes issue #1231 - ---- src/Main/bootstrap.cxx.orig -+++ src/Main/bootstrap.cxx -@@ -236,6 +236,11 @@ int main ( int argc, char **argv ) - // FIXME: add other, more specific - // exceptions. - try { -+ // http://code.google.com/p/flightgear-bugs/issues/detail?id=1231 -+ // ensure sglog is inited before atexit() is registered, so logging -+ // is possible inside fgExitCleanup -+ sglog(); -+ - std::set_terminate(fg_terminate); - atexit(fgExitCleanup); - if (fgviewer) -@@ -277,6 +282,8 @@ void fgExitCleanup() { - if (_bootstrap_OSInit != 0) - fgSetMouseCursor(MOUSE_CURSOR_POINTER); - -+ // on the common exit path globals is already deleted, and NULL, -+ // so this only happens on error paths. - delete globals; - } - |