Author: belegdol
Update of /cvs/nonfree/rpms/bsnes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv8183
Modified Files:
.cvsignore bsnes.spec sources
Removed Files:
bsnes.desktop
Log Message:
* Mon Mar 09 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.040-1
- Updated to 0.040
- The desktop file now comes with the tarball
- Icon is now installed to %{_datadir}/pixmaps
- The Qt ui is only built when it is legal to do so
- Updated the strip patch
- Fixed the last %changelog entry
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 20 Jan 2009 20:34:40 -0000 1.4
+++ .cvsignore 9 Mar 2009 18:17:27 -0000 1.5
@@ -1 +1 @@
-bsnes_v039.tar.bz2
+bsnes_v040.tar.bz2
Index: bsnes.spec
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/devel/bsnes.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bsnes.spec 22 Feb 2009 12:19:15 -0000 1.5
+++ bsnes.spec 9 Mar 2009 18:17:27 -0000 1.6
@@ -1,15 +1,14 @@
-%define vernumber 039
+%define vernumber 040
Name: bsnes
Version: 0.%{vernumber}
-Release: 2%{?dist}
+Release: 1%{?dist}
Summary: SNES emulator focused on accuracy
Group: Applications/Emulators
License: Redistributable, no modification permitted
URL:
http://byuu.cinnamonpirate.com/?page=bsnes
Source0:
http://byuu.cinnamonpirate.com/files/%{name}_v%{vernumber}.tar.bz2
-Source1: bsnes.desktop
Source2: README.bsnes
Patch0: bsnes-0.037a-strip.patch
Patch1: bsnes-system-zlib.patch
@@ -20,13 +19,18 @@
#isn't available when the library is built stand alone
BuildRequires: desktop-file-utils
BuildRequires: freealut-devel
-BuildRequires: gtk2-devel
BuildRequires: libao-devel
BuildRequires: libXv-devel
BuildRequires: libXtst-devel
BuildRequires: minizip-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: SDL-devel
+#Qt >= 4.5 is required for legal reasons
+%if 0%{?fedora} >= 11
+BuildRequires: qt-devel >= 1:4.5.0-1%{?dist}
+%else
+BuildRequires: gtk2-devel
+%endif
%description
bsnes is an emulator that began development on 2004-10-14. The purpose of the
@@ -55,7 +59,13 @@
%build
pushd src
-make %{?_smp_mflags} platform=x compiler=gcc enable_gzip=true enable_jma=true
+%if 0%{?fedora} >= 11
+make %{?_smp_mflags} platform=x compiler=gcc enable_gzip=true enable_jma=true \
+ moc=moc-qt4
+%else
+make %{?_smp_mflags} platform=x compiler=gcc enable_gzip=true enable_jma=true \
+ ui=ui_hiro
+%endif
%install
@@ -63,7 +73,8 @@
pushd src
make install DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix}
desktop-file-install --vendor=rpmfusion \
- --dir $RPM_BUILD_ROOT%{_datadir}/applications %{SOURCE1}
+ --delete-original --dir $RPM_BUILD_ROOT%{_datadir}/applications \
+ $RPM_BUILD_ROOT%{_datadir}/applications/bsnes.desktop
%clean
@@ -74,13 +85,21 @@
%defattr(-,root,root,-)
%doc README.Fedora
%{_bindir}/bsnes
-%{_datadir}/icons/bsnes.png
+%{_datadir}/pixmaps/bsnes.png
%{_datadir}/applications/rpmfusion-bsnes.desktop
%changelog
+* Mon Mar 09 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.040-1
+- Updated to 0.040
+- The desktop file now comes with the tarball
+- Icon is now installed to %%{_datadir}/pixmaps
+- The Qt ui is only built when it is legal to do so
+- Updated the strip patch
+- Fixed the last %%changelog entry
+
* Sun Feb 22 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.039-2
-- Drop the ExcludeArch, libco has a C fallback
+- Dropped the ExclusiveArch, libco has a C fallback
- Use macros consistently
* Tue Jan 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.039-1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 20 Jan 2009 20:34:40 -0000 1.4
+++ sources 9 Mar 2009 18:17:27 -0000 1.5
@@ -1 +1 @@
-131a72097a90fc8cd614dc1dd4e0cc72 bsnes_v039.tar.bz2
+763e4ecd9b4b78432d70e1572f73efdb bsnes_v040.tar.bz2
--- bsnes.desktop DELETED ---