diff options
author | drochner <drochner@pkgsrc.org> | 2008-03-14 14:49:53 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2008-03-14 14:49:53 +0000 |
commit | e124bc9ab4c79859ce03ae5a739fcb3b9815097d (patch) | |
tree | 0e300aa5cb6e918a22eeec35d4b250d5f911dd0b /games/flightgear | |
parent | 4528d35cc971db4e9d54466d222970651c87c3ab (diff) | |
download | pkgsrc-e124bc9ab4c79859ce03ae5a739fcb3b9815097d.tar.gz |
update flightgear/simgear to 1.0.0, from Yorick Hardy per PR pkg/38160
changes:
-many bugfixes
-UI improvements
-new and improved aircraft models
pkgsrc change: pull in SDL for fullscreen mode
Diffstat (limited to 'games/flightgear')
-rw-r--r-- | games/flightgear/Makefile | 7 | ||||
-rw-r--r-- | games/flightgear/distinfo | 9 | ||||
-rw-r--r-- | games/flightgear/patches/patch-aa | 22 |
3 files changed, 32 insertions, 6 deletions
diff --git a/games/flightgear/Makefile b/games/flightgear/Makefile index cb77870dc14..81cd3278491 100644 --- a/games/flightgear/Makefile +++ b/games/flightgear/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2007/07/12 20:01:40 drochner Exp $ +# $NetBSD: Makefile,v 1.2 2008/03/14 14:49:53 drochner Exp $ # -DISTNAME= FlightGear-0.9.10 +DISTNAME= FlightGear-1.0.0 PKGNAME= ${DISTNAME:S/FlightGear/flightgear/} CATEGORIES= games MASTER_SITES= ftp://ftp.flightgear.org/pub/fgfs/Source/ \ @@ -20,9 +20,12 @@ GNU_CONFIGURE= yes USE_LANGUAGES+= c c++ CONFIGURE_ARGS+= --with-threads +CONFIGURE_ARGS+= --enable-sdl +CFLAGS!= sdl-config --cflags .include "../../audio/openal/buildlink3.mk" .include "../../audio/freealut/buildlink3.mk" +.include "../../devel/SDL/buildlink3.mk" .include "../../games/plib/buildlink3.mk" .include "../../graphics/jpeg/buildlink3.mk" .include "../../games/simgear/buildlink3.mk" diff --git a/games/flightgear/distinfo b/games/flightgear/distinfo index 422ea70378d..3ccbf9e18e4 100644 --- a/games/flightgear/distinfo +++ b/games/flightgear/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2007/07/12 20:01:40 drochner Exp $ +$NetBSD: distinfo,v 1.2 2008/03/14 14:49:53 drochner Exp $ -SHA1 (FlightGear-0.9.10.tar.gz) = 29911b9c17cece50a9e7d501f2259c89c0fa44ba -RMD160 (FlightGear-0.9.10.tar.gz) = ebf268c350912b03f215088e108a29d0128bb347 -Size (FlightGear-0.9.10.tar.gz) = 2072135 bytes +SHA1 (FlightGear-1.0.0.tar.gz) = 27de60d87316160eb9eb70bb82cd7ee2ed0407df +RMD160 (FlightGear-1.0.0.tar.gz) = 78a9c145f82bde79ac070e65d215e5d6ea555be9 +Size (FlightGear-1.0.0.tar.gz) = 2123216 bytes +SHA1 (patch-aa) = 509c2f58e92a4f4a845cf738b9743793cd9e78d7 diff --git a/games/flightgear/patches/patch-aa b/games/flightgear/patches/patch-aa new file mode 100644 index 00000000000..199cb4949a1 --- /dev/null +++ b/games/flightgear/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 2008/03/14 14:49:53 drochner Exp $ + +--- configure.orig 2007-12-11 06:44:59.000000000 +0100 ++++ configure +@@ -10128,7 +10128,7 @@ fi + + esac + +-if test "$OPENAL_OK" == "no"; then ++if test "$OPENAL_OK" = "no"; then + echo + echo "You *must* have the openal library installed on your system to build" + echo "FlightGear!" +@@ -10139,7 +10139,7 @@ if test "$OPENAL_OK" == "no"; then + exit + fi + +-if test "$ALUT_OK" == "no"; then ++if test "$ALUT_OK" = "no"; then + echo + echo "You *must* have the alut library installed on your system to build" + echo "FlightGear!" |