Update SimGear and FlightGear to 3.0.0.

This commit is contained in:
pascal 2014-03-09 19:53:12 +00:00
parent df0899a6e2
commit ac1ae0d289
11 changed files with 552 additions and 401 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile.inc,v 1.1.1.1 2013/11/24 22:04:08 pascal Exp $
# $OpenBSD: Makefile.inc,v 1.2 2014/03/09 19:53:12 pascal Exp $
ONLY_FOR_ARCHS = amd64 i386
V = 2.12.0
V = 3.0.0
CATEGORIES = games

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.2 2013/11/27 12:51:02 sthen Exp $
# $OpenBSD: Makefile,v 1.3 2014/03/09 19:53:12 pascal Exp $
COMMENT = modern, open-source flight simulator
@ -24,7 +24,8 @@ RUN_DEPENDS = games/flightgear/data>=${V}
CONFIGURE_ARGS += -DCMAKE_INSTALL_MANDIR="${PREFIX}/man" \
-DFG_DATA_DIR="${TRUEPREFIX}/share/flightgear" \
-DSYSTEM_SQLITE=ON \
-DENABLE_LIBSVN=OFF
-DENABLE_IAX=OFF \
-DENABLE_FGCOM=OFF
NO_TEST = Yes

View File

@ -1,2 +1,2 @@
SHA256 (flightgear-2.12.0.tar.bz2) = hEmdGypsPIAaPBY/T0DR9VtfvNS2Uln8Xl1aoS5RM0E=
SIZE (flightgear-2.12.0.tar.bz2) = 3424463
SHA256 (flightgear-3.0.0.tar.bz2) = 5L8ZIoJZIKQEU55mEcNutVZ7hdRqcm/YxvmxnBOLpuk=
SIZE (flightgear-3.0.0.tar.bz2) = 5874662

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2013/11/24 22:04:08 pascal Exp $
@comment $OpenBSD: PLIST,v 1.2 2014/03/09 19:53:12 pascal Exp $
@bin bin/GPSsmooth
@bin bin/MIDGsmooth
@bin bin/UGsmooth
@ -16,6 +16,5 @@
@man man/man1/fgfs.1
@man man/man1/fgjs.1
@man man/man1/fgpanel.1
@man man/man1/gl-info.1
@man man/man1/js_demo.1
@man man/man1/terrasync.1

View File

@ -1,20 +1,17 @@
# $OpenBSD: Makefile,v 1.4 2013/12/19 13:08:42 naddy Exp $
# $OpenBSD: Makefile,v 1.5 2014/03/09 19:53:12 pascal Exp $
COMMENT = data files for flightgear
DISTNAME = FlightGear-data-${V}
PKGNAME = flightgear-data-${V}
REVISION = 0
MASTER_SITES = http://ftp.igh.cnrs.fr/pub/flightgear/ftp/Shared/ \
http://ftp.linux.kiev.ua/pub/fgfs/Shared/ \
ftp://ftp.kingmont.com/flightsims/flightgear/Shared/
EXTRACT_SUFX = .tar.bz
EXTRACT_SUFX = .tar.bz2
EXTRACT_ONLY =
BUILD_DEPENDS = archivers/bzip2
NO_BUILD = Yes
NO_TEST = Yes

View File

@ -1,2 +1,2 @@
SHA256 (FlightGear-data-2.12.0.tar.bz) = E239JMiiiqimpETsry64gaHnCNGclrRDUtefz4RkW2I=
SIZE (FlightGear-data-2.12.0.tar.bz) = 983303973
SHA256 (FlightGear-data-3.0.0.tar.bz2) = BINJoWfVXCpvhKcd1WVMugt4Zs5DxvBqEqG+j+CEBVc=
SIZE (FlightGear-data-3.0.0.tar.bz2) = 1078366345

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.1.1.1 2013/11/24 21:59:15 pascal Exp $
# $OpenBSD: Makefile,v 1.2 2014/03/09 19:53:12 pascal Exp $
COMMENT = library set for simulations, games and visualizations
DISTNAME = simgear-2.12.0
DISTNAME = simgear-3.0.0
SHARED_LIBS += SimGearCore 0.0 # 2.10
SHARED_LIBS += SimGearScene 0.0 # 2.10
SHARED_LIBS += SimGearCore 1.0 # 2.10
SHARED_LIBS += SimGearScene 1.0 # 2.10
CATEGORIES = graphics
@ -28,8 +28,7 @@ BUILD_DEPENDS = devel/boost
LIB_DEPENDS = graphics/openscenegraph \
audio/openal
CONFIGURE_ARGS += -DSYSTEM_EXPAT=ON \
-DENABLE_LIBSVN=OFF
CONFIGURE_ARGS += -DSYSTEM_EXPAT=ON
CFLAGS += -I${X11BASE}/include -pthread

View File

@ -1,2 +1,2 @@
SHA256 (simgear-2.12.0.tar.bz2) = jpDEsvcvZFnG9RJbzR8WtdRgSvH/QEq0NqlmNJ0y9Go=
SIZE (simgear-2.12.0.tar.bz2) = 961978
SHA256 (simgear-3.0.0.tar.bz2) = CUSPh+bCtbYQGlpOrDMcHhuZjWHsLllhREkRDeLmgBY=
SIZE (simgear-3.0.0.tar.bz2) = 969971

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-CMakeLists_txt,v 1.1 2014/03/09 19:53:12 pascal Exp $
--- CMakeLists.txt.orig Tue Feb 25 16:53:25 2014
+++ CMakeLists.txt Tue Feb 25 16:53:46 2014
@@ -269,7 +269,9 @@ check_cxx_source_compiles(
if(HAVE_DLFCN_H)
check_library_exists(dl dlerror "" HAVE_DL)
- set(DL_LIBRARY "dl")
+ if(HAVE_DL)
+ set(DL_LIBRARY "dl")
+ endif()
endif()
SET(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "add a postfix, usually 'd' on windows")

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2013/11/24 21:59:15 pascal Exp $
@comment $OpenBSD: PLIST,v 1.2 2014/03/09 19:53:12 pascal Exp $
include/simgear/
include/simgear/bucket/
include/simgear/bucket/newbucket.hxx
@ -27,7 +27,6 @@ include/simgear/bvh/BVHVisitor.hxx
include/simgear/canvas/
include/simgear/canvas/Canvas.hxx
include/simgear/canvas/CanvasEvent.hxx
include/simgear/canvas/CanvasEventListener.hxx
include/simgear/canvas/CanvasEventManager.hxx
include/simgear/canvas/CanvasEventTypes.hxx
include/simgear/canvas/CanvasEventVisitor.hxx
@ -77,6 +76,9 @@ include/simgear/ephemeris/venus.hxx
include/simgear/io/
include/simgear/io/DAVMultiStatus.hxx
include/simgear/io/HTTPClient.hxx
include/simgear/io/HTTPContentDecode.hxx
include/simgear/io/HTTPFileRequest.hxx
include/simgear/io/HTTPMemoryRequest.hxx
include/simgear/io/HTTPRequest.hxx
include/simgear/io/SVNDirectory.hxx
include/simgear/io/SVNReportParser.hxx
@ -128,6 +130,7 @@ include/simgear/math/sg_random.h
include/simgear/math/sg_types.hxx
include/simgear/misc/
include/simgear/misc/CSSBorder.hxx
include/simgear/misc/ListDiff.hxx
include/simgear/misc/ResourceManager.hxx
include/simgear/misc/gzcontainerfile.hxx
include/simgear/misc/interpolator.hxx
@ -146,8 +149,10 @@ include/simgear/nasal/cppbind/
include/simgear/nasal/cppbind/Ghost.hxx
include/simgear/nasal/cppbind/NasalCallContext.hxx
include/simgear/nasal/cppbind/NasalHash.hxx
include/simgear/nasal/cppbind/NasalObjectHolder.hxx
include/simgear/nasal/cppbind/NasalString.hxx
include/simgear/nasal/cppbind/detail/
include/simgear/nasal/cppbind/detail/from_nasal_function_templates.hxx
include/simgear/nasal/cppbind/detail/from_nasal_helper.hxx
include/simgear/nasal/cppbind/detail/functor_templates.hxx
include/simgear/nasal/cppbind/detail/nasal_traits.hxx
@ -183,7 +188,6 @@ include/simgear/scene/material/Effect.hxx
include/simgear/scene/material/EffectBuilder.hxx
include/simgear/scene/material/EffectCullVisitor.hxx
include/simgear/scene/material/EffectGeode.hxx
include/simgear/scene/material/GLPredicate.hxx
include/simgear/scene/material/Pass.hxx
include/simgear/scene/material/Technique.hxx
include/simgear/scene/material/TextureBuilder.hxx
@ -257,6 +261,7 @@ include/simgear/scene/util/DeletionManager.hxx
include/simgear/scene/util/NodeAndDrawableVisitor.hxx
include/simgear/scene/util/Noise.hxx
include/simgear/scene/util/OptionsReadFileCallback.hxx
include/simgear/scene/util/OsgDebug.hxx
include/simgear/scene/util/OsgMath.hxx
include/simgear/scene/util/OsgSingleton.hxx
include/simgear/scene/util/PrimitiveUtils.hxx
@ -315,6 +320,7 @@ include/simgear/structure/commands.hxx
include/simgear/structure/event_mgr.hxx
include/simgear/structure/exception.hxx
include/simgear/structure/intern.hxx
include/simgear/structure/map.hxx
include/simgear/structure/singleton.hpp
include/simgear/structure/subsystem_mgr.hxx
include/simgear/threads/
@ -331,3 +337,6 @@ include/simgear/xml/
include/simgear/xml/easyxml.hxx
@lib lib/libSimGearCore.so.${LIBSimGearCore_VERSION}
@lib lib/libSimGearScene.so.${LIBSimGearScene_VERSION}
share/SimGearCore/
share/SimGearCore/SimGearCoreConfig-release.cmake
share/SimGearCore/SimGearCoreConfig.cmake