mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
Upgrade to 0.3.7.
This commit is contained in:
parent
d8875adc9c
commit
c0c4da186a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=121206
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= SimGear
|
||||
PORTVERSION= 0.3.5
|
||||
PORTVERSION= 0.3.7
|
||||
CATEGORIES= devel games
|
||||
MASTER_SITES= ftp://ftp.simgear.org/pub/simgear/Source/ \
|
||||
ftp://ftp.de.flightgear.org/pub/simgear/Source/
|
||||
@ -20,15 +20,14 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libmk4.so:${PORTSDIR}/databases/metakit \
|
||||
${X11BASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib
|
||||
RUN_DEPENDS= ${LOCALBASE}/lib/libmk4.so:${PORTSDIR}/databases/metakit \
|
||||
${X11BASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib
|
||||
LIB_DEPENDS= openal.0:${PORTSDIR}/audio/openal
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GL= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CC="${CC}" CFLAGS="${CFLAGS}" \
|
||||
CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 500000
|
||||
BROKEN= "Internal compiler error in gcc"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (SimGear-0.3.5.tar.gz) = 24e87739c63c125a7c2c55836a27b121
|
||||
SIZE (SimGear-0.3.5.tar.gz) = 897193
|
||||
MD5 (SimGear-0.3.7.tar.gz) = d920855efb6ed72f97dad4b76914bfa8
|
||||
SIZE (SimGear-0.3.7.tar.gz) = 990939
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
-echo "$as_me:$LINENO: checking for pthread_exit in -lpthread" >&5
|
||||
-echo $ECHO_N "checking for pthread_exit in -lpthread... $ECHO_C" >&6
|
||||
+echo "$as_me:$LINENO: checking for pthread_exit in -pthread" >&5
|
||||
+echo $ECHO_N "checking for pthread_exit in -pthread... $ECHO_C" >&6
|
||||
+echo "$as_me:$LINENO: checking for pthread_exit in ${PTHREAD_LIBS}" >&5
|
||||
+echo $ECHO_N "checking for pthread_exit in ${PTHREAD_LIBS}... $ECHO_C" >&6
|
||||
if test "${ac_cv_lib_pthread_pthread_exit+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
|
@ -1,13 +0,0 @@
|
||||
--- simgear/scene/sky/cloud.cxx.orig Tue Jun 1 10:38:58 2004
|
||||
+++ simgear/scene/sky/cloud.cxx Tue Jun 1 10:39:08 2004
|
||||
@@ -24,8 +24,8 @@
|
||||
// #if defined (__APPLE__)
|
||||
// // any C++ header file undefines isinf and isnan
|
||||
// // so this should be included before <iostream>
|
||||
-// inline int (isinf)(double r) { return isinf(r); }
|
||||
-// inline int (isnan)(double r) { return isnan(r); }
|
||||
+inline int (isinf)(double r) { return isinf(r); }
|
||||
+inline int (isnan)(double r) { return isnan(r); }
|
||||
// #endif
|
||||
|
||||
// #include STL_IOSTREAM
|
11
devel/simgear/files/patch-simgear::screen::extensions.cxx
Normal file
11
devel/simgear/files/patch-simgear::screen::extensions.cxx
Normal file
@ -0,0 +1,11 @@
|
||||
--- simgear/screen/extensions.cxx.orig Tue Nov 9 13:31:54 2004
|
||||
+++ simgear/screen/extensions.cxx Tue Nov 9 13:32:10 2004
|
||||
@@ -113,7 +113,7 @@
|
||||
if (libHandle != NULL) {
|
||||
fptr = dlsym(libHandle, func);
|
||||
|
||||
- char *error = dlerror();
|
||||
+ const char *error = dlerror();
|
||||
if (error)
|
||||
SG_LOG(SG_GENERAL, SG_INFO, error);
|
||||
}
|
@ -53,9 +53,11 @@ include/simgear/scene/material/mat.hxx
|
||||
include/simgear/scene/material/matlib.hxx
|
||||
include/simgear/scene/material/matmodel.hxx
|
||||
include/simgear/scene/model/animation.hxx
|
||||
include/simgear/scene/model/custtrans.hxx
|
||||
include/simgear/scene/model/location.hxx
|
||||
include/simgear/scene/model/model.hxx
|
||||
include/simgear/scene/model/modellib.hxx
|
||||
include/simgear/scene/model/personality.hxx
|
||||
include/simgear/scene/model/placement.hxx
|
||||
include/simgear/scene/sky/cloud.hxx
|
||||
include/simgear/scene/sky/clouds3d/SkySceneLoader.hpp
|
||||
@ -80,8 +82,9 @@ include/simgear/screen/tr.h
|
||||
include/simgear/serial/serial.hxx
|
||||
include/simgear/sg_inlines.h
|
||||
include/simgear/sg_traits.hxx
|
||||
include/simgear/sound/sound.hxx
|
||||
include/simgear/sound/soundmgr.hxx
|
||||
include/simgear/sound/sample_openal.hxx
|
||||
include/simgear/sound/soundmgr_openal.hxx
|
||||
include/simgear/sound/xmlsound.hxx
|
||||
include/simgear/structure/callback.hxx
|
||||
include/simgear/structure/commands.hxx
|
||||
include/simgear/structure/event_mgr.hxx
|
||||
|
Loading…
Reference in New Issue
Block a user