]> git.pld-linux.org Git - packages/crrcsim.git/commitdiff
- initial, works fine but not on 64bits
authorBartłomiej Zimoń <cactus@pld-linux.org>
Tue, 6 May 2008 21:33:37 +0000 (21:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    crrcsim.spec -> 1.1

crrcsim.spec [new file with mode: 0644]

diff --git a/crrcsim.spec b/crrcsim.spec
new file mode 100644 (file)
index 0000000..3a12def
--- /dev/null
@@ -0,0 +1,108 @@
+#
+# TODO: 
+# - lib64 support (Makefile.linux64 or patch for Makefile.linux)
+# - addons - crrcsim-addon-models-0.2.0.zip
+#
+# Does not compile with glut :
+# http://lists.pld-linux.org/mailman/pipermail/pld-devel-pl/2006-November/137392.html
+#
+# pulseaudio-devel > 18.1
+# In file included from audio_interface/tx_audio.cpp:9:
+# audio_interface/audio_rc.c: In function 'int audio_rc_open(T_TX_InterfaceAudio*)':
+# audio_interface/audio_rc.c:251: error: 'Pa_GetCountDevices' was not declared in this scope
+# audio_interface/audio_rc.c:265: error: 'Pa_GetDefaultInputDevice' was not declared in this scope
+#
+# Conditional build:
+%bcond_with    debug           # build with debug
+%bcond_with    sound           # build with sound
+
+%define                _rel            2
+
+Summary:       model-airplane flight simulator
+#Summary(pl.UTF-8):    
+Name:          crrcsim
+Version:       0.9.8
+Release:       0.2
+License:       GPL
+Group:         X11/Applications/Games
+Source0:       http://dl.sourceforge.net/%{name}/%{name}-src-%{version}-%{_rel}.tar.gz
+# Source0-md5: c89b4458fe0697059d40a2e4636632d0
+Source1:       %{name}.desktop
+URL:           http:///crrcsim.sourceforge.net/
+BuildRequires: autoconf
+BuildRequires: automake
+%{?with_sound:BuildRequires:   pulseaudio-devel = 18.1}
+BuildRequires: gle-devel
+BuildRequires: glew-devel
+BuildRequires: freeglut-devel 
+#BuildRequires:        glut-devel = 3.7
+BuildRequires: sed >= 4.0
+BuildRequires: SDL-devel
+BuildRequires: OpenGL-devel
+BuildRequires: OpenGL-GLU-devel
+BuildRequires: xorg-lib-libXi-devel
+BuildRequires: xorg-lib-libXt-devel
+BuildRequires: xorg-lib-libXmu-devel
+BuildRequires: xorg-lib-libXext-devel
+BuildRequires: pkg-config
+BuildRequires: rpmbuild(macros) >= 1.129
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+CRRCSim is a model-airplane flight simulation program for 
+Linux with ports to other platforms. Using CRRCSim you can 
+learn how to fly model aircraft, test new aircraft designs, 
+and improve your skills by practicing in the relative safety of your pc.
+
+#%description -l pl.UTF-8
+#Mikser dżwięku dla KDE 3 i ALSY, posiadający możliwości, w które kmix
+#jest ubogi.
+
+%prep
+%setup -q -n %{name}-%{version}-%{_rel}
+
+%if %{without sound}
+%{__sed} -i 's/COMPILE_AUDIO_INTERFACE 1/COMPILE_AUDIO_INTERFACE 0/' crrc_config.h
+%{__sed} -i 's/CRRC_LINKER_FLAGS += -lportaudio/#CRRC_LINKER_FLAGS += -lportaudio/' Makefile.linux
+%endif
+
+%{__sed} -i 's/\/usr\/local\/share\/games/$(DESTDIR)\/usr\/share/' Makefile.linux
+%{__sed} -i 's/\/usr\/local/$*DESTDIR)\/usr/' Makefile.linux
+%{__sed} -i 's/\/usr\/local\/share\/games/\/usr\/share/' config.cpp
+
+%build
+#cp -f /usr/share/automake/config.* admin
+%{__make} -f Makefile.linux %{?with_debug:debug} \
+       OPT_FLAGS="%{rpmcflags}" \
+       CC_MODULE="%{__cc}" \
+       CC="%{__cxx}" \
+       CXX="%{__cxx}" \
+       C++="%{__cxx}"
+
+#%if "%{_lib}" == "lib64"
+#      --enable-libsuffix=64 \
+#%endif
+#      --with-qt-libraries=%{_libdir}
+#%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -f Makefile.linux install \
+       DESTDIR=$RPM_BUILD_ROOT 
+
+install -d $RPM_BUILD_ROOT%{_desktopdir}
+install -d $RPM_BUILD_ROOT%{_pixmapsdir}
+cp ./packages/icons/crrcsim.png $RPM_BUILD_ROOT%{_pixmapsdir}
+cp %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files 
+%defattr(644,root,root,755)
+%doc README CHANGES_BY_KL  CHANGES_BY_TT
+%attr(755,root,root) %{_bindir}/%{name}
+%{_datadir}/%{name}
+%{_pixmapsdir}/*.png
+%{_desktopdir}/*.desktop
This page took 0.093562 seconds and 4 git commands to generate.