0a8bd8
Name:       SDL
0a8bd8
Version:    1.2.15
0a8bd8
Release:    13%{?dist}
0a8bd8
Summary:    A cross-platform multimedia library
0a8bd8
Group:      System Environment/Libraries
0a8bd8
URL:        http://www.libsdl.org/
0a8bd8
# The license of the file src/video/fbcon/riva_mmio.h is bad, but the contents
0a8bd8
# of the file has been relicensed to MIT in 2008 by Nvidia for the 
0a8bd8
# xf86_video-nv driver, therefore it can be considered ok.
0a8bd8
License:    LGPLv2+
0a8bd8
# Source: http://www.libsdl.org/release/%%{name}-%%{version}.tar.gz
0a8bd8
# To create the repackaged archive use ./repackage.sh %%{version}
0a8bd8
Source0:    %{name}-%{version}_repackaged.tar.gz
0a8bd8
Source1:    SDL_config.h
0a8bd8
Source2:    repackage.sh
0a8bd8
Patch0:     SDL-1.2.12-multilib.patch
0a8bd8
# Rejected by upstream as sdl1155, rh480065
0a8bd8
Patch1:     SDL-1.2.10-GrabNotViewable.patch
0a8bd8
# Proposed to upstream as sdl1680, rh891973
0a8bd8
Patch2:     SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch
0a8bd8
# Proposded to upstream as sdl1769
0a8bd8
Patch3:     SDL-1.2.15-const_XData32.patch
0a8bd8
# sdl-config(1) manual from Debian, rh948864
0a8bd8
Patch4:     SDL-1.2.15-add_sdl_config_man.patch
0a8bd8
0a8bd8
BuildRequires:  alsa-lib-devel
0a8bd8
BuildRequires:  audiofile-devel
0a8bd8
BuildRequires:  mesa-libGL-devel
0a8bd8
BuildRequires:  mesa-libGLU-devel
0a8bd8
BuildRequires:  libXext-devel
0a8bd8
BuildRequires:  libX11-devel
0a8bd8
BuildRequires:  libXrandr-devel
0a8bd8
BuildRequires:  libXrender-devel
0a8bd8
BuildRequires:  pulseaudio-libs-devel
0a8bd8
%ifarch %{ix86}
0a8bd8
BuildRequires:  nasm
0a8bd8
%endif
0a8bd8
# Autotools
0a8bd8
BuildRequires:  automake
0a8bd8
BuildRequires:  autoconf
0a8bd8
BuildRequires:  libtool
0a8bd8
0a8bd8
%description
0a8bd8
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
0a8bd8
to provide fast access to the graphics frame buffer and audio device.
0a8bd8
0a8bd8
%package devel
0a8bd8
Summary:    Files needed to develop Simple DirectMedia Layer applications
0a8bd8
Group:      Development/Libraries
0a8bd8
Requires:   SDL%{?_isa} = %{version}-%{release}
0a8bd8
Requires:   alsa-lib-devel
0a8bd8
Requires:   mesa-libGL-devel
0a8bd8
Requires:   mesa-libGLU-devel
0a8bd8
Requires:   libX11-devel
0a8bd8
Requires:   libXext-devel
0a8bd8
Requires:   libXrandr-devel
0a8bd8
Requires:   libXrender-devel
0a8bd8
0a8bd8
%description devel
0a8bd8
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
0a8bd8
to provide fast access to the graphics frame buffer and audio device. This
0a8bd8
package provides the libraries, include files, and other resources needed for
0a8bd8
developing SDL applications.
0a8bd8
0a8bd8
%package static
0a8bd8
Summary:    Files needed to develop static Simple DirectMedia Layer applications
0a8bd8
Group:      Development/Libraries
0a8bd8
Requires:   SDL-devel%{?_isa} = %{version}-%{release}
0a8bd8
0a8bd8
%description static
0a8bd8
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
0a8bd8
to provide fast access to the graphics frame buffer and audio device. This
0a8bd8
package provides the static libraries needed for developing static SDL
0a8bd8
applications.
0a8bd8
0a8bd8
%prep
0a8bd8
%setup -q -b0
0a8bd8
%patch0 -p1 -b .multilib
0a8bd8
%patch1 -p0 -b .grabnotviewable
0a8bd8
%patch2 -p1 -b .gamma
0a8bd8
%patch3 -p1 -b .XData32
0a8bd8
%patch4 -p1 -b .sdl_config_man
0a8bd8
for F in CREDITS; do 
0a8bd8
    iconv -f iso8859-1 -t utf-8 < "$F" > "${F}.utf"
0a8bd8
    touch --reference "$F" "${F}.utf"
0a8bd8
    mv "${F}.utf" "$F"
0a8bd8
done
0a8bd8
# Compilation without ESD
0a8bd8
sed -i -e 's/.*AM_PATH_ESD.*//' configure.in
0a8bd8
# Update config.sub to support aarch64, bug #926510
0a8bd8
cp -p %{_datadir}/automake-*/config.{sub,guess} build-scripts
0a8bd8
0a8bd8
%build
0a8bd8
aclocal
0a8bd8
libtoolize
0a8bd8
autoconf
0a8bd8
%configure \
0a8bd8
    --disable-video-svga \
0a8bd8
    --disable-video-ggi \
0a8bd8
    --disable-video-aalib \
0a8bd8
    --enable-sdl-dlopen \
0a8bd8
    --disable-arts \
0a8bd8
    --disable-esd \
0a8bd8
    --enable-pulseaudio-shared \
0a8bd8
    --enable-alsa \
0a8bd8
    --disable-video-ps3 \
0a8bd8
    --disable-rpath
0a8bd8
make %{?_smp_mflags}
0a8bd8
0a8bd8
%install
0a8bd8
make install DESTDIR=%{buildroot}
0a8bd8
0a8bd8
# Rename SDL_config.h to SDL_config-<arch>.h to avoid file conflicts on
0a8bd8
# multilib systems and install SDL_config.h wrapper
0a8bd8
mv %{buildroot}/%{_includedir}/SDL/SDL_config.h %{buildroot}/%{_includedir}/SDL/SDL_config-%{_arch}.h
0a8bd8
install -m644 %{SOURCE1} %{buildroot}/%{_includedir}/SDL/SDL_config.h
0a8bd8
0a8bd8
# remove libtool .la file
0a8bd8
rm -f %{buildroot}%{_libdir}/*.la
0a8bd8
0a8bd8
%post -p /sbin/ldconfig
0a8bd8
0a8bd8
%postun -p /sbin/ldconfig
0a8bd8
0a8bd8
%files
0a8bd8
%doc BUGS COPYING CREDITS README-SDL.txt
0a8bd8
%{_libdir}/lib*.so.*
0a8bd8
0a8bd8
%files devel
0a8bd8
%doc README docs.html docs/html docs/index.html TODO WhatsNew
0a8bd8
%{_bindir}/*-config
0a8bd8
%{_libdir}/lib*.so
0a8bd8
%{_libdir}/pkgconfig/sdl.pc
0a8bd8
%{_includedir}/SDL
0a8bd8
%{_datadir}/aclocal/*
0a8bd8
%{_mandir}/man1/*
0a8bd8
%{_mandir}/man3/SDL*.3*
0a8bd8
0a8bd8
%files static
0a8bd8
%{_libdir}/lib*.a
0a8bd8
0a8bd8
%changelog
0a8bd8
* Tue Jun 10 2014 Petr Pisar <ppisar@redhat.com> - 1.2.15-13
0a8bd8
- Add support for ppc64le architecture (bug #1119370)
0a8bd8
- bump version to match changelog
0a8bd8
0a8bd8
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.2.15-11
0a8bd8
- Mass rebuild 2014-01-24
0a8bd8
0a8bd8
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.2.15-10
0a8bd8
- Mass rebuild 2013-12-27
0a8bd8
0a8bd8
* Wed Jun 19 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-9
0a8bd8
- Add sdl-config(1) manual page (bug #948864)
0a8bd8
0a8bd8
* Thu May 23 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-8
0a8bd8
- Update header files to support aarch64 (bug #966115)
0a8bd8
0a8bd8
* Wed Mar 27 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-7
0a8bd8
- Update config.sub to support aarch64 (bug #926510)
0a8bd8
- Adapt to libX11-1.5.99.901
0a8bd8
0a8bd8
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-6
0a8bd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0a8bd8
0a8bd8
* Wed Jan 23 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-5
0a8bd8
- Work around bug in Xorg to allow changing gamma on X11 (bug #891973)
0a8bd8
0a8bd8
* Mon Sep 10 2012 Petr Pisar <ppisar@redhat.com> - 1.2.15-4
0a8bd8
- GL and GLU headers have been moved to mesa-GL-devel and mesa-GLU-devel
0a8bd8
0a8bd8
* Thu Aug 23 2012 Matthias Clasen <mclasen@redhat.com> - 1.2.15-3
0a8bd8
- Drop esound and arts support (bug #851349)
0a8bd8
0a8bd8
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-2
0a8bd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0a8bd8
0a8bd8
* Thu Feb 23 2012 Petr Pisar <ppisar@redhat.com> - 1.2.15-1
0a8bd8
- Beautify spec code
0a8bd8
- 1.2.15 bump
0a8bd8
0a8bd8
* Thu Jan 19 2012 Petr Pisar <ppisar@redhat.com> - 1.2.14-16
0a8bd8
- Replace my patch with upstream one (bug #782251)
0a8bd8
0a8bd8
* Tue Jan 17 2012 Petr Pisar <ppisar@redhat.com> - 1.2.14-15
0a8bd8
- Restore compatibility with libX11-1.4.99.1 (bug #782251)
0a8bd8
0a8bd8
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.14-14
0a8bd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0a8bd8
0a8bd8
* Fri Aug 26 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-13
0a8bd8
- Don't block SDL_WM_GrabInput() if window is not viewable (bug #480065)
0a8bd8
0a8bd8
* Thu Feb 24 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-12
0a8bd8
- Adapt to nasm-2.09 (bug #678818)
0a8bd8
0a8bd8
* Fri Feb 18 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-11
0a8bd8
- Correct patch application
0a8bd8
- Make intradependecies architecture specific
0a8bd8
0a8bd8
* Fri Feb 18 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-10
0a8bd8
- Do not call memcpy() on overlapping areas (bug #669844)
0a8bd8
0a8bd8
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.14-9
0a8bd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0a8bd8
0a8bd8
* Mon Aug 16 2010 Petr Pisar <ppisar@redhat.com> - 1.2.14-8
0a8bd8
- Kernel joystick structure has grown in unknown 2.6 Linux version (rh624241,
0a8bd8
  sdl900)
0a8bd8
0a8bd8
* Thu Aug 12 2010 Petr Pisar <ppisar@redhat.com> - 1.2.14-7
0a8bd8
- Fix left button press event in windowed mode (rh556608, sdl894)
0a8bd8
- Remove unrecognized --disable-debug and --enable-dlopen configure options
0a8bd8
  (rh581056)
0a8bd8
0a8bd8
* Mon Aug 02 2010 Petr Pisar <ppisar@redhat.com> - 1.2.14-6
0a8bd8
- Make repacked source tar ball relative
0a8bd8
- Remove useless src/joystick/darwin/10.3.9-FIX/IOHIDLib.h because of APSL-2.0
0a8bd8
  license
0a8bd8
- Apply SDL-1.2.14-xio_error-rh603984.patch (rh603984, sdl1009)
0a8bd8
- Escape spec file comments
0a8bd8
- Convert CREDITS to UTF-8
0a8bd8
0a8bd8
* Wed Jun 23 2010 Hans de Goede <hdegoede@redhat.com> 1.2.14-5
0a8bd8
- Don't crash when trying to exit because of an xio-error (rh603984, sdl1009)
0a8bd8
0a8bd8
* Wed Mar 24 2010 Thomas Woerner <twoerner@redhat.com> 1.2.14-4
0a8bd8
- added repackage.sh script to remove joyos2,h and symbian.zip because of
0a8bd8
  licensing problems
0a8bd8
- added comment about riva_mmio.h license
0a8bd8
0a8bd8
* Tue Feb 16 2010 Josh Boyer <jwboyer@gmail.com> 1.2.14-3
0a8bd8
- disable ps3 video support that was added in 2.14.  It fails to
0a8bd8
  build on ppc/ppc64
0a8bd8
0a8bd8
* Fri Feb 12 2010 Thomas Woerner <twoerner@redhat.com> 1.2.14-2
0a8bd8
- fixed build for libtool 2.2.6 in F-13 (rhbz#555501)
0a8bd8
0a8bd8
* Tue Oct 27 2009 Thomas Woerner <twoerner@redhat.com> 1.2.14-1
0a8bd8
- new version 1.2.14
0a8bd8
- dropped patches for upstream fixes: libdir, dynamic-esd, x11dyn64,
0a8bd8
  dynamic-pulse, pa-rewrite, rh484362 and rh487720
0a8bd8
0a8bd8
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-10
0a8bd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0a8bd8
0a8bd8
* Tue Apr  7 2009 Thomas Woerner <twoerner@redhat.com> 1.2.13-9
0a8bd8
- fixed qemu-kvm segfaults on startup in SDL_memcpyMMX/SSE (rhbz#487720)
0a8bd8
  upstream patch
0a8bd8
0a8bd8
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-8
0a8bd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0a8bd8
0a8bd8
* Fri Feb 13 2009 Hans de Goede <hdegoede@redhat.com> 1.2.13-7
0a8bd8
- Rewrite pulseaudio support to stop the crackle crackle with the
0a8bd8
  new glitch free pulseaudio, this also gives us much better latency,
0a8bd8
  as good as with directly using alsa (rh 474745, sdl 698)
0a8bd8
- Workaround an obscure bug in the inline-asm revcpy function (by disabling it) 
0a8bd8
  This fixes Ri-li crashing on i386 (rh 484121, rh 484362, sdl 699)
0a8bd8
0a8bd8
* Tue Sep  2 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-6
0a8bd8
- dropped pulseaudio hack (rhbz#448270)
0a8bd8
- pulseaudio is now used by default
0a8bd8
- simplified spec file for new architecture support (rhbz#433618)
0a8bd8
0a8bd8
* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.13-5
0a8bd8
- fix license tag
0a8bd8
0a8bd8
* Wed May 28 2008 Dennis Gilmore <dennis@ausil.us> 1.2.13-4
0a8bd8
- fix sparc multilib handling
0a8bd8
0a8bd8
* Mon Apr  7 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-3
0a8bd8
- updated PulseAudio driver (rhbz#439847)
0a8bd8
  Thanks to Lennart Poettering for the patch
0a8bd8
0a8bd8
* Fri Feb  1 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-2
0a8bd8
- new static sub package for static libraries
0a8bd8
0a8bd8
* Mon Jan  7 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-1
0a8bd8
- new version 1.2.13
0a8bd8
  - fixes i810 video overlay problem (rhbz#310841)
0a8bd8
  - fixes c++ style comments in header files (rhbz#426475)
0a8bd8
- review fixes: spec file cleanup, dropped static libs (rhbz#226402)
0a8bd8
- fixed pulseaudio hack scripts from Warren for multilib systems (rhbz#426579)
0a8bd8
- fixed pulseaudio detection in configure to enable dynamic use of pulseaudio
0a8bd8
  libraries
0a8bd8
0a8bd8
* Fri Dec 21 2007 Warren Togami <wtogami@redhat.com> 1.2.12-5
0a8bd8
- correct stupid mistake that broke SDL-devel
0a8bd8
  RPM should error out if a SourceX is defined twice...
0a8bd8
0a8bd8
* Wed Dec 19 2007 Warren Togami <wtogami@redhat.com> 1.2.12-4
0a8bd8
- Build with --enable-pulseaudio-shared for testing purposes (#343911)
0a8bd8
  It is known to not work in some cases, so not enabled by default.
0a8bd8
- Move pulseaudio enabler hack from SDL_mixer (#426275)
0a8bd8
- Make pulseaudio enabler hack conditional.  It will only attempt to use it if
0a8bd8
  alsa-plugins-pulseaudio is installed.
0a8bd8
0a8bd8
* Tue Nov  6 2007 Thomas Woerner <twoerner@redhat.com> 1.2.12-3
0a8bd8
- fixed latest multiarch conflicts: dropped libdir from sdl-config completely
0a8bd8
  (rhbz#343141)
0a8bd8
0a8bd8
* Tue Aug 28 2007 Thomas Woerner <twoerner@redhat.com> 1.2.12-2
0a8bd8
- use uname -m in multilib patch instead of arch
0a8bd8
0a8bd8
* Mon Aug 27 2007 Thomas Woerner <twoerner@redhat.com> 1.2.12-1
0a8bd8
- new version 1.2.12
0a8bd8
  fixes TEXTRELs (rhbz#179407)
0a8bd8
- added arm support (rhbz#245411)
0a8bd8
  Thanks to Lennert Buytenhek for the patch
0a8bd8
- added alpha support (rhbz#246463)
0a8bd8
  Thanks to Oliver Falk for the patch
0a8bd8
- disabled yasm for SDL (rhbz#234823)
0a8bd8
  Thanks to Nikolay Ulyanitsky for the patch
0a8bd8
0a8bd8
* Tue Mar 20 2007 Thomas Woerner <twoerner@redhat.com> 1.2.11-2
0a8bd8
- use X11 dlopen code for 64 bit architectures (rhbz#207903)
0a8bd8
0a8bd8
* Mon Mar 19 2007 Thomas Woerner <twoerner@redhat.com> 1.2.11-1
0a8bd8
- new version 1.2.11
0a8bd8
- fixed man page SDL_ListModes (rhbz#208212)
0a8bd8
- fixed spurious esound, audiofile dependencies (rhbz#217389)
0a8bd8
  Thanks to Ville Skyttä for the patch
0a8bd8
- dropped requirements for imake and libXt-devel (rhbz#226402)
0a8bd8
- made nasm arch %%{ix86} only (rhbz#226402)
0a8bd8
- dropped O3 from options (rhbz#226402)
0a8bd8
- dropped tagname environment variable (rhbz#226402)
0a8bd8
0a8bd8
* Thu Nov  2 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-9
0a8bd8
- fixed arch order in SDL_config.h wrapper
0a8bd8
0a8bd8
* Fri Oct 27 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-8
0a8bd8
- fixed multilib conflicts for SDL (#212288)
0a8bd8
0a8bd8
* Wed Jul 26 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-6.2
0a8bd8
- setting the X11 lib and include paths hard to get shared X11 support on all
0a8bd8
  architectures
0a8bd8
0a8bd8
* Wed Jul 26 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-6.1
0a8bd8
- added build requires for automake and autoconf
0a8bd8
0a8bd8
* Tue Jul 25 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-6
0a8bd8
- dropped libXt build requires, because libSDL does not need libXt at all - 
0a8bd8
  this was an autofoo bug (fixed already)
0a8bd8
- fixed multilib devel conflicts (#192749)
0a8bd8
- added buidrequires for imake: AC_PATH_X needs imake currently
0a8bd8
0a8bd8
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.10-5
0a8bd8
- rebuild
0a8bd8
- use %%configure macro
0a8bd8
0a8bd8
* Tue Jun 20 2006 Christopher Stone <chris.stone@gmail.com> 1.2.10-4
0a8bd8
- added missing (build) requires for libXt libXrender libXrandr
0a8bd8
- remove %%makeinstall macro (bad practice)
0a8bd8
- use %%{buildroot} macro consistantly
0a8bd8
0a8bd8
* Tue Jun  6 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-2
0a8bd8
- added missing (build) requires for GL and GLU
0a8bd8
0a8bd8
* Mon May 22 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-1
0a8bd8
- new version 1.2.10
0a8bd8
- dropped the following patches because they are not needed anymore:
0a8bd8
  ppc_modes, gcc4, yuv_mmx_gcc4 and no_exec_stack
0a8bd8
- new pagesize patch (drop PAGE_SIZE, use sysconf(_SC_PAGESIZE) instead)
0a8bd8
0a8bd8
* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-5.2.1
0a8bd8
- rebump for build order issues during double-long bump
0a8bd8
0a8bd8
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-5.2
0a8bd8
- bump again for double-long bug on ppc(64)
0a8bd8
0a8bd8
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-5.1
0a8bd8
- rebuilt for new gcc4.1 snapshot and glibc changes
0a8bd8
0a8bd8
* Fri Jan 27 2006 Thomas Woerner <twoerner@redhat.com> 1.2.9-5
0a8bd8
- added upstream no exec stack patch
0a8bd8
0a8bd8
* Thu Jan 26 2006 Thomas Woerner <twoerner@redhat.com> 1.2.9-4
0a8bd8
- prefer alsa sound output, then artsd and esd
0a8bd8
0a8bd8
* Tue Jan 24 2006 Thomas Woerner <twoerner@redhat.com> 1.2.9-3
0a8bd8
- dropped libtool .la files from devel package
0a8bd8
0a8bd8
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
0a8bd8
- rebuilt
0a8bd8
0a8bd8
* Wed Nov 16 2005 Thomas Woerner <twoerner@redhat.com> 1.2.9-2.1
0a8bd8
- fixed build requires
0a8bd8
0a8bd8
* Tue Nov 15 2005 Warren Togami <wtogami@redhat.com> 1.2.9-2
0a8bd8
- -devel req actual X libs
0a8bd8
0a8bd8
* Mon Nov  7 2005 Thomas Woerner <twoerner@redhat.com> 1.2.9-1
0a8bd8
- new version 1.2.9 with additional gcc4 fixes
0a8bd8
- using xorg-x11-devel instead of XFree86-devel
0a8bd8
0a8bd8
* Thu May 26 2005 Bill Nottingham <notting@redhat.com> 1.2.8-3.2
0a8bd8
- fix configure script for libdir so library deps are identical on all
0a8bd8
  arches (#158346)
0a8bd8
0a8bd8
* Thu Apr 14 2005 Thomas Woerner <twoerner@redhat.com> 1.2.8-3.1
0a8bd8
- new version of the gcc4 fix
0a8bd8
0a8bd8
* Tue Apr 12 2005 Thomas Woerner <twoerner@redhat.com> 1.2.8-3
0a8bd8
- fixed gcc4 compile problems
0a8bd8
- fixed x86_64 endian problem
0a8bd8
0a8bd8
* Wed Feb  9 2005 Thomas Woerner <twoerner@redhat.com> 1.2.8-2
0a8bd8
- rebuild
0a8bd8
0a8bd8
* Fri Dec 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.8-1
0a8bd8
- new version 1.2.8
0a8bd8
0a8bd8
* Thu Oct 14 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-8
0a8bd8
- added patch from SDL CVS for arts detection/initialization problem (#113831)
0a8bd8
0a8bd8
* Wed Sep 29 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-7.1
0a8bd8
- moved to new autofoo utils
0a8bd8
0a8bd8
* Fri Jul  9 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-7
0a8bd8
- fixed resolution switching for ppc (#127254)
0a8bd8
0a8bd8
* Mon Jun 21 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-6
0a8bd8
- fixed gcc34 build problems
0a8bd8
0a8bd8
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
0a8bd8
- rebuilt
0a8bd8
0a8bd8
* Mon May 24 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-4
0a8bd8
- added requires for alsa-lib-devel (#123374)
0a8bd8
0a8bd8
* Wed Mar 31 2004 Harald Hoyer <harald@redhat.com> - 1.2.7-3
0a8bd8
- fixed gcc34 compilation issues
0a8bd8
0a8bd8
* Wed Mar 10 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-2.1
0a8bd8
- added buildrequires for alsa-lib-devel
0a8bd8
- now using automake 1.5
0a8bd8
0a8bd8
* Tue Mar  9 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-2
0a8bd8
- Fixed SDL requires for devel package
0a8bd8
0a8bd8
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
0a8bd8
- rebuilt
0a8bd8
- Revive SDL-ppc64.patch
0a8bd8
0a8bd8
* Mon Mar  1 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-1
0a8bd8
- new version 1.2.7
0a8bd8
0a8bd8
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
0a8bd8
- rebuilt
0a8bd8
0a8bd8
* Thu Feb  5 2004 Thomas Woerner <twoerner@redhat.com> 1.2.6-3.1
0a8bd8
- disabled several video modes, hopefuilly fixes (#113831)
0a8bd8
0a8bd8
* Thu Jan 29 2004 Thomas Woerner <twoerner@redhat.com> 1.2.6-3
0a8bd8
- fix for alsa 1.0
0a8bd8
0a8bd8
* Tue Nov 25 2003 Thomas Woerner <twoerner@redhat.com> 1.2.6-2
0a8bd8
- removed rpath
0a8bd8
- using O3 instead of O2, now (SDL_RLEaccel.c compile error)
0a8bd8
- added BuildRequires for nasm
0a8bd8
0a8bd8
* Tue Sep  2 2003 Thomas Woerner <twoerner@redhat.com> 1.2.6-1
0a8bd8
- new version 1.2.6
0a8bd8
0a8bd8
* Thu Aug  7 2003 Elliot Lee <sopwith@redhat.com> 1.2.5-9
0a8bd8
- Fix libtool
0a8bd8
0a8bd8
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
0a8bd8
- rebuilt
0a8bd8
0a8bd8
* Wed Jun  4 2003 Than Ngo <than@redhat.com> 1.2.5-7
0a8bd8
- fix build problem with gcc 3.3
0a8bd8
- clean up specfile
0a8bd8
0a8bd8
* Mon May 19 2003 Thomas Woerner  <twoerner@redhat.com> 1.2.5-5
0a8bd8
- rebuild
0a8bd8
0a8bd8
* Tue Apr 15 2003 Thomas Woerner  <twoerner@redhat.com> 1.2.5-4
0a8bd8
- X11 modes fix (use more than 60 Hz, when possible)
0a8bd8
0a8bd8
* Mon Feb 17 2003 Elliot Lee <sopwith@redhat.com> 1.2.5-3.5
0a8bd8
- ppc64 fix
0a8bd8
0a8bd8
* Mon Feb 10 2003 Thomas Woerner  <twoerner@redhat.com> 1.2.5-3
0a8bd8
- added -fPIC to LDFLAGS
0a8bd8
0a8bd8
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
0a8bd8
- rebuilt
0a8bd8
0a8bd8
* Tue Dec 10 2002 Thomas Woerner <twoerner@redhat.com> 1.2.5-1
0a8bd8
- new version 1.2.5
0a8bd8
- disabled conflicting automake16 patch
0a8bd8
- dgavideo modes fix (#78861)
0a8bd8
0a8bd8
* Sun Dec 01 2002 Elliot Lee <sopwith@redhat.com> 1.2.4-7
0a8bd8
- Fix unpackaged files by including them.
0a8bd8
- _smp_mflags
0a8bd8
0a8bd8
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 1.2.4-6
0a8bd8
- remove unpackaged files from the buildroot
0a8bd8
- lib64'ize
0a8bd8
0a8bd8
* Sat Jul 20 2002 Florian La Roche <Florian.LaRoche@redhat.de>
0a8bd8
- do not require nasm for mainframe
0a8bd8
0a8bd8
* Tue Jul  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-4
0a8bd8
- Fix bug #67255
0a8bd8
0a8bd8
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
0a8bd8
- automated rebuild
0a8bd8
0a8bd8
* Sun May 26 2002 Tim Powers <timp@redhat.com>
0a8bd8
- automated rebuild
0a8bd8
0a8bd8
* Thu May 23 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-1
0a8bd8
- 1.2.4
0a8bd8
- Fix build with automake 1.6
0a8bd8
0a8bd8
* Mon Mar 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-7
0a8bd8
- Fix AM_PATH_SDL automake macro with AC_LANG(c++) (#60533)
0a8bd8
0a8bd8
* Thu Feb 28 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-6
0a8bd8
- Rebuild in current environment
0a8bd8
0a8bd8
* Thu Jan 24 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-5
0a8bd8
- dlopen() aRts and esd rather than linking directly to them.
0a8bd8
- make sure aRts and esd are actually used if they're running.
0a8bd8
0a8bd8
* Mon Jan 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-4
0a8bd8
- Don't crash without xv optimization: BuildRequire a version of nasm that
0a8bd8
  works.
0a8bd8
0a8bd8
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
0a8bd8
- automated rebuild
0a8bd8
0a8bd8
* Mon Dec 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-2
0a8bd8
- Rebuild with new aRts, require arts-devel rather than kdelibs-sound-devel
0a8bd8
- Temporarily exclude alpha (compiler bugs)
0a8bd8
0a8bd8
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-1
0a8bd8
- 1.2.3
0a8bd8
0a8bd8
* Sat Nov 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-5
0a8bd8
- Add workaround for automake 1.5 asm bugs
0a8bd8
0a8bd8
* Tue Oct 30 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-4
0a8bd8
- Make sure -fPIC is used on all architectures (#55039)
0a8bd8
- Fix build with autoconf 2.5x
0a8bd8
0a8bd8
* Fri Aug 31 2001 Bill Nottingham <notting@redhat.com> 1.2.2-3
0a8bd8
- rebuild (fixes #50750??)
0a8bd8
0a8bd8
* Thu Aug  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-2
0a8bd8
- SDL-devel should require esound-devel and kdelibs-sound-devel (#44884)
0a8bd8
0a8bd8
* Tue Jul 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-1
0a8bd8
- Update to 1.2.2; this should fix #47941
0a8bd8
- Add build dependencies
0a8bd8
0a8bd8
* Tue Jul 10 2001 Elliot Lee <sopwith@redhat.com> 1.2.1-3
0a8bd8
- Rebuild to eliminate libXv/libXxf86dga deps.
0a8bd8
0a8bd8
* Fri Jun 29 2001 Preston Brown <pbrown@redhat.com>
0a8bd8
- output same libraries for sdl-config whether --libs or --static-libs 
0a8bd8
  selected.  Fixes compilation of most SDL programs.
0a8bd8
- properly packaged new HTML documentation
0a8bd8
0a8bd8
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.1-1
0a8bd8
- 1.2.1
0a8bd8
0a8bd8
* Mon May  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.0-2
0a8bd8
- Add Bill's byteorder patch
0a8bd8
0a8bd8
* Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
0a8bd8
- 1.2.0
0a8bd8
0a8bd8
* Tue Feb 27 2001 Karsten Hopp <karsten@redhat.de>
0a8bd8
- SDL-devel requires SDL
0a8bd8
0a8bd8
* Tue Jan 16 2001 Bernhard Rosenkraenzer <bero@redhat.com>
0a8bd8
- Require arts rather than kdelibs-sound
0a8bd8
0a8bd8
* Sun Jan  7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
0a8bd8
- 1.1.7
0a8bd8
0a8bd8
* Tue Oct 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0a8bd8
- 1.1.6
0a8bd8
0a8bd8
* Mon Aug  7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0a8bd8
- build against new DGA
0a8bd8
- update to 1.1.4, remove patches (they're now in the base release)
0a8bd8
0a8bd8
* Tue Aug  1 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0a8bd8
- %%post -p /sbin/ldconfig (Bug #14928)
0a8bd8
- add URL
0a8bd8
0a8bd8
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
0a8bd8
- automatic rebuild
0a8bd8
0a8bd8
* Sun Jun 18 2000 Bill Nottingham <notting@redhat.com>
0a8bd8
- replace patch that fell out of SRPM
0a8bd8
0a8bd8
* Tue Jun 13 2000 Preston Brown <pbrown@redhat.com>
0a8bd8
- FHS paths
0a8bd8
- use 1.1 (development) version; everything even from Loki links to it!
0a8bd8
0a8bd8
* Thu May  4 2000 Bill Nottingham <notting@redhat.com>
0a8bd8
- autoconf fixes for ia64
0a8bd8
0a8bd8
* Mon Apr 24 2000 Tim Powers <timp@redhat.com>
0a8bd8
- updated to 1.0.8
0a8bd8
0a8bd8
* Tue Feb 15 2000 Tim Powers <timp@redhat.com>
0a8bd8
- updated to 1.0.4, fixes problems when run in 8bpp
0a8bd8
0a8bd8
* Tue Feb 01 2000 Tim  Powers <timp@redhat.com>
0a8bd8
- applied patch from Hans de Goede <hans@highrise.nl> for fullscreen toggling.
0a8bd8
- using  --enable-video-x11-dgamouse since it smoothes the mouse some.
0a8bd8
0a8bd8
* Sun Jan 30 2000 Tim Powers <timp@redhat.com>
0a8bd8
- updated to 1.0.3, bugfix update
0a8bd8
0a8bd8
* Fri Jan 28 2000 Tim Powers <timp@redhat.com>
0a8bd8
- fixed group etc
0a8bd8
0a8bd8
* Fri Jan 21 2000 Tim Powers <timp@redhat.com>
0a8bd8
- build for 6.2 Powertools
0a8bd8
0a8bd8
* Wed Jan 19 2000 Sam Lantinga <slouken@devolution.com>
0a8bd8
- Re-integrated spec file into SDL distribution
0a8bd8
- 'name' and 'version' come from configure 
0a8bd8
- Some of the documentation is devel specific
0a8bd8
- Removed SMP support from %%build - it doesn't work with libtool anyway
0a8bd8
0a8bd8
* Tue Jan 18 2000 Hakan Tandogan <hakan@iconsult.com>
0a8bd8
- Hacked Mandrake sdl spec to build 1.1
0a8bd8
0a8bd8
* Sun Dec 19 1999 John Buswell <johnb@mandrakesoft.com>
0a8bd8
- Build Release
0a8bd8
0a8bd8
* Sat Dec 18 1999 John Buswell <johnb@mandrakesoft.com>
0a8bd8
- Add symlink for libSDL-1.0.so.0 required by sdlbomber
0a8bd8
- Added docs
0a8bd8
0a8bd8
* Thu Dec 09 1999 Lenny Cartier <lenny@mandrakesoft.com>
0a8bd8
- v 1.0.0
0a8bd8
0a8bd8
* Mon Nov  1 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
0a8bd8
- First spec file for Mandrake distribution.
0a8bd8
0a8bd8
# end of file