mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
games-simulation/flightgear: Version bump, remove old
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Maciej Mrozowski <reavertm@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST flightgear-2018.3.1.tar.bz2 8404294 BLAKE2B b90d64bc7381baef3adf3f2b77acb6822562d76319e85bebeda977754c281cd48b4ce137d910cc9f96947cfe1b7612c6ff45f2ed49775348b651944bb8796ba4 SHA512 ad07cdf90b1890519a22a1f79374b2d11e70191d85bc76d50913708a250801c3e091228999011367e374572a46c60f572f8b138d6a7c9fd2155f63107667d93c
|
||||
DIST flightgear-2018.3.2.tar.bz2 8405351 BLAKE2B 8abc3cc37281f1cc30c51518570e7278722f1d804f6568d7619150e7ddf13eef784314873571ea99d039ca4a94968e8e96779e26d8618eee4b1ed248e88dc52a SHA512 76a127949351fe48d847a1471002ecbc3daa769952fef7a7a141e83031771e87f4e23c329e9d03ddd2e99b4b96fb6af2ebe5ab90ca50c0111217c62492cd516d
|
||||
DIST flightgear-2019.1.1.tar.bz2 8440986 BLAKE2B da387456aaa6e8b86a8a865989f40c6bbcef4bf378175628c26fb172161cc3b278e4b16a3a270b7ed7fcf70329a88754c9a875a14f919fa90f284a485c909cce SHA512 edcc464af0bde4766e61137211276d77a6bb297567b0168dfaf3b97fdb9a595e5e8a0b84232680fcc975cf195261b9751edb79ae73123333feb31ab3d7215d8c
|
||||
|
||||
@@ -1,159 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils bash-completion-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="Open Source Flight Simulator"
|
||||
HOMEPAGE="https://www.flightgear.org/"
|
||||
SRC_URI="mirror://sourceforge/flightgear/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SLOT="0"
|
||||
IUSE="dbus debug examples gdal openmp qt5 +udev +utils vim-syntax"
|
||||
|
||||
# Needs --fg-root with path to flightgear-data passed to test runner passed,
|
||||
# not really worth patching
|
||||
RESTRICT="test"
|
||||
|
||||
# zlib is some strange auto-dep from simgear
|
||||
COMMON_DEPEND="
|
||||
dev-db/sqlite:3
|
||||
<dev-games/openscenegraph-3.5.6:=[jpeg,png]
|
||||
~dev-games/simgear-${PV}[gdal=]
|
||||
media-libs/openal
|
||||
>=media-libs/speex-1.2.0:0
|
||||
media-libs/speexdsp:0
|
||||
media-sound/gsm
|
||||
sys-libs/zlib
|
||||
virtual/glu
|
||||
x11-libs/libX11
|
||||
dbus? ( >=sys-apps/dbus-1.6.18-r1 )
|
||||
gdal? ( >=sci-libs/gdal-2.0.0:0 )
|
||||
qt5? (
|
||||
>=dev-qt/qtcore-5.7.1:5
|
||||
>=dev-qt/qtdeclarative-5.7.1:5
|
||||
>=dev-qt/qtgui-5.7.1:5
|
||||
>=dev-qt/qtnetwork-5.7.1:5
|
||||
>=dev-qt/qtwidgets-5.7.1:5
|
||||
)
|
||||
udev? ( virtual/udev )
|
||||
utils? (
|
||||
media-libs/freeglut
|
||||
media-libs/freetype:2
|
||||
media-libs/glew:0
|
||||
media-libs/libpng:0
|
||||
virtual/opengl
|
||||
qt5? ( >=dev-qt/qtwebsockets-5.7.1:5 )
|
||||
)
|
||||
"
|
||||
# libXi and libXmu are build-only-deps according to FindGLUT.cmake
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
>=dev-libs/boost-1.44
|
||||
>=media-libs/plib-1.8.5
|
||||
utils? (
|
||||
x11-libs/libXi
|
||||
x11-libs/libXmu
|
||||
)
|
||||
"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
~games-simulation/${PN}-data-${PV}
|
||||
"
|
||||
|
||||
DOCS=(AUTHORS ChangeLog NEWS README Thanks)
|
||||
|
||||
pkg_pretend() {
|
||||
use openmp && tc-check-openmp
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DENABLE_AUTOTESTING=OFF
|
||||
-DENABLE_FGCOM=$(usex utils)
|
||||
-DENABLE_FGELEV=$(usex utils)
|
||||
-DENABLE_FGJS=$(usex utils)
|
||||
-DENABLE_FGVIEWER=$(usex utils)
|
||||
-DENABLE_FLITE=OFF
|
||||
-DENABLE_GDAL=$(usex gdal)
|
||||
-DENABLE_GPSSMOOTH=$(usex utils)
|
||||
-DENABLE_HID_INPUT=$(usex udev)
|
||||
-DENABLE_JS_DEMO=$(usex utils)
|
||||
-DENABLE_JSBSIM=ON
|
||||
-DENABLE_LARCSIM=ON
|
||||
-DENABLE_METAR=$(usex utils)
|
||||
-DENABLE_OPENMP=$(usex openmp)
|
||||
-DENABLE_PLIB_JOYSTICK=ON # NOTE look for defaults changes in CMake
|
||||
-DENABLE_PROFILE=OFF
|
||||
-DENABLE_QT=$(usex qt5)
|
||||
-DENABLE_RTI=OFF
|
||||
-DENABLE_STGMERGE=ON
|
||||
-DENABLE_TERRASYNC=$(usex utils)
|
||||
-DENABLE_TRAFFIC=$(usex utils)
|
||||
-DENABLE_UIUC_MODEL=ON
|
||||
-DENABLE_YASIM=ON
|
||||
-DEVENT_INPUT=$(usex udev)
|
||||
-DFG_BUILD_TYPE=Release
|
||||
-DFG_DATA_DIR=/usr/share/${PN}
|
||||
-DJSBSIM_TERRAIN=ON
|
||||
-DOSG_FSTREAM_EXPORT_FIXED=OFF # TODO also see simgear
|
||||
-DSP_FDMS=ON
|
||||
-DSYSTEM_CPPUNIT=OFF # NOTE we do not build tests anyway
|
||||
-DSYSTEM_FLITE=ON
|
||||
-DSYSTEM_HTS_ENGINE=ON
|
||||
-DSYSTEM_SPEEX=ON
|
||||
-DSYSTEM_GSM=ON
|
||||
-DSYSTEM_SQLITE=ON
|
||||
-DUSE_AEONWAVE=OFF
|
||||
-DUSE_DBUS=$(usex dbus)
|
||||
-DWITH_FGPANEL=$(usex utils)
|
||||
)
|
||||
if use gdal && use utils; then
|
||||
mycmakeargs+=(-DENABLE_DEMCONVERT=ON)
|
||||
else
|
||||
mycmakeargs+=(-DENABLE_DEMCONVERT=OFF)
|
||||
fi
|
||||
if use qt5 && use utils; then
|
||||
mycmakeargs+=(-DENABLE_FGQCANVAS=ON)
|
||||
else
|
||||
mycmakeargs+=(-DENABLE_FGQCANVAS=OFF)
|
||||
fi
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
# Install bash completion (TODO zsh)
|
||||
# Uncomment below when scripts stops writing files...
|
||||
# sed -e "s|/usr/local/share/FlightGear|${GAMES_DATADIR}/${PN}|" \
|
||||
# -i scripts/completion/fg-completion.bash || die 'unable to replace FG_ROOT'
|
||||
# newbashcomp scripts/completion/fg-completion.bash ${PN}
|
||||
|
||||
# Install examples and other misc files
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/"${PF}"/examples
|
||||
doins -r scripts/java scripts/perl scripts/python
|
||||
insinto /usr/share/doc/"${PF}"/examples/c++
|
||||
doins -r scripts/example/*
|
||||
insinto /usr/share/doc/"${PF}"/tools
|
||||
doins -r scripts/atis scripts/tools/*
|
||||
fi
|
||||
|
||||
# Install nasal script syntax
|
||||
if use vim-syntax; then
|
||||
insinto /usr/share/vim/vimfiles/syntax
|
||||
doins scripts/syntax/{ac3d,nasal}.vim
|
||||
insinto /usr/share/vim/vimfiles/ftdetect/
|
||||
doins "${FILESDIR}"/{ac3d,nasal}.vim
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "Please note that data files location changed to /usr/share/flightgear"
|
||||
if use qt5; then
|
||||
einfo "To use launcher, run fgfs with '--launcher' parameter"
|
||||
fi
|
||||
}
|
||||
@@ -21,7 +21,7 @@ RESTRICT="test"
|
||||
# zlib is some strange auto-dep from simgear
|
||||
COMMON_DEPEND="
|
||||
dev-db/sqlite:3
|
||||
<dev-games/openscenegraph-3.5.6:=[jpeg,png]
|
||||
dev-games/openscenegraph[jpeg,png]
|
||||
~dev-games/simgear-${PV}[gdal=]
|
||||
media-libs/openal
|
||||
>=media-libs/speex-1.2.0:0
|
||||
@@ -74,6 +74,7 @@ pkg_pretend() {
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DENABLE_AUTOTESTING=OFF
|
||||
-DENABLE_COMPOSITOR=OFF
|
||||
-DENABLE_FGCOM=$(usex utils)
|
||||
-DENABLE_FGELEV=$(usex utils)
|
||||
-DENABLE_FGJS=$(usex utils)
|
||||
@@ -23,7 +23,7 @@ RESTRICT="test"
|
||||
# zlib is some strange auto-dep from simgear
|
||||
COMMON_DEPEND="
|
||||
dev-db/sqlite:3
|
||||
<dev-games/openscenegraph-3.5.6:=[jpeg,png]
|
||||
dev-games/openscenegraph[jpeg,png]
|
||||
~dev-games/simgear-${PV}[gdal=]
|
||||
media-libs/openal
|
||||
>=media-libs/speex-1.2.0:0
|
||||
@@ -76,6 +76,7 @@ pkg_pretend() {
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DENABLE_AUTOTESTING=OFF
|
||||
-DENABLE_COMPOSITOR=OFF
|
||||
-DENABLE_FGCOM=$(usex utils)
|
||||
-DENABLE_FGELEV=$(usex utils)
|
||||
-DENABLE_FGJS=$(usex utils)
|
||||
@@ -114,6 +115,9 @@ src_configure() {
|
||||
-DUSE_DBUS=$(usex dbus)
|
||||
-DWITH_FGPANEL=$(usex utils)
|
||||
)
|
||||
if use cpu_flags_x86_sse2; then
|
||||
append-flags -msse2 -mfpmath=sse -ftree-vectorize -ftree-slp-vectorize
|
||||
fi
|
||||
if use gdal && use utils; then
|
||||
mycmakeargs+=(-DENABLE_DEMCONVERT=ON)
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user