1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00

games/flightgear: Update to 2020.3.11

games/flightgear-data: switch from deprecated
@exec to @preexec
This commit is contained in:
Ganael LAPLANCHE 2021-08-26 12:07:26 +02:00
parent b7efd35216
commit 680b748943
8 changed files with 27 additions and 15 deletions

View File

@ -1,6 +1,5 @@
PORTNAME= simgear
PORTVERSION= 2020.3.9
PORTREVISION= 1
PORTVERSION= 2020.3.11
CATEGORIES= devel games
MASTER_SITES= SF/flightgear/release-${PORTVERSION:R}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1623703945
SHA256 (simgear-2020.3.9.tar.bz2) = 5da4688e049389793bed7b2655399f1bc0109c7bb06389de6684719639424e6c
SIZE (simgear-2020.3.9.tar.bz2) = 1409436
TIMESTAMP = 1629663788
SHA256 (simgear-2020.3.11.tar.bz2) = bb8dfcbc2a3b0143d1ffcf01d1a961e566ef21dd33d9cc768d6d9aa5871d4f3c
SIZE (simgear-2020.3.11.tar.bz2) = 1415047

View File

@ -286,6 +286,7 @@ include/simgear/scene/util/SGEnlargeBoundingBox.hxx
include/simgear/scene/util/SGImageUtils.hxx
include/simgear/scene/util/SGNodeMasks.hxx
include/simgear/scene/util/SGPickCallback.hxx
include/simgear/scene/util/SGProgram.hxx
include/simgear/scene/util/SGReaderWriterOptions.hxx
include/simgear/scene/util/SGSceneFeatures.hxx
include/simgear/scene/util/SGSceneUserData.hxx

View File

@ -1,7 +1,7 @@
# Created by: Brian Buchanan <brian@CSUA.Berkeley.EDU>
PORTNAME= flightgear-data
PORTVERSION= 2020.3.9
PORTVERSION= 2020.3.11
CATEGORIES= games
MASTER_SITES= SF/flightgear/release-${PORTVERSION:R}
DISTNAME= FlightGear-${PORTVERSION}-data
@ -30,7 +30,7 @@ pre-install:
@${RM} ${PLIST}
@cd ${WRKSRC} && \
${FIND} * -type d -empty | ${SORT} \
| ${SED} -e 's|^|@exec ${MKDIR} %D/share/flightgear/|' >> ${PLIST} && \
| ${SED} -e 's|^|@preexec ${MKDIR} %D/share/flightgear/|' >> ${PLIST} && \
${FIND} * -type f | ${SORT} \
| ${SED} -e 's|^|%%DATADIR%%/|' >> ${PLIST} && \
${FIND} * -type d -empty | ${SORT} -r \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1623704460
SHA256 (FlightGear-2020.3.9-data.txz) = ffff439931bd4c7e8ad12d1cbbeffc83c6d1a4e64b0857df43d420f9efbdb76c
SIZE (FlightGear-2020.3.9-data.txz) = 1736333428
TIMESTAMP = 1629665125
SHA256 (FlightGear-2020.3.11-data.txz) = 123f151b2c0f4220f0dd55e875ca57a4ec38a94f71f8c04c58caeac077e2b558
SIZE (FlightGear-2020.3.11-data.txz) = 1736954520

View File

@ -1,8 +1,7 @@
# Created by: Brian Buchanan <brian@CSUA.Berkeley.EDU>
PORTNAME= flightgear
PORTVERSION= 2020.3.9
PORTREVISION= 1
PORTVERSION= 2020.3.11
CATEGORIES= games
MASTER_SITES= SF/flightgear/release-${PORTVERSION:R}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1623703961
SHA256 (flightgear-2020.3.9.tar.bz2) = d71f6c6804dae4d9c3e0c8e25dcf76973d19d747c0b051a0174703a238ac138e
SIZE (flightgear-2020.3.9.tar.bz2) = 8923743
TIMESTAMP = 1629665894
SHA256 (flightgear-2020.3.11.tar.bz2) = fe2706c7707ea73abc5114773de45f29861ab0f8f535656af0428ed049ca4a97
SIZE (flightgear-2020.3.11.tar.bz2) = 8926212

View File

@ -0,0 +1,13 @@
Backport fix from c8d5296f7bef162311a303ff904577b4010c5e80
--- src/Navaids/PositionedOctree.cxx.orig 2021-08-23 13:26:31 UTC
+++ src/Navaids/PositionedOctree.cxx
@@ -148,7 +148,7 @@ void Leaf::visit(const SGVec3d& aPos, double aCutoff,
void Leaf::insertChild(FGPositioned::Type ty, PositionedID id)
{
- assert(childrenLoaded);
+ assert(_childrenLoaded);
children.insert(children.end(), TypedPositioned(ty, id));
}