diff --git a/.SDL.metadata b/.SDL.metadata
new file mode 100644
index 0000000..be113df
--- /dev/null
+++ b/.SDL.metadata
@@ -0,0 +1 @@
+61a0c4976ecc88d1101f1d03105089588d167a40 SOURCES/SDL-1.2.15_repackaged.tar.gz
diff --git a/README.md b/README.md
deleted file mode 100644
index 0e7897f..0000000
--- a/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-The master branch has no content
- 
-Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6
- 
-If you find this file in a distro specific branch, it means that no content has been checked in yet
diff --git a/SOURCES/SDL-1.2.10-GrabNotViewable.patch b/SOURCES/SDL-1.2.10-GrabNotViewable.patch
new file mode 100644
index 0000000..128cf35
--- /dev/null
+++ b/SOURCES/SDL-1.2.10-GrabNotViewable.patch
@@ -0,0 +1,22 @@
+Makes SDL-1.2 SDL_WM_GrabInput() non-blocking in case of SDL window is not
+viewable. Patch provided by <pbonzini@redhat.com>.
+See <http://bugzilla.libsdl.org/show_bug.cgi?id=1155>.
+
+--- ./src/video/x11/SDL_x11wm.c	2007-12-31 04:48:13.000000000 +0000
++++ ./src/video/x11/SDL_x11wm.c	2009-01-15 10:27:14.000000000 +0000
+@@ -351,13 +351,14 @@ SDL_GrabMode X11_GrabInputNoLock(_THIS, 
+ 			result = XGrabPointer(SDL_Display, SDL_Window, True, 0,
+ 						GrabModeAsync, GrabModeAsync,
+ 						SDL_Window, None, CurrentTime);
+-			if ( result == GrabSuccess ) {
++			if ( result == GrabSuccess || result == GrabNotViewable ) {
+ 				break;
+ 			}
+ 			SDL_Delay(100);
+ 		}
+ 		if ( result != GrabSuccess ) {
+ 			/* Uh, oh, what do we do here? */ ;
++			return(SDL_GRAB_OFF);
+ 		}
+ 		/* Now grab the keyboard */
+ 		XGrabKeyboard(SDL_Display, WMwindow, True,
diff --git a/SOURCES/SDL-1.2.12-multilib.patch b/SOURCES/SDL-1.2.12-multilib.patch
new file mode 100644
index 0000000..29e6319
--- /dev/null
+++ b/SOURCES/SDL-1.2.12-multilib.patch
@@ -0,0 +1,25 @@
+diff -up SDL-1.2.12/sdl-config.in.multilib SDL-1.2.12/sdl-config.in
+--- SDL-1.2.12/sdl-config.in.multilib	2007-07-20 07:52:45.000000000 +0200
++++ SDL-1.2.12/sdl-config.in	2007-11-06 17:07:25.000000000 +0100
+@@ -3,7 +3,6 @@
+ prefix=@prefix@
+ exec_prefix=@exec_prefix@
+ exec_prefix_set=no
+-libdir=@libdir@
+ 
+ @ENABLE_STATIC_FALSE@usage="\
+ @ENABLE_STATIC_FALSE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
+@@ -45,11 +44,11 @@ while test $# -gt 0; do
+       echo -I@includedir@/SDL @SDL_CFLAGS@
+       ;;
+ @ENABLE_SHARED_TRUE@    --libs)
+-@ENABLE_SHARED_TRUE@      echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_LIBS@
++@ENABLE_SHARED_TRUE@      echo @SDL_RLD_FLAGS@ @SDL_LIBS@
+ @ENABLE_SHARED_TRUE@      ;;
+ @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@    --static-libs)
+ @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@    --libs|--static-libs)
+-@ENABLE_STATIC_TRUE@      echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_STATIC_LIBS@
++@ENABLE_STATIC_TRUE@      echo @SDL_RLD_FLAGS@ @SDL_STATIC_LIBS@
+ @ENABLE_STATIC_TRUE@      ;;
+     *)
+       echo "${usage}" 1>&2
diff --git a/SOURCES/SDL-1.2.15-add_sdl_config_man.patch b/SOURCES/SDL-1.2.15-add_sdl_config_man.patch
new file mode 100644
index 0000000..6cdf271
--- /dev/null
+++ b/SOURCES/SDL-1.2.15-add_sdl_config_man.patch
@@ -0,0 +1,90 @@
+diff -r 91ad7b43317a Makefile.in
+--- a/Makefile.in	Sun Jun 02 20:48:53 2013 +0600
++++ b/Makefile.in	Wed Jun 19 10:34:27 2013 +0200
+@@ -98,6 +98,11 @@
+ 	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig
+ 	$(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig
+ install-man:
++	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
++	for src in $(srcdir)/docs/man1/*.1; do \
++	    file=`echo $$src | sed -e 's|^.*/||'`; \
++	    $(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man1/$$file; \
++	done
+ 	$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
+ 	for src in $(srcdir)/docs/man3/*.3; do \
+ 	    file=`echo $$src | sed -e 's|^.*/||'`; \
+@@ -120,6 +125,10 @@
+ 	rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4
+ 	rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl.pc
+ uninstall-man:
++	for src in $(srcdir)/docs/man1/*.1; do \
++	    file=`echo $$src | sed -e 's|^.*/||'`; \
++	    rm -f $(DESTDIR)$(mandir)/man1/$$file; \
++	done
+ 	for src in $(srcdir)/docs/man3/*.3; do \
+ 	    file=`echo $$src | sed -e 's|^.*/||'`; \
+ 	    rm -f $(DESTDIR)$(mandir)/man3/$$file; \
+diff -r 91ad7b43317a docs/man1/sdl-config.1
+--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
++++ b/docs/man1/sdl-config.1	Wed Jun 19 10:34:27 2013 +0200
+@@ -0,0 +1,60 @@
++.TH sdl-config 1 "2013-06-19" "SDL 1.2"
++.SH NAME
++sdl-config \- script to get information about the installed version of SDL
++.SH SYNOPSIS
++\fBsdl-config
++[\~--prefix[=\fIDIR\fP]\~]
++[\~--exec-prefix[=\fIDIR\fP]\~]
++[\~--version\~] [\~--cflags\~] [\~--libs\~] [\~--static-libs\~]\fR
++.SH DESCRIPTION
++.B sdl-config
++is a tool that is used to configure and determine the compiler and linker
++flags that should be used to compile and link programs, and libraries, and
++plugins that use SDL.  It is also used internally by the m4 macros that are
++included with SDL.
++.SH OPTIONS
++.TP
++.B --cflags
++Print the compiler flags that are necessary to compile a program or library
++that uses SDL.
++.TP
++.BI --exec-prefix= DIR
++If specified, use
++.I DIR
++instead of the installation exec prefix that SDL was build with when computing
++the output for the --exec-prefix option. This option must be specified before
++any of the --cflags, and --libs options.
++.TP
++.B --libs
++Print the linker flags that are necessary to link a program that uses SDL.
++.TP
++.BI --prefix= DIR
++If specified, use DIR instead of the installation prefix that SDL was built
++with when computing the output for the --prefix, and --exec-prefix options.
++This option is also used for the exec prefix if --exec-prefix was not
++specified. This option must be specified before any of the --cflags, and
++--libs options.
++.TP
++.B --static-libs
++Print the linker flags that are necessary to statically link a program that uses SDL.
++.TP
++.B --version
++Prints the currently installed version of SDL on standard output.
++.SH EXAMPLES
++.TP
++gcc -o main.o $(sdl-config --cflags) main.c
++is how you might use
++.B sdl-config
++to compile a C source file for an executable program.
++.TP
++gcc -o my_app $(sdl-config --libs) main.o util.o
++is how you might use
++.B sdl-config
++to link compiled objects into an executable program.
++.SH AUTHOR
++The Simple DirectMedia Layer (SDL) library was written by Sam Lantinga.
++.PP
++This manual page was written by Branden Robinson, originally for Progeny
++Linux Systems, Inc., and the Debian Project.
++.PP
++This manual page was modified by Petr Pisar to match original SDL distribution.
diff --git a/SOURCES/SDL-1.2.15-const_XData32.patch b/SOURCES/SDL-1.2.15-const_XData32.patch
new file mode 100644
index 0000000..0f1c07c
--- /dev/null
+++ b/SOURCES/SDL-1.2.15-const_XData32.patch
@@ -0,0 +1,16 @@
+libX11-1.5.99.901 has changed prototype of _XData32
+
+<http://bugzilla.libsdl.org/show_bug.cgi?id=1769>
+
+diff -r b6b2829cd7ef src/video/x11/SDL_x11sym.h
+--- a/src/video/x11/SDL_x11sym.h	Wed Feb 27 15:20:31 2013 -0800
++++ b/src/video/x11/SDL_x11sym.h	Wed Mar 27 16:07:23 2013 +0100
+@@ -165,7 +165,7 @@
+  */
+ #ifdef LONG64
+ SDL_X11_MODULE(IO_32BIT)
+-SDL_X11_SYM(int,_XData32,(Display *dpy,register long *data,unsigned len),(dpy,data,len),return)
++SDL_X11_SYM(int,_XData32,(Display *dpy,register _Xconst long *data,unsigned len),(dpy,data,len),return)
+ SDL_X11_SYM(void,_XRead32,(Display *dpy,register long *data,long len),(dpy,data,len),)
+ #endif
+ 
diff --git a/SOURCES/SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch b/SOURCES/SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch
new file mode 100644
index 0000000..087a134
--- /dev/null
+++ b/SOURCES/SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch
@@ -0,0 +1,44 @@
+From 4b56fa058a45b7c804d1a5fcaf7a70db0bd0581c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <petr.pisar@atlas.cz>
+Date: Tue, 1 Jan 2013 21:25:15 +0100
+Subject: [PATCH] x11: Bypass SetGammaRamp when changing gamma
+
+Recent Xorg has broken dynamic colors setting, so calling SDL_SetGamme()
+does not have any effect here. Recent means xorg-server >= 1.7, since 2010.
+See <https://bugs.freedesktop.org/show_bug.cgi?id=27222>.
+---
+ src/video/SDL_gamma.c |   15 ++-------------
+ 1 files changed, 2 insertions(+), 13 deletions(-)
+
+diff --git a/src/video/SDL_gamma.c b/src/video/SDL_gamma.c
+index 4fd0370..464ab88 100644
+--- a/src/video/SDL_gamma.c
++++ b/src/video/SDL_gamma.c
+@@ -92,22 +92,11 @@ static void CalculateGammaFromRamp(float *gamma, Uint16 *ramp)
+ 
+ int SDL_SetGamma(float red, float green, float blue)
+ {
+-	int succeeded;
++	int succeeded = -1;
+ 	SDL_VideoDevice *video = current_video;
+ 	SDL_VideoDevice *this  = current_video;	
+ 
+-	succeeded = -1;
+-	/* Prefer using SetGammaRamp(), as it's more flexible */
+-	{
+-		Uint16 ramp[3][256];
+-
+-		CalculateGammaRamp(red, ramp[0]);
+-		CalculateGammaRamp(green, ramp[1]);
+-		CalculateGammaRamp(blue, ramp[2]);
+-		succeeded = SDL_SetGammaRamp(ramp[0], ramp[1], ramp[2]);
+-	}
+-	if ( (succeeded < 0) && video->SetGamma ) {
+-		SDL_ClearError();
++	if ( video->SetGamma ) {
+ 		succeeded = video->SetGamma(this, red, green, blue);
+ 	}
+ 	return succeeded;
+-- 
+1.7.8.6
+
diff --git a/SOURCES/SDL_config.h b/SOURCES/SDL_config.h
new file mode 100644
index 0000000..109f879
--- /dev/null
+++ b/SOURCES/SDL_config.h
@@ -0,0 +1,66 @@
+/*
+    SDL - Simple DirectMedia Layer
+    Copyright (C) 1997-2006 Sam Lantinga
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+    Sam Lantinga
+    slouken@libsdl.org
+*/
+
+/*
+ * This SDL_config.h is a wrapper include file for the original SDL_config.h, 
+ * which has been renamed to SDL_config-<arch>.h. There are conflicts for the 
+ * original SDL_config.h on multilib systems, which result from arch-specific
+ * configuration options. Please do not use the arch-specific file directly.
+ *
+ * Copyright (C) 2006 Red Hat, Inc.
+ * Thomas Woerner <twoerner@redhat.com>
+ */
+
+#ifdef SDL_config_wrapper_h
+#error "SDL_config_wrapper_h should not be defined!"
+#endif
+#define SDL_config_wrapper_h
+
+#if defined(__i386__)
+#include "SDL_config-i386.h"
+#elif defined(__ia64__)
+#include "SDL_config-ia64.h"
+#elif defined(__powerpc64__)
+#include "SDL_config-ppc64.h"
+#elif defined(__powerpc__)
+#include "SDL_config-ppc.h"
+#elif defined(__s390x__)
+#include "SDL_config-s390x.h"
+#elif defined(__s390__)
+#include "SDL_config-s390.h"
+#elif defined(__x86_64__)
+#include "SDL_config-x86_64.h"
+#elif defined(__arm__)
+#include "SDL_config-arm.h"
+#elif defined(__alpha__)
+#include "SDL_config-alpha.h"
+#elif defined(__sparc__) && defined (__arch64__)
+#include "SDL_config-sparc64.h"
+#elif defined(__sparc__)
+#include "SDL_config-sparc.h"
+#elif defined(__aarch64__)
+#include "SDL_config-aarch64.h"
+#else
+#error "The SDL-devel package is not usable with the architecture."
+#endif
+
+#undef SDL_config_wrapper_h
diff --git a/SOURCES/repackage.sh b/SOURCES/repackage.sh
new file mode 100755
index 0000000..44d3a34
--- /dev/null
+++ b/SOURCES/repackage.sh
@@ -0,0 +1,59 @@
+#!/bin/bash
+#
+# Copyright (C) 2010 Red Hat, Inc.
+# Authors:
+# Thomas Woerner <twoerner@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+version=$1
+[ -z "$version" ] && { echo "Usage: $0 <version>"; exit 1; }
+
+# files to be removed without the main SDL-<version>/ prefix
+declare -a REMOVE
+REMOVE[${#REMOVE[*]}]="symbian.zip"
+
+# no changes below this line should be needed
+
+orig="SDL-${version}"
+orig_tgz="${orig}.tar.gz"
+repackaged="${orig}_repackaged"
+repackaged_tar="${repackaged}.tar"
+repackaged_tgz="${repackaged_tar}.gz"
+
+# pre checks
+[ ! -f "${orig_tgz}" ] && { echo "ERROR: ${orig_tgz} does not exist"; exit 1; }
+[ -f "${repackaged_tgz}" ] && { echo "ERROR: ${repackaged_tgz} already exist"; exit 1; }
+
+# repackage
+failure=0
+gzip -dc "${orig_tgz}" > "${repackaged_tar}"
+for file in "${REMOVE[@]}"; do
+    tar -f "${repackaged_tar}" --delete "${orig}/${file}" >> repackage.log
+    [ $? != 0 ] && { echo "ERROR: Could not remove file ${orig}/${file} from archive."; failure=1; } || echo "Removed ${orig}/${file} from archive."
+done
+[ $failure != 0 ] && { echo "See repackage.log for details."; exit 1; }
+gzip -9 -n "${repackaged_tar}"
+
+# post checks
+RET=0
+for file in "${REMOVE[@]}"; do
+    found=$(tar -ztvf "${repackaged_tgz}" | grep "${file}")
+    [ -n "$found" ] && { echo "ERROR: file ${file} is still in the repackaged archive."; RET=1; }
+done
+
+[ $RET == 0 ] && echo "Sucessfully repackaged ${orig}: ${repackaged_tgz}"
+
+exit $RET
diff --git a/SPECS/SDL.spec b/SPECS/SDL.spec
new file mode 100644
index 0000000..eb2a7c0
--- /dev/null
+++ b/SPECS/SDL.spec
@@ -0,0 +1,642 @@
+Name:       SDL
+Version:    1.2.15
+Release:    9%{?dist}
+Summary:    A cross-platform multimedia library
+Group:      System Environment/Libraries
+URL:        http://www.libsdl.org/
+# The license of the file src/video/fbcon/riva_mmio.h is bad, but the contents
+# of the file has been relicensed to MIT in 2008 by Nvidia for the 
+# xf86_video-nv driver, therefore it can be considered ok.
+License:    LGPLv2+
+# Source: http://www.libsdl.org/release/%%{name}-%%{version}.tar.gz
+# To create the repackaged archive use ./repackage.sh %%{version}
+Source0:    %{name}-%{version}_repackaged.tar.gz
+Source1:    SDL_config.h
+Source2:    repackage.sh
+Patch0:     SDL-1.2.12-multilib.patch
+# Rejected by upstream as sdl1155, rh480065
+Patch1:     SDL-1.2.10-GrabNotViewable.patch
+# Proposed to upstream as sdl1680, rh891973
+Patch2:     SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch
+# Proposded to upstream as sdl1769
+Patch3:     SDL-1.2.15-const_XData32.patch
+# sdl-config(1) manual from Debian, rh948864
+Patch4:     SDL-1.2.15-add_sdl_config_man.patch
+
+BuildRequires:  alsa-lib-devel
+BuildRequires:  audiofile-devel
+BuildRequires:  mesa-libGL-devel
+BuildRequires:  mesa-libGLU-devel
+BuildRequires:  libXext-devel
+BuildRequires:  libX11-devel
+BuildRequires:  libXrandr-devel
+BuildRequires:  libXrender-devel
+BuildRequires:  pulseaudio-libs-devel
+%ifarch %{ix86}
+BuildRequires:  nasm
+%endif
+# Autotools
+BuildRequires:  automake
+BuildRequires:  autoconf
+BuildRequires:  libtool
+
+%description
+Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
+to provide fast access to the graphics frame buffer and audio device.
+
+%package devel
+Summary:    Files needed to develop Simple DirectMedia Layer applications
+Group:      Development/Libraries
+Requires:   SDL%{?_isa} = %{version}-%{release}
+Requires:   alsa-lib-devel
+Requires:   mesa-libGL-devel
+Requires:   mesa-libGLU-devel
+Requires:   libX11-devel
+Requires:   libXext-devel
+Requires:   libXrandr-devel
+Requires:   libXrender-devel
+
+%description devel
+Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
+to provide fast access to the graphics frame buffer and audio device. This
+package provides the libraries, include files, and other resources needed for
+developing SDL applications.
+
+%package static
+Summary:    Files needed to develop static Simple DirectMedia Layer applications
+Group:      Development/Libraries
+Requires:   SDL-devel%{?_isa} = %{version}-%{release}
+
+%description static
+Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
+to provide fast access to the graphics frame buffer and audio device. This
+package provides the static libraries needed for developing static SDL
+applications.
+
+%prep
+%setup -q -b0
+%patch0 -p1 -b .multilib
+%patch1 -p0 -b .grabnotviewable
+%patch2 -p1 -b .gamma
+%patch3 -p1 -b .XData32
+%patch4 -p1 -b .sdl_config_man
+for F in CREDITS; do 
+    iconv -f iso8859-1 -t utf-8 < "$F" > "${F}.utf"
+    touch --reference "$F" "${F}.utf"
+    mv "${F}.utf" "$F"
+done
+# Compilation without ESD
+sed -i -e 's/.*AM_PATH_ESD.*//' configure.in
+# Update config.sub to support aarch64, bug #926510
+cp -p %{_datadir}/automake-*/config.{sub,guess} build-scripts
+
+%build
+aclocal
+libtoolize
+autoconf
+%configure \
+    --disable-video-svga \
+    --disable-video-ggi \
+    --disable-video-aalib \
+    --enable-sdl-dlopen \
+    --disable-arts \
+    --disable-esd \
+    --enable-pulseaudio-shared \
+    --enable-alsa \
+    --disable-video-ps3 \
+    --disable-rpath
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot}
+
+# Rename SDL_config.h to SDL_config-<arch>.h to avoid file conflicts on
+# multilib systems and install SDL_config.h wrapper
+mv %{buildroot}/%{_includedir}/SDL/SDL_config.h %{buildroot}/%{_includedir}/SDL/SDL_config-%{_arch}.h
+install -m644 %{SOURCE1} %{buildroot}/%{_includedir}/SDL/SDL_config.h
+
+# remove libtool .la file
+rm -f %{buildroot}%{_libdir}/*.la
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%doc BUGS COPYING CREDITS README-SDL.txt
+%{_libdir}/lib*.so.*
+
+%files devel
+%doc README docs.html docs/html docs/index.html TODO WhatsNew
+%{_bindir}/*-config
+%{_libdir}/lib*.so
+%{_libdir}/pkgconfig/sdl.pc
+%{_includedir}/SDL
+%{_datadir}/aclocal/*
+%{_mandir}/man1/*
+%{_mandir}/man3/SDL*.3*
+
+%files static
+%{_libdir}/lib*.a
+
+%changelog
+* Wed Jun 19 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-9
+- Add sdl-config(1) manual page (bug #948864)
+
+* Thu May 23 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-8
+- Update header files to support aarch64 (bug #966115)
+
+* Wed Mar 27 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-7
+- Update config.sub to support aarch64 (bug #926510)
+- Adapt to libX11-1.5.99.901
+
+* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Wed Jan 23 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15-5
+- Work around bug in Xorg to allow changing gamma on X11 (bug #891973)
+
+* Mon Sep 10 2012 Petr Pisar <ppisar@redhat.com> - 1.2.15-4
+- GL and GLU headers have been moved to mesa-GL-devel and mesa-GLU-devel
+
+* Thu Aug 23 2012 Matthias Clasen <mclasen@redhat.com> - 1.2.15-3
+- Drop esound and arts support (bug #851349)
+
+* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Thu Feb 23 2012 Petr Pisar <ppisar@redhat.com> - 1.2.15-1
+- Beautify spec code
+- 1.2.15 bump
+
+* Thu Jan 19 2012 Petr Pisar <ppisar@redhat.com> - 1.2.14-16
+- Replace my patch with upstream one (bug #782251)
+
+* Tue Jan 17 2012 Petr Pisar <ppisar@redhat.com> - 1.2.14-15
+- Restore compatibility with libX11-1.4.99.1 (bug #782251)
+
+* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.14-14
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Aug 26 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-13
+- Don't block SDL_WM_GrabInput() if window is not viewable (bug #480065)
+
+* Thu Feb 24 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-12
+- Adapt to nasm-2.09 (bug #678818)
+
+* Fri Feb 18 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-11
+- Correct patch application
+- Make intradependecies architecture specific
+
+* Fri Feb 18 2011 Petr Pisar <ppisar@redhat.com> - 1.2.14-10
+- Do not call memcpy() on overlapping areas (bug #669844)
+
+* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.14-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Mon Aug 16 2010 Petr Pisar <ppisar@redhat.com> - 1.2.14-8
+- Kernel joystick structure has grown in unknown 2.6 Linux version (rh624241,
+  sdl900)
+
+* Thu Aug 12 2010 Petr Pisar <ppisar@redhat.com> - 1.2.14-7
+- Fix left button press event in windowed mode (rh556608, sdl894)
+- Remove unrecognized --disable-debug and --enable-dlopen configure options
+  (rh581056)
+
+* Mon Aug 02 2010 Petr Pisar <ppisar@redhat.com> - 1.2.14-6
+- Make repacked source tar ball relative
+- Remove useless src/joystick/darwin/10.3.9-FIX/IOHIDLib.h because of APSL-2.0
+  license
+- Apply SDL-1.2.14-xio_error-rh603984.patch (rh603984, sdl1009)
+- Escape spec file comments
+- Convert CREDITS to UTF-8
+
+* Wed Jun 23 2010 Hans de Goede <hdegoede@redhat.com> 1.2.14-5
+- Don't crash when trying to exit because of an xio-error (rh603984, sdl1009)
+
+* Wed Mar 24 2010 Thomas Woerner <twoerner@redhat.com> 1.2.14-4
+- added repackage.sh script to remove joyos2,h and symbian.zip because of
+  licensing problems
+- added comment about riva_mmio.h license
+
+* Tue Feb 16 2010 Josh Boyer <jwboyer@gmail.com> 1.2.14-3
+- disable ps3 video support that was added in 2.14.  It fails to
+  build on ppc/ppc64
+
+* Fri Feb 12 2010 Thomas Woerner <twoerner@redhat.com> 1.2.14-2
+- fixed build for libtool 2.2.6 in F-13 (rhbz#555501)
+
+* Tue Oct 27 2009 Thomas Woerner <twoerner@redhat.com> 1.2.14-1
+- new version 1.2.14
+- dropped patches for upstream fixes: libdir, dynamic-esd, x11dyn64,
+  dynamic-pulse, pa-rewrite, rh484362 and rh487720
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Tue Apr  7 2009 Thomas Woerner <twoerner@redhat.com> 1.2.13-9
+- fixed qemu-kvm segfaults on startup in SDL_memcpyMMX/SSE (rhbz#487720)
+  upstream patch
+
+* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Fri Feb 13 2009 Hans de Goede <hdegoede@redhat.com> 1.2.13-7
+- Rewrite pulseaudio support to stop the crackle crackle with the
+  new glitch free pulseaudio, this also gives us much better latency,
+  as good as with directly using alsa (rh 474745, sdl 698)
+- Workaround an obscure bug in the inline-asm revcpy function (by disabling it) 
+  This fixes Ri-li crashing on i386 (rh 484121, rh 484362, sdl 699)
+
+* Tue Sep  2 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-6
+- dropped pulseaudio hack (rhbz#448270)
+- pulseaudio is now used by default
+- simplified spec file for new architecture support (rhbz#433618)
+
+* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.13-5
+- fix license tag
+
+* Wed May 28 2008 Dennis Gilmore <dennis@ausil.us> 1.2.13-4
+- fix sparc multilib handling
+
+* Mon Apr  7 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-3
+- updated PulseAudio driver (rhbz#439847)
+  Thanks to Lennart Poettering for the patch
+
+* Fri Feb  1 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-2
+- new static sub package for static libraries
+
+* Mon Jan  7 2008 Thomas Woerner <twoerner@redhat.com> 1.2.13-1
+- new version 1.2.13
+  - fixes i810 video overlay problem (rhbz#310841)
+  - fixes c++ style comments in header files (rhbz#426475)
+- review fixes: spec file cleanup, dropped static libs (rhbz#226402)
+- fixed pulseaudio hack scripts from Warren for multilib systems (rhbz#426579)
+- fixed pulseaudio detection in configure to enable dynamic use of pulseaudio
+  libraries
+
+* Fri Dec 21 2007 Warren Togami <wtogami@redhat.com> 1.2.12-5
+- correct stupid mistake that broke SDL-devel
+  RPM should error out if a SourceX is defined twice...
+
+* Wed Dec 19 2007 Warren Togami <wtogami@redhat.com> 1.2.12-4
+- Build with --enable-pulseaudio-shared for testing purposes (#343911)
+  It is known to not work in some cases, so not enabled by default.
+- Move pulseaudio enabler hack from SDL_mixer (#426275)
+- Make pulseaudio enabler hack conditional.  It will only attempt to use it if
+  alsa-plugins-pulseaudio is installed.
+
+* Tue Nov  6 2007 Thomas Woerner <twoerner@redhat.com> 1.2.12-3
+- fixed latest multiarch conflicts: dropped libdir from sdl-config completely
+  (rhbz#343141)
+
+* Tue Aug 28 2007 Thomas Woerner <twoerner@redhat.com> 1.2.12-2
+- use uname -m in multilib patch instead of arch
+
+* Mon Aug 27 2007 Thomas Woerner <twoerner@redhat.com> 1.2.12-1
+- new version 1.2.12
+  fixes TEXTRELs (rhbz#179407)
+- added arm support (rhbz#245411)
+  Thanks to Lennert Buytenhek for the patch
+- added alpha support (rhbz#246463)
+  Thanks to Oliver Falk for the patch
+- disabled yasm for SDL (rhbz#234823)
+  Thanks to Nikolay Ulyanitsky for the patch
+
+* Tue Mar 20 2007 Thomas Woerner <twoerner@redhat.com> 1.2.11-2
+- use X11 dlopen code for 64 bit architectures (rhbz#207903)
+
+* Mon Mar 19 2007 Thomas Woerner <twoerner@redhat.com> 1.2.11-1
+- new version 1.2.11
+- fixed man page SDL_ListModes (rhbz#208212)
+- fixed spurious esound, audiofile dependencies (rhbz#217389)
+  Thanks to Ville Skyttä for the patch
+- dropped requirements for imake and libXt-devel (rhbz#226402)
+- made nasm arch %%{ix86} only (rhbz#226402)
+- dropped O3 from options (rhbz#226402)
+- dropped tagname environment variable (rhbz#226402)
+
+* Thu Nov  2 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-9
+- fixed arch order in SDL_config.h wrapper
+
+* Fri Oct 27 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-8
+- fixed multilib conflicts for SDL (#212288)
+
+* Wed Jul 26 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-6.2
+- setting the X11 lib and include paths hard to get shared X11 support on all
+  architectures
+
+* Wed Jul 26 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-6.1
+- added build requires for automake and autoconf
+
+* Tue Jul 25 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-6
+- dropped libXt build requires, because libSDL does not need libXt at all - 
+  this was an autofoo bug (fixed already)
+- fixed multilib devel conflicts (#192749)
+- added buidrequires for imake: AC_PATH_X needs imake currently
+
+* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.10-5
+- rebuild
+- use %%configure macro
+
+* Tue Jun 20 2006 Christopher Stone <chris.stone@gmail.com> 1.2.10-4
+- added missing (build) requires for libXt libXrender libXrandr
+- remove %%makeinstall macro (bad practice)
+- use %%{buildroot} macro consistantly
+
+* Tue Jun  6 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-2
+- added missing (build) requires for GL and GLU
+
+* Mon May 22 2006 Thomas Woerner <twoerner@redhat.com> 1.2.10-1
+- new version 1.2.10
+- dropped the following patches because they are not needed anymore:
+  ppc_modes, gcc4, yuv_mmx_gcc4 and no_exec_stack
+- new pagesize patch (drop PAGE_SIZE, use sysconf(_SC_PAGESIZE) instead)
+
+* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-5.2.1
+- rebump for build order issues during double-long bump
+
+* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-5.2
+- bump again for double-long bug on ppc(64)
+
+* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-5.1
+- rebuilt for new gcc4.1 snapshot and glibc changes
+
+* Fri Jan 27 2006 Thomas Woerner <twoerner@redhat.com> 1.2.9-5
+- added upstream no exec stack patch
+
+* Thu Jan 26 2006 Thomas Woerner <twoerner@redhat.com> 1.2.9-4
+- prefer alsa sound output, then artsd and esd
+
+* Tue Jan 24 2006 Thomas Woerner <twoerner@redhat.com> 1.2.9-3
+- dropped libtool .la files from devel package
+
+* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
+- rebuilt
+
+* Wed Nov 16 2005 Thomas Woerner <twoerner@redhat.com> 1.2.9-2.1
+- fixed build requires
+
+* Tue Nov 15 2005 Warren Togami <wtogami@redhat.com> 1.2.9-2
+- -devel req actual X libs
+
+* Mon Nov  7 2005 Thomas Woerner <twoerner@redhat.com> 1.2.9-1
+- new version 1.2.9 with additional gcc4 fixes
+- using xorg-x11-devel instead of XFree86-devel
+
+* Thu May 26 2005 Bill Nottingham <notting@redhat.com> 1.2.8-3.2
+- fix configure script for libdir so library deps are identical on all
+  arches (#158346)
+
+* Thu Apr 14 2005 Thomas Woerner <twoerner@redhat.com> 1.2.8-3.1
+- new version of the gcc4 fix
+
+* Tue Apr 12 2005 Thomas Woerner <twoerner@redhat.com> 1.2.8-3
+- fixed gcc4 compile problems
+- fixed x86_64 endian problem
+
+* Wed Feb  9 2005 Thomas Woerner <twoerner@redhat.com> 1.2.8-2
+- rebuild
+
+* Fri Dec 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.8-1
+- new version 1.2.8
+
+* Thu Oct 14 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-8
+- added patch from SDL CVS for arts detection/initialization problem (#113831)
+
+* Wed Sep 29 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-7.1
+- moved to new autofoo utils
+
+* Fri Jul  9 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-7
+- fixed resolution switching for ppc (#127254)
+
+* Mon Jun 21 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-6
+- fixed gcc34 build problems
+
+* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
+- rebuilt
+
+* Mon May 24 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-4
+- added requires for alsa-lib-devel (#123374)
+
+* Wed Mar 31 2004 Harald Hoyer <harald@redhat.com> - 1.2.7-3
+- fixed gcc34 compilation issues
+
+* Wed Mar 10 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-2.1
+- added buildrequires for alsa-lib-devel
+- now using automake 1.5
+
+* Tue Mar  9 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-2
+- Fixed SDL requires for devel package
+
+* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
+- rebuilt
+- Revive SDL-ppc64.patch
+
+* Mon Mar  1 2004 Thomas Woerner <twoerner@redhat.com> 1.2.7-1
+- new version 1.2.7
+
+* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
+- rebuilt
+
+* Thu Feb  5 2004 Thomas Woerner <twoerner@redhat.com> 1.2.6-3.1
+- disabled several video modes, hopefuilly fixes (#113831)
+
+* Thu Jan 29 2004 Thomas Woerner <twoerner@redhat.com> 1.2.6-3
+- fix for alsa 1.0
+
+* Tue Nov 25 2003 Thomas Woerner <twoerner@redhat.com> 1.2.6-2
+- removed rpath
+- using O3 instead of O2, now (SDL_RLEaccel.c compile error)
+- added BuildRequires for nasm
+
+* Tue Sep  2 2003 Thomas Woerner <twoerner@redhat.com> 1.2.6-1
+- new version 1.2.6
+
+* Thu Aug  7 2003 Elliot Lee <sopwith@redhat.com> 1.2.5-9
+- Fix libtool
+
+* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
+- rebuilt
+
+* Wed Jun  4 2003 Than Ngo <than@redhat.com> 1.2.5-7
+- fix build problem with gcc 3.3
+- clean up specfile
+
+* Mon May 19 2003 Thomas Woerner  <twoerner@redhat.com> 1.2.5-5
+- rebuild
+
+* Tue Apr 15 2003 Thomas Woerner  <twoerner@redhat.com> 1.2.5-4
+- X11 modes fix (use more than 60 Hz, when possible)
+
+* Mon Feb 17 2003 Elliot Lee <sopwith@redhat.com> 1.2.5-3.5
+- ppc64 fix
+
+* Mon Feb 10 2003 Thomas Woerner  <twoerner@redhat.com> 1.2.5-3
+- added -fPIC to LDFLAGS
+
+* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
+- rebuilt
+
+* Tue Dec 10 2002 Thomas Woerner <twoerner@redhat.com> 1.2.5-1
+- new version 1.2.5
+- disabled conflicting automake16 patch
+- dgavideo modes fix (#78861)
+
+* Sun Dec 01 2002 Elliot Lee <sopwith@redhat.com> 1.2.4-7
+- Fix unpackaged files by including them.
+- _smp_mflags
+
+* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 1.2.4-6
+- remove unpackaged files from the buildroot
+- lib64'ize
+
+* Sat Jul 20 2002 Florian La Roche <Florian.LaRoche@redhat.de>
+- do not require nasm for mainframe
+
+* Tue Jul  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-4
+- Fix bug #67255
+
+* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
+- automated rebuild
+
+* Sun May 26 2002 Tim Powers <timp@redhat.com>
+- automated rebuild
+
+* Thu May 23 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-1
+- 1.2.4
+- Fix build with automake 1.6
+
+* Mon Mar 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-7
+- Fix AM_PATH_SDL automake macro with AC_LANG(c++) (#60533)
+
+* Thu Feb 28 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-6
+- Rebuild in current environment
+
+* Thu Jan 24 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-5
+- dlopen() aRts and esd rather than linking directly to them.
+- make sure aRts and esd are actually used if they're running.
+
+* Mon Jan 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-4
+- Don't crash without xv optimization: BuildRequire a version of nasm that
+  works.
+
+* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
+- automated rebuild
+
+* Mon Dec 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-2
+- Rebuild with new aRts, require arts-devel rather than kdelibs-sound-devel
+- Temporarily exclude alpha (compiler bugs)
+
+* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-1
+- 1.2.3
+
+* Sat Nov 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-5
+- Add workaround for automake 1.5 asm bugs
+
+* Tue Oct 30 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-4
+- Make sure -fPIC is used on all architectures (#55039)
+- Fix build with autoconf 2.5x
+
+* Fri Aug 31 2001 Bill Nottingham <notting@redhat.com> 1.2.2-3
+- rebuild (fixes #50750??)
+
+* Thu Aug  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-2
+- SDL-devel should require esound-devel and kdelibs-sound-devel (#44884)
+
+* Tue Jul 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-1
+- Update to 1.2.2; this should fix #47941
+- Add build dependencies
+
+* Tue Jul 10 2001 Elliot Lee <sopwith@redhat.com> 1.2.1-3
+- Rebuild to eliminate libXv/libXxf86dga deps.
+
+* Fri Jun 29 2001 Preston Brown <pbrown@redhat.com>
+- output same libraries for sdl-config whether --libs or --static-libs 
+  selected.  Fixes compilation of most SDL programs.
+- properly packaged new HTML documentation
+
+* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.1-1
+- 1.2.1
+
+* Mon May  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.0-2
+- Add Bill's byteorder patch
+
+* Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
+- 1.2.0
+
+* Tue Feb 27 2001 Karsten Hopp <karsten@redhat.de>
+- SDL-devel requires SDL
+
+* Tue Jan 16 2001 Bernhard Rosenkraenzer <bero@redhat.com>
+- Require arts rather than kdelibs-sound
+
+* Sun Jan  7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
+- 1.1.7
+
+* Tue Oct 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
+- 1.1.6
+
+* Mon Aug  7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
+- build against new DGA
+- update to 1.1.4, remove patches (they're now in the base release)
+
+* Tue Aug  1 2000 Bernhard Rosenkraenzer <bero@redhat.com>
+- %%post -p /sbin/ldconfig (Bug #14928)
+- add URL
+
+* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
+- automatic rebuild
+
+* Sun Jun 18 2000 Bill Nottingham <notting@redhat.com>
+- replace patch that fell out of SRPM
+
+* Tue Jun 13 2000 Preston Brown <pbrown@redhat.com>
+- FHS paths
+- use 1.1 (development) version; everything even from Loki links to it!
+
+* Thu May  4 2000 Bill Nottingham <notting@redhat.com>
+- autoconf fixes for ia64
+
+* Mon Apr 24 2000 Tim Powers <timp@redhat.com>
+- updated to 1.0.8
+
+* Tue Feb 15 2000 Tim Powers <timp@redhat.com>
+- updated to 1.0.4, fixes problems when run in 8bpp
+
+* Tue Feb 01 2000 Tim  Powers <timp@redhat.com>
+- applied patch from Hans de Goede <hans@highrise.nl> for fullscreen toggling.
+- using  --enable-video-x11-dgamouse since it smoothes the mouse some.
+
+* Sun Jan 30 2000 Tim Powers <timp@redhat.com>
+- updated to 1.0.3, bugfix update
+
+* Fri Jan 28 2000 Tim Powers <timp@redhat.com>
+- fixed group etc
+
+* Fri Jan 21 2000 Tim Powers <timp@redhat.com>
+- build for 6.2 Powertools
+
+* Wed Jan 19 2000 Sam Lantinga <slouken@devolution.com>
+- Re-integrated spec file into SDL distribution
+- 'name' and 'version' come from configure 
+- Some of the documentation is devel specific
+- Removed SMP support from %%build - it doesn't work with libtool anyway
+
+* Tue Jan 18 2000 Hakan Tandogan <hakan@iconsult.com>
+- Hacked Mandrake sdl spec to build 1.1
+
+* Sun Dec 19 1999 John Buswell <johnb@mandrakesoft.com>
+- Build Release
+
+* Sat Dec 18 1999 John Buswell <johnb@mandrakesoft.com>
+- Add symlink for libSDL-1.0.so.0 required by sdlbomber
+- Added docs
+
+* Thu Dec 09 1999 Lenny Cartier <lenny@mandrakesoft.com>
+- v 1.0.0
+
+* Mon Nov  1 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
+- First spec file for Mandrake distribution.
+
+# end of file