File FlightGear.spec of Package FlightGear
#
# spec file for package FlightGear
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: FlightGear
Version: 2017.1.2
Release: 0
Summary: Flight Simulator
License: GPL-2.0
Group: Amusements/Games/3D/Simulation
Url: http://www.flightgear.org/
Source0: http://downloads.sourceforge.net/project/flightgear/release-2017.1/flightgear-%{version}.tar.bz2
Source1: %{name}.desktop
Patch0: explicitely-link-with-libX11.patch
BuildRequires: SimGear-devel = %{version}
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: sqlite3-devel
BuildRequires: update-desktop-files
Requires: FlightGear-data = %{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The FlightGear project is working to create a sophisticated flight
simulator framework for the development and pursuit of interesting
flight simulator ideas. We are developing a solid basic sim that can be
expanded and improved upon by anyone interested in contributing
%prep
%setup -q -n flightgear-%{version}
#%%patch0 -p1
# remove some unneeded doc files
for ext in Cygwin IRIX Joystick Linux MSVC MSVC8 MacOS SimGear Unix Win32-X autoconf mingw plib src xmlsyntax; do
rm -f docs-mini/README.${ext}
done
%build
modified="$(sed -n '/^----/n;s/ - .*$//;p;q' "%{_sourcedir}/%{name}.changes")"
DATE="\"$(date -d "${modified}" "+%%b %%e %%Y")\""
TIME="\"$(date -d "${modified}" "+%%R")\""
sed -i -e "s@__DATE__@$DATE@g" -e "s@__TIME__@$TIME@g" utils/fgcom/fgcom.cxx src/FDM/JSBSim/FGJSBBase.cpp
%cmake \
-DSIMGEAR_SHARED:BOOL=ON \
-DFG_DATA_DIR:STRING="%{_datadir}/flightgear" \
-DJPEG_FACTORY:BOOL=ON \
-DSYSTEM_SQLITE:BOOL=ON
make %{?_smp_mflags}
%install
%cmake_install
# install icons
install -m 0755 -d %{buildroot}%{_datadir}/icons/hicolor/
pushd icons
cp -r -t %{buildroot}%{_datadir}/icons/hicolor/ 16x16 32x32 48x48 64x64 128x128 scalable
popd
# install desktop file
%suse_update_desktop_file -i %{name}
# remove obsolete utilities
cd %{buildroot}%{_bindir} && rm GPSsmooth MIDGsmooth UGsmooth metar yasim
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog NEWS README Thanks docs-mini/*
%{_mandir}/man1/*
%{_bindir}/*
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/*.png
%{_datadir}/icons/hicolor/scalable/*.svg
%changelog