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