]> git.pld-linux.org Git - packages/dosbox.git/blobdiff - dosbox.spec
- new
[packages/dosbox.git] / dosbox.spec
index 7b76437cdd2f8294c943a90367096afbb1d4c0ff..935d9543fd4e1bbbabc687f20650ad74f245a529 100644 (file)
@@ -1,35 +1,72 @@
+#
+# Conditional build:
+%bcond_without alsa    # without ALSA support for MIDI
+#
 Summary:       x86/DOS emulator with sound/graphics primarily for games
-Summary(pl):   Emulator x86/DOS z d¼wiêkiem/grafik± g³ównie dla gier
+Summary(pl.UTF-8):     Emulator x86/DOS z dźwiękiem/grafiką głównie dla gier
 Name:          dosbox
-Version:       0.58
-Release:       1
-License:       GPL
+Version:       0.74
+Release:       4
+License:       GPL v2+
 Group:         Applications/Emulators
-Source0:       http://dl.sf.net/%{name}/%{name}-%{version}.tar.gz
+Source0:       http://downloads.sourceforge.net/dosbox/%{name}-%{version}.tar.gz
+# Source0-md5: b9b240fa87104421962d14eee71351e8
+Source1:       %{name}.desktop
+Source2:       %{name}.png
+Source3:       %{name}.conf
+Patch0:                %{name}-gcc46.patch
+URL:           http://dosbox.sourceforge.net/
+BuildRequires: OpenGL-devel
+# because of SDL_opengl deps
+BuildRequires: OpenGL-GLU-devel
+BuildRequires: SDL-devel >= 1.2.0
+BuildRequires: SDL_net-devel
+BuildRequires: SDL_sound-devel
+%{?with_alsa:BuildRequires:    alsa-lib-devel >= 0.9.0}
+BuildRequires: autoconf
+BuildRequires: automake
 BuildRequires: libpng-devel
+BuildRequires: libstdc++-devel
 %{?debug:BuildRequires:        ncurses-devel}
-BuildRequires: SDL-devel
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define                specflags       -fmerge-all-constants -ffast-math
+
 %description
-DOSBox emulates a 286/386 realmode CPU, Directory FileSystem/XMS/EMS, a
-SoundBlaster card for excellent sound compatibility with older games...
+DOSBox emulates a 286/386 realmode/protected mode CPU, Directory
+FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a
+SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility
+with older games...
 
-You can "re-live" the good old days with the help of DOSBox, it can run plenty
-of the old classics that don't run on your new computer!
+You can "re-live" the good old days with the help of DOSBox, it can
+run plenty of the old classics that don't run on your new computer!
 
-%description -l pl
-DOSBox emuluje tryb rzeczywisty procesora 286/386, system plików z
-katalogami, pamiêæ XMS/EMS oraz kartê SoundBlaster w celu zapewnienia
-znakomitej kompatybilno¶ci ze starymi grami.
+%description -l pl.UTF-8
+DOSBox emuluje tryb rzeczywisty/chroniony procesora 286/386, system
+plików z katalogami, pamięć XMS/EMS, karty graficzne
+Tandy/Hercules/CGA/EGA/VGA/VESA oraz karty muzyczne
+SoundBlaster/Gravis Ultra Sound w celu zapewnienia znakomitej
+kompatybilności ze starymi grami.
 
-Stare wspomnienia od¿yj± z pomoc± DOSBoxa. Dziêki niemu mo¿na uruchomiæ
-mnóstwo klasyków, które nie odpalaj± siê na nowych komputerach.
+Stare wspomnienia odżyją z pomocą DOSBoksa. Dzięki niemu można
+uruchomić mnóstwo klasyków, które nie odpalają się na nowych
+komputerach.
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+# kill AM_PATH_SDL and AM_PATH_ALSA, leave only AH_{TOP,BOTTOM}
+tail -n +306 acinclude.m4 > acinclude.m4.tmp
+mv -f acinclude.m4.tmp acinclude.m4
+%if !%{with alsa}
+echo 'AC_DEFUN([AM_PATH_ALSA], [$3])' >> acinclude.m4
+%endif
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
 %configure \
        --enable-shots \
        %{?debug:--enable-debug}
@@ -37,13 +74,23 @@ mn
 %{__make}
 
 %install
-%{__make} install DESTDIR=$RPM_BUILD_ROOT
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_desktopdir},%{_pixmapsdir}}
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
+install %{SOURCE2} $RPM_BUILD_ROOT%{_pixmapsdir}
+install %{SOURCE3} .
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc AUTHORS NEWS README THANKS
+%doc AUTHORS NEWS README THANKS dosbox.conf
 %attr(755,root,root) %{_bindir}/*
-%{_mandir}/man1/*
+%{_mandir}/man1/dosbox.1.gz
+%{_desktopdir}/*.desktop
+%{_pixmapsdir}/dosbox.png
This page took 0.077537 seconds and 4 git commands to generate.