flightgear is active project?
The latest release is from last week. They've moved development to gitlab, so this package is definitely out of date: https://gitlab.com/flightgear/flightgear
Git Clone URL: | https://aur.archlinux.org/flightgear-git.git (read-only, click to copy) |
---|---|
Package Base: | flightgear-git |
Description: | An open-source, multi-platform flight simulator |
Upstream URL: | https://home.flightgear.org |
Licenses: | GPL |
Conflicts: | flightgear |
Provides: | flightgear |
Submitter: | pascal |
Maintainer: | AWhetter (acxz) |
Last Packager: | acxz |
Votes: | 18 |
Popularity: | 0.000002 |
First Submitted: | 2010-07-24 14:22 (UTC) |
Last Updated: | 2023-12-31 16:56 (UTC) |
flightgear is active project?
The latest release is from last week. They've moved development to gitlab, so this package is definitely out of date: https://gitlab.com/flightgear/flightgear
simgear>=2020.4.0
simgear<2020.5
needs to be added to the depends
array (please calculate the versions from flightgear-git
's $pkgver
dynamically.)
fgfs: error while loading shared libraries: libSimGearScened.so.2020.4.0: cannot open shared object file: No such file or directory
flightgear is active project?
Could not find a configuration file for package "SimGear" that is compatible with requested version "2020.4.0".
-- Min Simgear version is 2020.4.0
CMake Error at CMakeLists.txt:393 (find_package):
Could not find a configuration file for package "SimGear" that is
compatible with requested version "2020.4.0".
The following configuration files were considered but not accepted:
/usr/lib64/cmake/SimGear/SimGearConfig.cmake, version: 2020.3.19
/usr/lib/cmake/SimGear/SimGearConfig.cmake, version: 2020.3.19
/lib64/cmake/SimGear/SimGearConfig.cmake, version: 2020.3.19
/lib/cmake/SimGear/SimGearConfig.cmake, version: 2020.3.19
Here's the binary version: https://aur.archlinux.org/packages/flightgear-appimage
Development is on Github: https://github.com/acxz/flightgear-arch Please open issues and PRs there instead of commenting.
Hi. Flightgear next will now make use of osgXR if available to enable some basic VR support, otherwise it will try to build its own static built-in version of osgXR which would implicitly depend on OpenXR.
So 3 possible options (in order of preference):
1) add 'libosgXR'
to depends so that the osgXR shared library provided by https://aur.archlinux.org/packages/osgxr/ (which pulls in 'openxr'
) is automatically used (cmake ENABLE_VR
and SYSTEM_OSGXR
will both default to ON
)
2) add the cmake option -DSYSTEM_OSGXR=OFF
and add 'openxr' 'libglvnd'
to depends, so flightgear will attempt to build its own static built-in version of osgXR (which would depend on OpenXR (and GLX)).
3) add the cmake option -DENABLE_VR=OFF
to prevent the implicit dependencies, but obviously disables any VR support.
Edit: I installed SimGear-git that should give me the 2020.4 version
and now I am getting a new error.
[ 9%] Building CXX object CMakeFiles/fgfsObjects.dir/src/Environment/metarproperties.cxx.o
/var/tmp/pamac-build-tl/flightgear-git/src/flightgear/src/Environment/metarproperties.cxx: In member function ‘const char Environment::MetarProperties::get_metar() const’:
/var/tmp/pamac-build-tl/flightgear-git/src/flightgear/src/Environment/metarproperties.cxx:208:20: error: ‘class FGMetar’ has no member named ‘getRawDataPtr’
208 | return _metar->getRawDataPtr();
| ^~~~~~~~~~~~~
make[2]: [CMakeFiles/fgfsObjects.dir/build.make:1140: CMakeFiles/fgfsObjects.dir/src/Environment/metarproperties.cxx.o] Error 1
make[1]: [CMakeFiles/Makefile2:1677: CMakeFiles/fgfsObjects.dir/all] Error 2
make: ** [Makefile:166: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
Pinned Comments
acxz commented on 2022-09-07 14:48 (UTC)
Development is on Github: https://github.com/acxz/flightgear-arch Please open issues and PRs there instead of commenting.