Index: Makefile =================================================================== --- Makefile (revision 499427) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= flightgear PORTVERSION= 2018.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} Index: files/patch-src_Environment_realwx__ctrl.cxx =================================================================== --- files/patch-src_Environment_realwx__ctrl.cxx (nonexistent) +++ files/patch-src_Environment_realwx__ctrl.cxx (working copy) @@ -0,0 +1,14 @@ +# games/flightgear: METAR data won't download +# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=237400 + +--- src/Environment/realwx_ctrl.cxx.orig 2019-04-20 07:47:41 UTC ++++ src/Environment/realwx_ctrl.cxx +@@ -426,7 +426,7 @@ void NoaaMetarRealWxController::requestMetar + ) + { + static const std::string NOAA_BASE_URL = +- "http://tgftp.nws.noaa.gov/data/observations/metar/stations/"; ++ "https://tgftp.nws.noaa.gov/data/observations/metar/stations/"; + class NoaaMetarGetRequest: + public simgear::HTTP::MemoryRequest + { Index: files/patch-src_Main_metar__main.cxx =================================================================== --- files/patch-src_Main_metar__main.cxx (nonexistent) +++ files/patch-src_Main_metar__main.cxx (working copy) @@ -0,0 +1,14 @@ +# games/flightgear: METAR data won't download +# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=237400 + +--- src/Main/metar_main.cxx.orig 2019-04-20 07:48:18 UTC ++++ src/Main/metar_main.cxx +@@ -539,7 +539,7 @@ int main(int argc, char *argv[]) + try + { + static const std::string NOAA_BASE_URL = +- "http://tgftp.nws.noaa.gov/data/observations/metar/stations/"; ++ "https://tgftp.nws.noaa.gov/data/observations/metar/stations/"; + HTTP::MemoryRequest* mr = new HTTP::MemoryRequest + ( + NOAA_BASE_URL