rpms/libcapsimage/devel libcapsimage.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/libcapsimage/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20506/devel
Modified Files:
.cvsignore sources
Added Files:
libcapsimage.spec
Log Message:
Initial import.
--- NEW FILE libcapsimage.spec ---
# Disable debug package. Useless as this is closed source.
%define debug_package %{nil}
Name: libcapsimage
Version: 2.0.0
Release: 6%{?dist}
Summary: Provides IPF support, primarily for UAE/E-UAE
Group: System Environment/Libraries
License: SPSFLA
URL: http://www.softpres.org/?id=download
# Download URLs cannot be placed here but are available from:
# http://www.softpres.org/?id=download
Source0: ipfdevlib_linux.tgz
Source1: ipflib_linux-i686.tgz
Source2: ipflib_linux-amd64.tgz
Source3: ipflib_linux-ppc.tgz
#BuildRequires: libstdc++-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExclusiveArch: %{ix86} x86_64 ppc
%ifarch %{ix86}
# Precompiled binaries so force i686
BuildArch: i686
%endif
%description
Provides support for reading IPF files, an Amiga disk image format developed by
the Amiga Preservation Society, as part of the C.A.P.S. project.
%package devel
Summary: Development files for libcapsimage
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Development files for libcapsimage
%prep
%ifarch %{ix86}
%setup -qn ipfdevlib_linux -a1
%endif
%ifarch x86_64
%setup -qn ipfdevlib_linux -a2
%endif
%ifarch ppc
%setup -qn ipfdevlib_linux -a3
%endif
# Convert from DOS to UNIX Text
sed -i 's/\r//' LICENSE
%build
%ifarch %{ix86}
pushd ipflib_linux-i686
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-i686/ -lcapsimage -s
popd
%endif
%ifarch x86_64
pushd ipflib_linux-amd64
ln -sv libcapsimage.so.2.3 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-amd64/ -lcapsimage -lstdc++ -s
popd
%endif
%ifarch ppc
pushd ipflib_linux-ppc
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-ppc/ -lcapsimage -s
popd
%endif
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_libdir} %{buildroot}%{_bindir} \
%{buildroot}%{_includedir}/caps
install -pm0644 include/caps/capsimage.h %{buildroot}%{_includedir}/caps
%ifarch %{ix86}
install -pm0755 ipflib_linux-i686/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%ifarch x86_64
install -pm0755 ipflib_linux-amd64/libcapsimage.so.2.3 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.3 libcapsimage.so.2
ln -s libcapsimage.so.2.3 libcapsimage.so
popd
%endif
%ifarch ppc
install -pm0755 ipflib_linux-ppc/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/libcapsimage.so.*
%{_bindir}/ipfinfo
%doc HISTORY LICENSE README
%files devel
%defattr(-,root,root,-)
%{_includedir}/caps
%{_libdir}/libcapsimage.so
%changelog
* Thu Mar 06 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-6
- Compile ipfinfo, don't use precompiled version (its broken)
* Wed Mar 05 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-5
- Added support for x86_64
- Various clean ups to the spec
* Fri Jun 02 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-4
- Removed duplicate documentation from devel package
- Improved architecture checking
- Replaced %%{__sed} with sed
* Sat May 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-3.iss
- Altered spec file to better follow Fedora packaging guidelines
- LICENSE now converted from DOS text to UNIX
- Added library symlinks instead of only relying on ldconfig
* Mon Oct 25 2005 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-2.iss
- Fixes for deprecated fields no longer supported by the latest rpmbuild
- Added support for building on PPC
- Now includes ipfinfo in RPM and installs to bindir
* Wed Dec 01 2004 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-1.iss
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:46:58 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:26:28 -0000 1.2
@@ -0,0 +1,4 @@
+ipfdevlib_linux.tgz
+ipflib_linux-amd64.tgz
+ipflib_linux-i686.tgz
+ipflib_linux-ppc.tgz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:46:58 -0000 1.1
+++ sources 4 Sep 2008 11:26:28 -0000 1.2
@@ -0,0 +1,4 @@
+73b230518ce28d6146ed72c14ec025a6 ipfdevlib_linux.tgz
+1878b367db4646136df5ea2b86fa648a ipflib_linux-amd64.tgz
+9dedda45acbaf96b1bd82e0489af2861 ipflib_linux-i686.tgz
+a5852b868d45de3a389e3a06795cf8fe ipflib_linux-ppc.tgz
16 years, 2 months
rpms/libcapsimage/EL-5 libcapsimage.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/libcapsimage/EL-5
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20321/EL-5
Modified Files:
.cvsignore sources
Added Files:
libcapsimage.spec
Log Message:
Initial import.
--- NEW FILE libcapsimage.spec ---
# Disable debug package. Useless as this is closed source.
%define debug_package %{nil}
Name: libcapsimage
Version: 2.0.0
Release: 6%{?dist}
Summary: Provides IPF support, primarily for UAE/E-UAE
Group: System Environment/Libraries
License: SPSFLA
URL: http://www.softpres.org/?id=download
# Download URLs cannot be placed here but are available from:
# http://www.softpres.org/?id=download
Source0: ipfdevlib_linux.tgz
Source1: ipflib_linux-i686.tgz
Source2: ipflib_linux-amd64.tgz
Source3: ipflib_linux-ppc.tgz
#BuildRequires: libstdc++-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExclusiveArch: %{ix86} x86_64 ppc
%ifarch %{ix86}
# Precompiled binaries so force i686
BuildArch: i686
%endif
%description
Provides support for reading IPF files, an Amiga disk image format developed by
the Amiga Preservation Society, as part of the C.A.P.S. project.
%package devel
Summary: Development files for libcapsimage
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Development files for libcapsimage
%prep
%ifarch %{ix86}
%setup -qn ipfdevlib_linux -a1
%endif
%ifarch x86_64
%setup -qn ipfdevlib_linux -a2
%endif
%ifarch ppc
%setup -qn ipfdevlib_linux -a3
%endif
# Convert from DOS to UNIX Text
sed -i 's/\r//' LICENSE
%build
%ifarch %{ix86}
pushd ipflib_linux-i686
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-i686/ -lcapsimage -s
popd
%endif
%ifarch x86_64
pushd ipflib_linux-amd64
ln -sv libcapsimage.so.2.3 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-amd64/ -lcapsimage -lstdc++ -s
popd
%endif
%ifarch ppc
pushd ipflib_linux-ppc
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-ppc/ -lcapsimage -s
popd
%endif
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_libdir} %{buildroot}%{_bindir} \
%{buildroot}%{_includedir}/caps
install -pm0644 include/caps/capsimage.h %{buildroot}%{_includedir}/caps
%ifarch %{ix86}
install -pm0755 ipflib_linux-i686/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%ifarch x86_64
install -pm0755 ipflib_linux-amd64/libcapsimage.so.2.3 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.3 libcapsimage.so.2
ln -s libcapsimage.so.2.3 libcapsimage.so
popd
%endif
%ifarch ppc
install -pm0755 ipflib_linux-ppc/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/libcapsimage.so.*
%{_bindir}/ipfinfo
%doc HISTORY LICENSE README
%files devel
%defattr(-,root,root,-)
%{_includedir}/caps
%{_libdir}/libcapsimage.so
%changelog
* Thu Mar 06 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-6
- Compile ipfinfo, don't use precompiled version (its broken)
* Wed Mar 05 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-5
- Added support for x86_64
- Various clean ups to the spec
* Fri Jun 02 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-4
- Removed duplicate documentation from devel package
- Improved architecture checking
- Replaced %%{__sed} with sed
* Sat May 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-3.iss
- Altered spec file to better follow Fedora packaging guidelines
- LICENSE now converted from DOS text to UNIX
- Added library symlinks instead of only relying on ldconfig
* Mon Oct 25 2005 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-2.iss
- Fixes for deprecated fields no longer supported by the latest rpmbuild
- Added support for building on PPC
- Now includes ipfinfo in RPM and installs to bindir
* Wed Dec 01 2004 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-1.iss
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/EL-5/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:46:58 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:25:59 -0000 1.2
@@ -0,0 +1,4 @@
+ipfdevlib_linux.tgz
+ipflib_linux-amd64.tgz
+ipflib_linux-i686.tgz
+ipflib_linux-ppc.tgz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/EL-5/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:46:58 -0000 1.1
+++ sources 4 Sep 2008 11:25:59 -0000 1.2
@@ -0,0 +1,4 @@
+73b230518ce28d6146ed72c14ec025a6 ipfdevlib_linux.tgz
+1878b367db4646136df5ea2b86fa648a ipflib_linux-amd64.tgz
+9dedda45acbaf96b1bd82e0489af2861 ipflib_linux-i686.tgz
+a5852b868d45de3a389e3a06795cf8fe ipflib_linux-ppc.tgz
16 years, 2 months
rpms/libcapsimage/F-9 libcapsimage.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/libcapsimage/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20134/F-9
Modified Files:
.cvsignore sources
Added Files:
libcapsimage.spec
Log Message:
Initial import.
--- NEW FILE libcapsimage.spec ---
# Disable debug package. Useless as this is closed source.
%define debug_package %{nil}
Name: libcapsimage
Version: 2.0.0
Release: 6%{?dist}
Summary: Provides IPF support, primarily for UAE/E-UAE
Group: System Environment/Libraries
License: SPSFLA
URL: http://www.softpres.org/?id=download
# Download URLs cannot be placed here but are available from:
# http://www.softpres.org/?id=download
Source0: ipfdevlib_linux.tgz
Source1: ipflib_linux-i686.tgz
Source2: ipflib_linux-amd64.tgz
Source3: ipflib_linux-ppc.tgz
#BuildRequires: libstdc++-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExclusiveArch: %{ix86} x86_64 ppc
%ifarch %{ix86}
# Precompiled binaries so force i686
BuildArch: i686
%endif
%description
Provides support for reading IPF files, an Amiga disk image format developed by
the Amiga Preservation Society, as part of the C.A.P.S. project.
%package devel
Summary: Development files for libcapsimage
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Development files for libcapsimage
%prep
%ifarch %{ix86}
%setup -qn ipfdevlib_linux -a1
%endif
%ifarch x86_64
%setup -qn ipfdevlib_linux -a2
%endif
%ifarch ppc
%setup -qn ipfdevlib_linux -a3
%endif
# Convert from DOS to UNIX Text
sed -i 's/\r//' LICENSE
%build
%ifarch %{ix86}
pushd ipflib_linux-i686
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-i686/ -lcapsimage -s
popd
%endif
%ifarch x86_64
pushd ipflib_linux-amd64
ln -sv libcapsimage.so.2.3 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-amd64/ -lcapsimage -lstdc++ -s
popd
%endif
%ifarch ppc
pushd ipflib_linux-ppc
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-ppc/ -lcapsimage -s
popd
%endif
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_libdir} %{buildroot}%{_bindir} \
%{buildroot}%{_includedir}/caps
install -pm0644 include/caps/capsimage.h %{buildroot}%{_includedir}/caps
%ifarch %{ix86}
install -pm0755 ipflib_linux-i686/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%ifarch x86_64
install -pm0755 ipflib_linux-amd64/libcapsimage.so.2.3 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.3 libcapsimage.so.2
ln -s libcapsimage.so.2.3 libcapsimage.so
popd
%endif
%ifarch ppc
install -pm0755 ipflib_linux-ppc/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/libcapsimage.so.*
%{_bindir}/ipfinfo
%doc HISTORY LICENSE README
%files devel
%defattr(-,root,root,-)
%{_includedir}/caps
%{_libdir}/libcapsimage.so
%changelog
* Thu Mar 06 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-6
- Compile ipfinfo, don't use precompiled version (its broken)
* Wed Mar 05 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-5
- Added support for x86_64
- Various clean ups to the spec
* Fri Jun 02 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-4
- Removed duplicate documentation from devel package
- Improved architecture checking
- Replaced %%{__sed} with sed
* Sat May 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-3.iss
- Altered spec file to better follow Fedora packaging guidelines
- LICENSE now converted from DOS text to UNIX
- Added library symlinks instead of only relying on ldconfig
* Mon Oct 25 2005 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-2.iss
- Fixes for deprecated fields no longer supported by the latest rpmbuild
- Added support for building on PPC
- Now includes ipfinfo in RPM and installs to bindir
* Wed Dec 01 2004 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-1.iss
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:46:58 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:25:21 -0000 1.2
@@ -0,0 +1,4 @@
+ipfdevlib_linux.tgz
+ipflib_linux-amd64.tgz
+ipflib_linux-i686.tgz
+ipflib_linux-ppc.tgz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:46:58 -0000 1.1
+++ sources 4 Sep 2008 11:25:21 -0000 1.2
@@ -0,0 +1,4 @@
+73b230518ce28d6146ed72c14ec025a6 ipfdevlib_linux.tgz
+1878b367db4646136df5ea2b86fa648a ipflib_linux-amd64.tgz
+9dedda45acbaf96b1bd82e0489af2861 ipflib_linux-i686.tgz
+a5852b868d45de3a389e3a06795cf8fe ipflib_linux-ppc.tgz
16 years, 2 months
rpms/libcapsimage/F-8 libcapsimage.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/libcapsimage/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19704/F-8
Modified Files:
.cvsignore sources
Added Files:
libcapsimage.spec
Log Message:
Initial import.
--- NEW FILE libcapsimage.spec ---
# Disable debug package. Useless as this is closed source.
%define debug_package %{nil}
Name: libcapsimage
Version: 2.0.0
Release: 6%{?dist}
Summary: Provides IPF support, primarily for UAE/E-UAE
Group: System Environment/Libraries
License: SPSFLA
URL: http://www.softpres.org/?id=download
# Download URLs cannot be placed here but are available from:
# http://www.softpres.org/?id=download
Source0: ipfdevlib_linux.tgz
Source1: ipflib_linux-i686.tgz
Source2: ipflib_linux-amd64.tgz
Source3: ipflib_linux-ppc.tgz
#BuildRequires: libstdc++-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExclusiveArch: %{ix86} x86_64 ppc
%ifarch %{ix86}
# Precompiled binaries so force i686
BuildArch: i686
%endif
%description
Provides support for reading IPF files, an Amiga disk image format developed by
the Amiga Preservation Society, as part of the C.A.P.S. project.
%package devel
Summary: Development files for libcapsimage
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Development files for libcapsimage
%prep
%ifarch %{ix86}
%setup -qn ipfdevlib_linux -a1
%endif
%ifarch x86_64
%setup -qn ipfdevlib_linux -a2
%endif
%ifarch ppc
%setup -qn ipfdevlib_linux -a3
%endif
# Convert from DOS to UNIX Text
sed -i 's/\r//' LICENSE
%build
%ifarch %{ix86}
pushd ipflib_linux-i686
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-i686/ -lcapsimage -s
popd
%endif
%ifarch x86_64
pushd ipflib_linux-amd64
ln -sv libcapsimage.so.2.3 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-amd64/ -lcapsimage -lstdc++ -s
popd
%endif
%ifarch ppc
pushd ipflib_linux-ppc
ln -sv libcapsimage.so.2.0 libcapsimage.so
popd
pushd examples
gcc %{optflags} -I ../include ipfinfo.c -o ipfinfo -L../ipflib_linux-ppc/ -lcapsimage -s
popd
%endif
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_libdir} %{buildroot}%{_bindir} \
%{buildroot}%{_includedir}/caps
install -pm0644 include/caps/capsimage.h %{buildroot}%{_includedir}/caps
%ifarch %{ix86}
install -pm0755 ipflib_linux-i686/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%ifarch x86_64
install -pm0755 ipflib_linux-amd64/libcapsimage.so.2.3 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.3 libcapsimage.so.2
ln -s libcapsimage.so.2.3 libcapsimage.so
popd
%endif
%ifarch ppc
install -pm0755 ipflib_linux-ppc/libcapsimage.so.2.0 %{buildroot}%{_libdir}
install -pm0755 examples/ipfinfo %{buildroot}%{_bindir}
pushd %{buildroot}%{_libdir}
ln -s libcapsimage.so.2.0 libcapsimage.so.2
ln -s libcapsimage.so.2.0 libcapsimage.so
popd
%endif
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/libcapsimage.so.*
%{_bindir}/ipfinfo
%doc HISTORY LICENSE README
%files devel
%defattr(-,root,root,-)
%{_includedir}/caps
%{_libdir}/libcapsimage.so
%changelog
* Thu Mar 06 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-6
- Compile ipfinfo, don't use precompiled version (its broken)
* Wed Mar 05 2008 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-5
- Added support for x86_64
- Various clean ups to the spec
* Fri Jun 02 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-4
- Removed duplicate documentation from devel package
- Improved architecture checking
- Replaced %%{__sed} with sed
* Sat May 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-3.iss
- Altered spec file to better follow Fedora packaging guidelines
- LICENSE now converted from DOS text to UNIX
- Added library symlinks instead of only relying on ldconfig
* Mon Oct 25 2005 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-2.iss
- Fixes for deprecated fields no longer supported by the latest rpmbuild
- Added support for building on PPC
- Now includes ipfinfo in RPM and installs to bindir
* Wed Dec 01 2004 Ian Chapman <packages[AT]amiga-hardware.com> 2.0.0-1.iss
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:46:58 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:24:49 -0000 1.2
@@ -0,0 +1,4 @@
+ipfdevlib_linux.tgz
+ipflib_linux-amd64.tgz
+ipflib_linux-i686.tgz
+ipflib_linux-ppc.tgz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/libcapsimage/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:46:58 -0000 1.1
+++ sources 4 Sep 2008 11:24:49 -0000 1.2
@@ -0,0 +1,4 @@
+73b230518ce28d6146ed72c14ec025a6 ipfdevlib_linux.tgz
+1878b367db4646136df5ea2b86fa648a ipflib_linux-amd64.tgz
+9dedda45acbaf96b1bd82e0489af2861 ipflib_linux-i686.tgz
+a5852b868d45de3a389e3a06795cf8fe ipflib_linux-ppc.tgz
16 years, 2 months
rpms/raine/devel raine-0.50.11-incdirfix.patch, NONE, 1.1 raine-0.50.3-fixcustomcursor.patch, NONE, 1.1 raine-0.50.3-fixdatadirloc.patch, NONE, 1.1 raine-0.50.3-makefile.patch, NONE, 1.1 raine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/raine/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19485/devel
Modified Files:
.cvsignore sources
Added Files:
raine-0.50.11-incdirfix.patch
raine-0.50.3-fixcustomcursor.patch
raine-0.50.3-fixdatadirloc.patch raine-0.50.3-makefile.patch
raine.spec
Log Message:
Initial import.
raine-0.50.11-incdirfix.patch:
--- NEW FILE raine-0.50.11-incdirfix.patch ---
--- raine-0.50.11/makefile.incdirfix 2008-03-14 22:24:04.000000000 +0000
+++ raine-0.50.11/makefile 2008-03-24 21:47:50.000000000 +0000
@@ -93,7 +93,7 @@
# profiling
# CC = gcc -pg
-INCDIR= \
+INCDIR= -I. \
-Isource \
-Isource/68000 \
-Isource/68020 \
raine-0.50.3-fixcustomcursor.patch:
--- NEW FILE raine-0.50.3-fixcustomcursor.patch ---
--- raine-0.50.3/source/sdl/gui.cpp.orig 2007-01-26 10:35:56.000000000 +0000
+++ raine-0.50.3/source/sdl/gui.cpp 2007-02-26 18:00:50.000000000 +0000
@@ -321,7 +321,7 @@
{
char str[256];
- setup_mouse_cursor(IMG_Load("bitmaps/cursor.png"));
+ setup_mouse_cursor(IMG_Load("/usr/share/raine/bitmaps/cursor.png"));
#ifdef RAINE_DEBUG
print_debug("StartGUI(): START\n");
raine-0.50.3-fixdatadirloc.patch:
--- NEW FILE raine-0.50.3-fixdatadirloc.patch ---
--- raine-0.50.3/source/raine.cpp.orig 2007-01-25 10:38:31.000000000 +0000
+++ raine-0.50.3/source/raine.cpp 2007-02-26 15:48:23.000000000 +0000
@@ -212,7 +212,7 @@
*/
#ifdef RAINE_UNIX
- sprintf(dir_cfg.share_path, "/usr/share/games/raine/");
+ sprintf(dir_cfg.share_path, "/usr/share/raine/");
sprintf(dir_cfg.exe_path, "%s/.raine/", getenv("HOME"));
#else
#if !defined(RAINE_WIN32) || defined(__MINGW32__)
raine-0.50.3-makefile.patch:
--- NEW FILE raine-0.50.3-makefile.patch ---
--- raine-0.50.3/makefile.orig 2007-02-22 09:29:23.000000000 +0000
+++ raine-0.50.3/makefile 2007-02-26 17:24:24.000000000 +0000
@@ -20,7 +20,7 @@
# RAINE_DEBUG = 1
# Be verbose ?
-# VERBOSE = 1
+VERBOSE = 1
# Use asm video core ? (comment to use C core)
ASM_VIDEO_CORE = 1
@@ -202,8 +202,8 @@
SDL = 1
prefix = $(DESTDIR)/usr
- bindir = $(prefix)/games
- sharedir = $(prefix)/share/games
+ bindir = $(prefix)/bin
+ sharedir = $(prefix)/share
mandir = $(prefix)/man/man6
rainedata = $(sharedir)/raine
ifndef SDL
@@ -256,7 +256,6 @@
ifndef SDL
ifeq ("$(shell if [ -e /usr/include/vga.h ] || [ -e /usr/local/include/vga.h ]; then echo yes; fi)","yes")
-GFX_SVGALIB=1
endif
endif
@@ -313,7 +312,7 @@
OBJDIR = $(OSTYPE)-sdl
endif
-include cpuinfo
+#include cpuinfo
ifdef X86_64
OBJDIR := $(OBJDIR)64
@@ -395,25 +394,18 @@
ifdef RAINE32
# when starting a game -> black screen if -O > 1 (bug in uint64 calculation)
-CFLAGS = -O1
+#CFLAGS = -O1
else
# Seems to work now, at least with the sdl version ? (to be tested with windows !)
-CFLAGS = -O3
+CFLAGS = $(RPMFLAGS)
endif
CFLAGS += $(INCDIR) \
$(DEFINE) \
- $(_MARCH) \
- -Wno-trigraphs \
- -fschedule-insns2 \
- -funroll-all-loops \
- -fexpensive-optimizations \
- -ffast-math \
- -w \
- -fomit-frame-pointer
+ $(_MARCH)
# This is required for gcc-2.9x (bug in -fomit-frame-pointer)
-CFLAGS_MCU = $(_MARCH) -O3 -fexpensive-optimizations # switches for the 68705 mcus
+CFLAGS_MCU = $(CFLAGS)
ifdef RAINE_UNIX
CFLAGS += -pipe
@@ -1164,7 +1156,7 @@
./makedep $(OBJDIR) $(OBJS) > make.dep
cpuinfo:
- @sh ./detect-cpu
+# @sh ./detect-cpu
include make.dep
@@ -1214,8 +1206,6 @@
endif
sh -c "if [ -f hiscore.dat ]; then $(INSTALL_DATA) hiscore.dat $(rainedata); fi"
$(INSTALL_DATA) config/cheats.cfg $(rainedata)
- $(INSTALL_DATA) raine.desktop $(prefix)/share/applications
- $(INSTALL_DATA) raine.png $(prefix)/share/pixmaps
install_dirs:
$(MD) -pv $(bindir) $(rainedata) $(langdir) $(romdir) $(artdir) $(emudxdir) $(prefix)/share/pixmaps $(prefix)/share/applications $(bitmaps_dir) $(fonts_dir)
--- NEW FILE raine.spec ---
Name: raine
Version: 0.50.11
Release: 1%{?dist}
Summary: Arcade emulator focused on Taito and Jaleco games hardware
Group: Applications/Emulators
License: GPL+ and Distributable
URL: http://www.rainemu.com
Source0: http://www.rainemu.com/html/archive/raines-%{version}.tar.bz2
Patch0: %{name}-0.50.3-makefile.patch
Patch1: %{name}-0.50.3-fixdatadirloc.patch
Patch2: %{name}-0.50.3-fixcustomcursor.patch
Patch3: %{name}-0.50.11-incdirfix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: libpng-devel
BuildRequires: nasm
BuildRequires: SDL_image-devel
BuildRequires: SDL_ttf-devel
BuildRequires: zlib-devel
Requires: hicolor-icon-theme
# Only compiles on x86 due to extensive x86 assembly
ExclusiveArch: %{ix86}
%description
Raine emulates some M68000, M68020, Z80 and M68705 arcade games and is mainly
focused on Taito and Jaleco games hardware. Raine can emulate many nice games
now, including new additions from Cave and other companies.
%prep
%setup -qn %{name}-%{version}
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
# Fix encoding
iconv -f iso8859-1 debian/changelog -t utf8 > changelog
# Fix permissions for debuginfo RPM
chmod -x */*.c \
*/*.cpp \
*/*.h \
*/*/*.c \
*/*/*.h \
*/*/*.cpp \
*/*/*/*.c \
*/*/*/*.h \
*/*/*/*.cpp
%build
make %{?_smp_mflags} RPMFLAGS="%{optflags} -fno-strict-aliasing"
# Build desktop icon
cat >%{name}.desktop <<EOF
[Desktop Entry]
Encoding=UTF-8
Name=Raine
GenericName=Arcade Emulator
Comment=%{summary}
Exec=%{name}
Icon=%{name}
Terminal=false
Type=Application
StartupNotify=false
Categories=Game;Emulator;
EOF
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
install -pm0644 %{name}.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
desktop-file-install --vendor dribble \
--dir %{buildroot}%{_datadir}/applications \
%{name}.desktop
%clean
rm -rf %{buildroot}
%post
# Set SELinux type (requires executable stack & data segment)
semanage fcontext -a -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
restorecon '%{_bindir}/%{name}' 2>/dev/null || :
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
# Undo SELinux changes on removal
if [ $1 -eq 0 ]; then
semanage fcontext -d -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
fi
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
%doc changelog
%changelog
* Tue Mar 25 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.11-1
- Upgrade to 0.50.11
- Dropped changes/* and now include the general changelog
- Added patch to include assembler dirs, otherwise compilation fails
* Tue Jan 08 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.6-1
- Upgrade to 0.50.6
- Updated selinux %%post/%%postun entries
* Sat Jul 07 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.5-1
- Upgrade to 0.50.5
- Minor spec changes due to new guidelines
- Dropped explicit support for Fedora Core 5
* Sun May 06 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.4-1
- Upgrade to 0.50.4
* Sat Mar 17 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-2
- Changed .desktop category to Game;Emulator;
- "Fixed" encoding on changes-antiriad.txt
* Sun Feb 25 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-1
- Upgrade to 0.50.3
- Updated all patches for new version
- Added patch for building with older SDL supplied with FC5
- Dropped allegro-devel buildrequire. Now only uses SDL
- Added patch to fix loading of the custom cursor
* Mon Oct 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-4
- Drop svgalib support (Dribble BZ #45)
* Sat Oct 21 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-3
- Fix source permissions for debuginfo rpm
* Wed Oct 18 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-2
- Dropped zlib-devel buildrequire, implied by libpng-devel
- Added hicolor-icon-theme require
- Swapped excludearch tags for exclusivearch tags
- Added SELinux context changes due to executable stack & data segment
* Fri Oct 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-1
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/raine/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:54:36 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:23:41 -0000 1.2
@@ -0,0 +1 @@
+raines-0.50.11.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/raine/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:54:36 -0000 1.1
+++ sources 4 Sep 2008 11:23:41 -0000 1.2
@@ -0,0 +1 @@
+d7bad459736dbb77be767ae7d2e2a583 raines-0.50.11.tar.bz2
16 years, 2 months
rpms/raine/EL-5 raine-0.50.11-incdirfix.patch, NONE, 1.1 raine-0.50.3-fixcustomcursor.patch, NONE, 1.1 raine-0.50.3-fixdatadirloc.patch, NONE, 1.1 raine-0.50.3-makefile.patch, NONE, 1.1 raine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/raine/EL-5
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19211/EL-5
Modified Files:
.cvsignore sources
Added Files:
raine-0.50.11-incdirfix.patch
raine-0.50.3-fixcustomcursor.patch
raine-0.50.3-fixdatadirloc.patch raine-0.50.3-makefile.patch
raine.spec
Log Message:
Initial import.
raine-0.50.11-incdirfix.patch:
--- NEW FILE raine-0.50.11-incdirfix.patch ---
--- raine-0.50.11/makefile.incdirfix 2008-03-14 22:24:04.000000000 +0000
+++ raine-0.50.11/makefile 2008-03-24 21:47:50.000000000 +0000
@@ -93,7 +93,7 @@
# profiling
# CC = gcc -pg
-INCDIR= \
+INCDIR= -I. \
-Isource \
-Isource/68000 \
-Isource/68020 \
raine-0.50.3-fixcustomcursor.patch:
--- NEW FILE raine-0.50.3-fixcustomcursor.patch ---
--- raine-0.50.3/source/sdl/gui.cpp.orig 2007-01-26 10:35:56.000000000 +0000
+++ raine-0.50.3/source/sdl/gui.cpp 2007-02-26 18:00:50.000000000 +0000
@@ -321,7 +321,7 @@
{
char str[256];
- setup_mouse_cursor(IMG_Load("bitmaps/cursor.png"));
+ setup_mouse_cursor(IMG_Load("/usr/share/raine/bitmaps/cursor.png"));
#ifdef RAINE_DEBUG
print_debug("StartGUI(): START\n");
raine-0.50.3-fixdatadirloc.patch:
--- NEW FILE raine-0.50.3-fixdatadirloc.patch ---
--- raine-0.50.3/source/raine.cpp.orig 2007-01-25 10:38:31.000000000 +0000
+++ raine-0.50.3/source/raine.cpp 2007-02-26 15:48:23.000000000 +0000
@@ -212,7 +212,7 @@
*/
#ifdef RAINE_UNIX
- sprintf(dir_cfg.share_path, "/usr/share/games/raine/");
+ sprintf(dir_cfg.share_path, "/usr/share/raine/");
sprintf(dir_cfg.exe_path, "%s/.raine/", getenv("HOME"));
#else
#if !defined(RAINE_WIN32) || defined(__MINGW32__)
raine-0.50.3-makefile.patch:
--- NEW FILE raine-0.50.3-makefile.patch ---
--- raine-0.50.3/makefile.orig 2007-02-22 09:29:23.000000000 +0000
+++ raine-0.50.3/makefile 2007-02-26 17:24:24.000000000 +0000
@@ -20,7 +20,7 @@
# RAINE_DEBUG = 1
# Be verbose ?
-# VERBOSE = 1
+VERBOSE = 1
# Use asm video core ? (comment to use C core)
ASM_VIDEO_CORE = 1
@@ -202,8 +202,8 @@
SDL = 1
prefix = $(DESTDIR)/usr
- bindir = $(prefix)/games
- sharedir = $(prefix)/share/games
+ bindir = $(prefix)/bin
+ sharedir = $(prefix)/share
mandir = $(prefix)/man/man6
rainedata = $(sharedir)/raine
ifndef SDL
@@ -256,7 +256,6 @@
ifndef SDL
ifeq ("$(shell if [ -e /usr/include/vga.h ] || [ -e /usr/local/include/vga.h ]; then echo yes; fi)","yes")
-GFX_SVGALIB=1
endif
endif
@@ -313,7 +312,7 @@
OBJDIR = $(OSTYPE)-sdl
endif
-include cpuinfo
+#include cpuinfo
ifdef X86_64
OBJDIR := $(OBJDIR)64
@@ -395,25 +394,18 @@
ifdef RAINE32
# when starting a game -> black screen if -O > 1 (bug in uint64 calculation)
-CFLAGS = -O1
+#CFLAGS = -O1
else
# Seems to work now, at least with the sdl version ? (to be tested with windows !)
-CFLAGS = -O3
+CFLAGS = $(RPMFLAGS)
endif
CFLAGS += $(INCDIR) \
$(DEFINE) \
- $(_MARCH) \
- -Wno-trigraphs \
- -fschedule-insns2 \
- -funroll-all-loops \
- -fexpensive-optimizations \
- -ffast-math \
- -w \
- -fomit-frame-pointer
+ $(_MARCH)
# This is required for gcc-2.9x (bug in -fomit-frame-pointer)
-CFLAGS_MCU = $(_MARCH) -O3 -fexpensive-optimizations # switches for the 68705 mcus
+CFLAGS_MCU = $(CFLAGS)
ifdef RAINE_UNIX
CFLAGS += -pipe
@@ -1164,7 +1156,7 @@
./makedep $(OBJDIR) $(OBJS) > make.dep
cpuinfo:
- @sh ./detect-cpu
+# @sh ./detect-cpu
include make.dep
@@ -1214,8 +1206,6 @@
endif
sh -c "if [ -f hiscore.dat ]; then $(INSTALL_DATA) hiscore.dat $(rainedata); fi"
$(INSTALL_DATA) config/cheats.cfg $(rainedata)
- $(INSTALL_DATA) raine.desktop $(prefix)/share/applications
- $(INSTALL_DATA) raine.png $(prefix)/share/pixmaps
install_dirs:
$(MD) -pv $(bindir) $(rainedata) $(langdir) $(romdir) $(artdir) $(emudxdir) $(prefix)/share/pixmaps $(prefix)/share/applications $(bitmaps_dir) $(fonts_dir)
--- NEW FILE raine.spec ---
Name: raine
Version: 0.50.11
Release: 1%{?dist}
Summary: Arcade emulator focused on Taito and Jaleco games hardware
Group: Applications/Emulators
License: GPL+ and Distributable
URL: http://www.rainemu.com
Source0: http://www.rainemu.com/html/archive/raines-%{version}.tar.bz2
Patch0: %{name}-0.50.3-makefile.patch
Patch1: %{name}-0.50.3-fixdatadirloc.patch
Patch2: %{name}-0.50.3-fixcustomcursor.patch
Patch3: %{name}-0.50.11-incdirfix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: libpng-devel
BuildRequires: nasm
BuildRequires: SDL_image-devel
BuildRequires: SDL_ttf-devel
BuildRequires: zlib-devel
Requires: hicolor-icon-theme
# Only compiles on x86 due to extensive x86 assembly
ExclusiveArch: %{ix86}
%description
Raine emulates some M68000, M68020, Z80 and M68705 arcade games and is mainly
focused on Taito and Jaleco games hardware. Raine can emulate many nice games
now, including new additions from Cave and other companies.
%prep
%setup -qn %{name}-%{version}
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
# Fix encoding
iconv -f iso8859-1 debian/changelog -t utf8 > changelog
# Fix permissions for debuginfo RPM
chmod -x */*.c \
*/*.cpp \
*/*.h \
*/*/*.c \
*/*/*.h \
*/*/*.cpp \
*/*/*/*.c \
*/*/*/*.h \
*/*/*/*.cpp
%build
make %{?_smp_mflags} RPMFLAGS="%{optflags} -fno-strict-aliasing"
# Build desktop icon
cat >%{name}.desktop <<EOF
[Desktop Entry]
Encoding=UTF-8
Name=Raine
GenericName=Arcade Emulator
Comment=%{summary}
Exec=%{name}
Icon=%{name}
Terminal=false
Type=Application
StartupNotify=false
Categories=Game;Emulator;
EOF
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
install -pm0644 %{name}.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
desktop-file-install --vendor dribble \
--dir %{buildroot}%{_datadir}/applications \
%{name}.desktop
%clean
rm -rf %{buildroot}
%post
# Set SELinux type (requires executable stack & data segment)
semanage fcontext -a -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
restorecon '%{_bindir}/%{name}' 2>/dev/null || :
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
# Undo SELinux changes on removal
if [ $1 -eq 0 ]; then
semanage fcontext -d -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
fi
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
%doc changelog
%changelog
* Tue Mar 25 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.11-1
- Upgrade to 0.50.11
- Dropped changes/* and now include the general changelog
- Added patch to include assembler dirs, otherwise compilation fails
* Tue Jan 08 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.6-1
- Upgrade to 0.50.6
- Updated selinux %%post/%%postun entries
* Sat Jul 07 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.5-1
- Upgrade to 0.50.5
- Minor spec changes due to new guidelines
- Dropped explicit support for Fedora Core 5
* Sun May 06 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.4-1
- Upgrade to 0.50.4
* Sat Mar 17 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-2
- Changed .desktop category to Game;Emulator;
- "Fixed" encoding on changes-antiriad.txt
* Sun Feb 25 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-1
- Upgrade to 0.50.3
- Updated all patches for new version
- Added patch for building with older SDL supplied with FC5
- Dropped allegro-devel buildrequire. Now only uses SDL
- Added patch to fix loading of the custom cursor
* Mon Oct 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-4
- Drop svgalib support (Dribble BZ #45)
* Sat Oct 21 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-3
- Fix source permissions for debuginfo rpm
* Wed Oct 18 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-2
- Dropped zlib-devel buildrequire, implied by libpng-devel
- Added hicolor-icon-theme require
- Swapped excludearch tags for exclusivearch tags
- Added SELinux context changes due to executable stack & data segment
* Fri Oct 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-1
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/raine/EL-5/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:54:36 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:22:51 -0000 1.2
@@ -0,0 +1 @@
+raines-0.50.11.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/raine/EL-5/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:54:36 -0000 1.1
+++ sources 4 Sep 2008 11:22:52 -0000 1.2
@@ -0,0 +1 @@
+d7bad459736dbb77be767ae7d2e2a583 raines-0.50.11.tar.bz2
16 years, 2 months
rpms/raine/F-9 raine-0.50.11-incdirfix.patch, NONE, 1.1 raine-0.50.3-fixcustomcursor.patch, NONE, 1.1 raine-0.50.3-fixdatadirloc.patch, NONE, 1.1 raine-0.50.3-makefile.patch, NONE, 1.1 raine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/raine/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18937/F-9
Modified Files:
.cvsignore sources
Added Files:
raine-0.50.11-incdirfix.patch
raine-0.50.3-fixcustomcursor.patch
raine-0.50.3-fixdatadirloc.patch raine-0.50.3-makefile.patch
raine.spec
Log Message:
Initial import.
raine-0.50.11-incdirfix.patch:
--- NEW FILE raine-0.50.11-incdirfix.patch ---
--- raine-0.50.11/makefile.incdirfix 2008-03-14 22:24:04.000000000 +0000
+++ raine-0.50.11/makefile 2008-03-24 21:47:50.000000000 +0000
@@ -93,7 +93,7 @@
# profiling
# CC = gcc -pg
-INCDIR= \
+INCDIR= -I. \
-Isource \
-Isource/68000 \
-Isource/68020 \
raine-0.50.3-fixcustomcursor.patch:
--- NEW FILE raine-0.50.3-fixcustomcursor.patch ---
--- raine-0.50.3/source/sdl/gui.cpp.orig 2007-01-26 10:35:56.000000000 +0000
+++ raine-0.50.3/source/sdl/gui.cpp 2007-02-26 18:00:50.000000000 +0000
@@ -321,7 +321,7 @@
{
char str[256];
- setup_mouse_cursor(IMG_Load("bitmaps/cursor.png"));
+ setup_mouse_cursor(IMG_Load("/usr/share/raine/bitmaps/cursor.png"));
#ifdef RAINE_DEBUG
print_debug("StartGUI(): START\n");
raine-0.50.3-fixdatadirloc.patch:
--- NEW FILE raine-0.50.3-fixdatadirloc.patch ---
--- raine-0.50.3/source/raine.cpp.orig 2007-01-25 10:38:31.000000000 +0000
+++ raine-0.50.3/source/raine.cpp 2007-02-26 15:48:23.000000000 +0000
@@ -212,7 +212,7 @@
*/
#ifdef RAINE_UNIX
- sprintf(dir_cfg.share_path, "/usr/share/games/raine/");
+ sprintf(dir_cfg.share_path, "/usr/share/raine/");
sprintf(dir_cfg.exe_path, "%s/.raine/", getenv("HOME"));
#else
#if !defined(RAINE_WIN32) || defined(__MINGW32__)
raine-0.50.3-makefile.patch:
--- NEW FILE raine-0.50.3-makefile.patch ---
--- raine-0.50.3/makefile.orig 2007-02-22 09:29:23.000000000 +0000
+++ raine-0.50.3/makefile 2007-02-26 17:24:24.000000000 +0000
@@ -20,7 +20,7 @@
# RAINE_DEBUG = 1
# Be verbose ?
-# VERBOSE = 1
+VERBOSE = 1
# Use asm video core ? (comment to use C core)
ASM_VIDEO_CORE = 1
@@ -202,8 +202,8 @@
SDL = 1
prefix = $(DESTDIR)/usr
- bindir = $(prefix)/games
- sharedir = $(prefix)/share/games
+ bindir = $(prefix)/bin
+ sharedir = $(prefix)/share
mandir = $(prefix)/man/man6
rainedata = $(sharedir)/raine
ifndef SDL
@@ -256,7 +256,6 @@
ifndef SDL
ifeq ("$(shell if [ -e /usr/include/vga.h ] || [ -e /usr/local/include/vga.h ]; then echo yes; fi)","yes")
-GFX_SVGALIB=1
endif
endif
@@ -313,7 +312,7 @@
OBJDIR = $(OSTYPE)-sdl
endif
-include cpuinfo
+#include cpuinfo
ifdef X86_64
OBJDIR := $(OBJDIR)64
@@ -395,25 +394,18 @@
ifdef RAINE32
# when starting a game -> black screen if -O > 1 (bug in uint64 calculation)
-CFLAGS = -O1
+#CFLAGS = -O1
else
# Seems to work now, at least with the sdl version ? (to be tested with windows !)
-CFLAGS = -O3
+CFLAGS = $(RPMFLAGS)
endif
CFLAGS += $(INCDIR) \
$(DEFINE) \
- $(_MARCH) \
- -Wno-trigraphs \
- -fschedule-insns2 \
- -funroll-all-loops \
- -fexpensive-optimizations \
- -ffast-math \
- -w \
- -fomit-frame-pointer
+ $(_MARCH)
# This is required for gcc-2.9x (bug in -fomit-frame-pointer)
-CFLAGS_MCU = $(_MARCH) -O3 -fexpensive-optimizations # switches for the 68705 mcus
+CFLAGS_MCU = $(CFLAGS)
ifdef RAINE_UNIX
CFLAGS += -pipe
@@ -1164,7 +1156,7 @@
./makedep $(OBJDIR) $(OBJS) > make.dep
cpuinfo:
- @sh ./detect-cpu
+# @sh ./detect-cpu
include make.dep
@@ -1214,8 +1206,6 @@
endif
sh -c "if [ -f hiscore.dat ]; then $(INSTALL_DATA) hiscore.dat $(rainedata); fi"
$(INSTALL_DATA) config/cheats.cfg $(rainedata)
- $(INSTALL_DATA) raine.desktop $(prefix)/share/applications
- $(INSTALL_DATA) raine.png $(prefix)/share/pixmaps
install_dirs:
$(MD) -pv $(bindir) $(rainedata) $(langdir) $(romdir) $(artdir) $(emudxdir) $(prefix)/share/pixmaps $(prefix)/share/applications $(bitmaps_dir) $(fonts_dir)
--- NEW FILE raine.spec ---
Name: raine
Version: 0.50.11
Release: 1%{?dist}
Summary: Arcade emulator focused on Taito and Jaleco games hardware
Group: Applications/Emulators
License: GPL+ and Distributable
URL: http://www.rainemu.com
Source0: http://www.rainemu.com/html/archive/raines-%{version}.tar.bz2
Patch0: %{name}-0.50.3-makefile.patch
Patch1: %{name}-0.50.3-fixdatadirloc.patch
Patch2: %{name}-0.50.3-fixcustomcursor.patch
Patch3: %{name}-0.50.11-incdirfix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: libpng-devel
BuildRequires: nasm
BuildRequires: SDL_image-devel
BuildRequires: SDL_ttf-devel
BuildRequires: zlib-devel
Requires: hicolor-icon-theme
# Only compiles on x86 due to extensive x86 assembly
ExclusiveArch: %{ix86}
%description
Raine emulates some M68000, M68020, Z80 and M68705 arcade games and is mainly
focused on Taito and Jaleco games hardware. Raine can emulate many nice games
now, including new additions from Cave and other companies.
%prep
%setup -qn %{name}-%{version}
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
# Fix encoding
iconv -f iso8859-1 debian/changelog -t utf8 > changelog
# Fix permissions for debuginfo RPM
chmod -x */*.c \
*/*.cpp \
*/*.h \
*/*/*.c \
*/*/*.h \
*/*/*.cpp \
*/*/*/*.c \
*/*/*/*.h \
*/*/*/*.cpp
%build
make %{?_smp_mflags} RPMFLAGS="%{optflags} -fno-strict-aliasing"
# Build desktop icon
cat >%{name}.desktop <<EOF
[Desktop Entry]
Encoding=UTF-8
Name=Raine
GenericName=Arcade Emulator
Comment=%{summary}
Exec=%{name}
Icon=%{name}
Terminal=false
Type=Application
StartupNotify=false
Categories=Game;Emulator;
EOF
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
install -pm0644 %{name}.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
desktop-file-install --vendor dribble \
--dir %{buildroot}%{_datadir}/applications \
%{name}.desktop
%clean
rm -rf %{buildroot}
%post
# Set SELinux type (requires executable stack & data segment)
semanage fcontext -a -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
restorecon '%{_bindir}/%{name}' 2>/dev/null || :
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
# Undo SELinux changes on removal
if [ $1 -eq 0 ]; then
semanage fcontext -d -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
fi
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
%doc changelog
%changelog
* Tue Mar 25 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.11-1
- Upgrade to 0.50.11
- Dropped changes/* and now include the general changelog
- Added patch to include assembler dirs, otherwise compilation fails
* Tue Jan 08 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.6-1
- Upgrade to 0.50.6
- Updated selinux %%post/%%postun entries
* Sat Jul 07 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.5-1
- Upgrade to 0.50.5
- Minor spec changes due to new guidelines
- Dropped explicit support for Fedora Core 5
* Sun May 06 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.4-1
- Upgrade to 0.50.4
* Sat Mar 17 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-2
- Changed .desktop category to Game;Emulator;
- "Fixed" encoding on changes-antiriad.txt
* Sun Feb 25 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-1
- Upgrade to 0.50.3
- Updated all patches for new version
- Added patch for building with older SDL supplied with FC5
- Dropped allegro-devel buildrequire. Now only uses SDL
- Added patch to fix loading of the custom cursor
* Mon Oct 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-4
- Drop svgalib support (Dribble BZ #45)
* Sat Oct 21 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-3
- Fix source permissions for debuginfo rpm
* Wed Oct 18 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-2
- Dropped zlib-devel buildrequire, implied by libpng-devel
- Added hicolor-icon-theme require
- Swapped excludearch tags for exclusivearch tags
- Added SELinux context changes due to executable stack & data segment
* Fri Oct 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-1
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/raine/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:54:36 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:21:57 -0000 1.2
@@ -0,0 +1 @@
+raines-0.50.11.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/raine/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:54:36 -0000 1.1
+++ sources 4 Sep 2008 11:21:57 -0000 1.2
@@ -0,0 +1 @@
+d7bad459736dbb77be767ae7d2e2a583 raines-0.50.11.tar.bz2
16 years, 2 months
rpms/raine/F-8 raine-0.50.11-incdirfix.patch, NONE, 1.1 raine-0.50.3-fixcustomcursor.patch, NONE, 1.1 raine-0.50.3-fixdatadirloc.patch, NONE, 1.1 raine-0.50.3-makefile.patch, NONE, 1.1 raine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/raine/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18666/F-8
Modified Files:
.cvsignore sources
Added Files:
raine-0.50.11-incdirfix.patch
raine-0.50.3-fixcustomcursor.patch
raine-0.50.3-fixdatadirloc.patch raine-0.50.3-makefile.patch
raine.spec
Log Message:
Initial import.
raine-0.50.11-incdirfix.patch:
--- NEW FILE raine-0.50.11-incdirfix.patch ---
--- raine-0.50.11/makefile.incdirfix 2008-03-14 22:24:04.000000000 +0000
+++ raine-0.50.11/makefile 2008-03-24 21:47:50.000000000 +0000
@@ -93,7 +93,7 @@
# profiling
# CC = gcc -pg
-INCDIR= \
+INCDIR= -I. \
-Isource \
-Isource/68000 \
-Isource/68020 \
raine-0.50.3-fixcustomcursor.patch:
--- NEW FILE raine-0.50.3-fixcustomcursor.patch ---
--- raine-0.50.3/source/sdl/gui.cpp.orig 2007-01-26 10:35:56.000000000 +0000
+++ raine-0.50.3/source/sdl/gui.cpp 2007-02-26 18:00:50.000000000 +0000
@@ -321,7 +321,7 @@
{
char str[256];
- setup_mouse_cursor(IMG_Load("bitmaps/cursor.png"));
+ setup_mouse_cursor(IMG_Load("/usr/share/raine/bitmaps/cursor.png"));
#ifdef RAINE_DEBUG
print_debug("StartGUI(): START\n");
raine-0.50.3-fixdatadirloc.patch:
--- NEW FILE raine-0.50.3-fixdatadirloc.patch ---
--- raine-0.50.3/source/raine.cpp.orig 2007-01-25 10:38:31.000000000 +0000
+++ raine-0.50.3/source/raine.cpp 2007-02-26 15:48:23.000000000 +0000
@@ -212,7 +212,7 @@
*/
#ifdef RAINE_UNIX
- sprintf(dir_cfg.share_path, "/usr/share/games/raine/");
+ sprintf(dir_cfg.share_path, "/usr/share/raine/");
sprintf(dir_cfg.exe_path, "%s/.raine/", getenv("HOME"));
#else
#if !defined(RAINE_WIN32) || defined(__MINGW32__)
raine-0.50.3-makefile.patch:
--- NEW FILE raine-0.50.3-makefile.patch ---
--- raine-0.50.3/makefile.orig 2007-02-22 09:29:23.000000000 +0000
+++ raine-0.50.3/makefile 2007-02-26 17:24:24.000000000 +0000
@@ -20,7 +20,7 @@
# RAINE_DEBUG = 1
# Be verbose ?
-# VERBOSE = 1
+VERBOSE = 1
# Use asm video core ? (comment to use C core)
ASM_VIDEO_CORE = 1
@@ -202,8 +202,8 @@
SDL = 1
prefix = $(DESTDIR)/usr
- bindir = $(prefix)/games
- sharedir = $(prefix)/share/games
+ bindir = $(prefix)/bin
+ sharedir = $(prefix)/share
mandir = $(prefix)/man/man6
rainedata = $(sharedir)/raine
ifndef SDL
@@ -256,7 +256,6 @@
ifndef SDL
ifeq ("$(shell if [ -e /usr/include/vga.h ] || [ -e /usr/local/include/vga.h ]; then echo yes; fi)","yes")
-GFX_SVGALIB=1
endif
endif
@@ -313,7 +312,7 @@
OBJDIR = $(OSTYPE)-sdl
endif
-include cpuinfo
+#include cpuinfo
ifdef X86_64
OBJDIR := $(OBJDIR)64
@@ -395,25 +394,18 @@
ifdef RAINE32
# when starting a game -> black screen if -O > 1 (bug in uint64 calculation)
-CFLAGS = -O1
+#CFLAGS = -O1
else
# Seems to work now, at least with the sdl version ? (to be tested with windows !)
-CFLAGS = -O3
+CFLAGS = $(RPMFLAGS)
endif
CFLAGS += $(INCDIR) \
$(DEFINE) \
- $(_MARCH) \
- -Wno-trigraphs \
- -fschedule-insns2 \
- -funroll-all-loops \
- -fexpensive-optimizations \
- -ffast-math \
- -w \
- -fomit-frame-pointer
+ $(_MARCH)
# This is required for gcc-2.9x (bug in -fomit-frame-pointer)
-CFLAGS_MCU = $(_MARCH) -O3 -fexpensive-optimizations # switches for the 68705 mcus
+CFLAGS_MCU = $(CFLAGS)
ifdef RAINE_UNIX
CFLAGS += -pipe
@@ -1164,7 +1156,7 @@
./makedep $(OBJDIR) $(OBJS) > make.dep
cpuinfo:
- @sh ./detect-cpu
+# @sh ./detect-cpu
include make.dep
@@ -1214,8 +1206,6 @@
endif
sh -c "if [ -f hiscore.dat ]; then $(INSTALL_DATA) hiscore.dat $(rainedata); fi"
$(INSTALL_DATA) config/cheats.cfg $(rainedata)
- $(INSTALL_DATA) raine.desktop $(prefix)/share/applications
- $(INSTALL_DATA) raine.png $(prefix)/share/pixmaps
install_dirs:
$(MD) -pv $(bindir) $(rainedata) $(langdir) $(romdir) $(artdir) $(emudxdir) $(prefix)/share/pixmaps $(prefix)/share/applications $(bitmaps_dir) $(fonts_dir)
--- NEW FILE raine.spec ---
Name: raine
Version: 0.50.11
Release: 1%{?dist}
Summary: Arcade emulator focused on Taito and Jaleco games hardware
Group: Applications/Emulators
License: GPL+ and Distributable
URL: http://www.rainemu.com
Source0: http://www.rainemu.com/html/archive/raines-%{version}.tar.bz2
Patch0: %{name}-0.50.3-makefile.patch
Patch1: %{name}-0.50.3-fixdatadirloc.patch
Patch2: %{name}-0.50.3-fixcustomcursor.patch
Patch3: %{name}-0.50.11-incdirfix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: libpng-devel
BuildRequires: nasm
BuildRequires: SDL_image-devel
BuildRequires: SDL_ttf-devel
BuildRequires: zlib-devel
Requires: hicolor-icon-theme
# Only compiles on x86 due to extensive x86 assembly
ExclusiveArch: %{ix86}
%description
Raine emulates some M68000, M68020, Z80 and M68705 arcade games and is mainly
focused on Taito and Jaleco games hardware. Raine can emulate many nice games
now, including new additions from Cave and other companies.
%prep
%setup -qn %{name}-%{version}
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
# Fix encoding
iconv -f iso8859-1 debian/changelog -t utf8 > changelog
# Fix permissions for debuginfo RPM
chmod -x */*.c \
*/*.cpp \
*/*.h \
*/*/*.c \
*/*/*.h \
*/*/*.cpp \
*/*/*/*.c \
*/*/*/*.h \
*/*/*/*.cpp
%build
make %{?_smp_mflags} RPMFLAGS="%{optflags} -fno-strict-aliasing"
# Build desktop icon
cat >%{name}.desktop <<EOF
[Desktop Entry]
Encoding=UTF-8
Name=Raine
GenericName=Arcade Emulator
Comment=%{summary}
Exec=%{name}
Icon=%{name}
Terminal=false
Type=Application
StartupNotify=false
Categories=Game;Emulator;
EOF
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
install -pm0644 %{name}.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
desktop-file-install --vendor dribble \
--dir %{buildroot}%{_datadir}/applications \
%{name}.desktop
%clean
rm -rf %{buildroot}
%post
# Set SELinux type (requires executable stack & data segment)
semanage fcontext -a -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
restorecon '%{_bindir}/%{name}' 2>/dev/null || :
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
# Undo SELinux changes on removal
if [ $1 -eq 0 ]; then
semanage fcontext -d -t unconfined_execmem_exec_t '%{_bindir}/%{name}' 2>/dev/null || :
fi
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
%doc changelog
%changelog
* Tue Mar 25 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.11-1
- Upgrade to 0.50.11
- Dropped changes/* and now include the general changelog
- Added patch to include assembler dirs, otherwise compilation fails
* Tue Jan 08 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.6-1
- Upgrade to 0.50.6
- Updated selinux %%post/%%postun entries
* Sat Jul 07 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.5-1
- Upgrade to 0.50.5
- Minor spec changes due to new guidelines
- Dropped explicit support for Fedora Core 5
* Sun May 06 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.4-1
- Upgrade to 0.50.4
* Sat Mar 17 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-2
- Changed .desktop category to Game;Emulator;
- "Fixed" encoding on changes-antiriad.txt
* Sun Feb 25 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.50.3-1
- Upgrade to 0.50.3
- Updated all patches for new version
- Added patch for building with older SDL supplied with FC5
- Dropped allegro-devel buildrequire. Now only uses SDL
- Added patch to fix loading of the custom cursor
* Mon Oct 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-4
- Drop svgalib support (Dribble BZ #45)
* Sat Oct 21 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-3
- Fix source permissions for debuginfo rpm
* Wed Oct 18 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-2
- Dropped zlib-devel buildrequire, implied by libpng-devel
- Added hicolor-icon-theme require
- Swapped excludearch tags for exclusivearch tags
- Added SELinux context changes due to executable stack & data segment
* Fri Oct 06 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.43.4-1
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/raine/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:54:36 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:21:17 -0000 1.2
@@ -0,0 +1 @@
+raines-0.50.11.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/raine/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:54:36 -0000 1.1
+++ sources 4 Sep 2008 11:21:17 -0000 1.2
@@ -0,0 +1 @@
+d7bad459736dbb77be767ae7d2e2a583 raines-0.50.11.tar.bz2
16 years, 2 months
rpms/mednafen/devel mednafen-0.7.1-norpath.patch, NONE, 1.1 mednafen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/mednafen/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18391/devel
Modified Files:
.cvsignore sources
Added Files:
mednafen-0.7.1-norpath.patch mednafen.spec
Log Message:
Initial import.
mednafen-0.7.1-norpath.patch:
--- NEW FILE mednafen-0.7.1-norpath.patch ---
--- mednafen/config.rpath.orig 2006-12-22 05:30:02.000000000 +0000
+++ mednafen/config.rpath 2007-01-03 19:37:59.000000000 +0000
@@ -153,7 +153,7 @@
# here allows them to be overridden if necessary.
# Unlike libtool, we use -rpath here, not --rpath, since the documented
# option of GNU ld is called -rpath, not --rpath.
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
case "$host_os" in
aix3* | aix4* | aix5*)
# On AIX/PPC, the GNU linker is very broken
@@ -191,7 +191,7 @@
;;
interix3*)
hardcode_direct=no
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ hardcode_libdir_flag_spec=''
;;
linux*)
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
@@ -218,7 +218,7 @@
;;
*)
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
+ hardcode_libdir_flag_spec='`test -z "$SCOABSPATH"`'
else
ld_shlibs=no
fi
@@ -399,7 +399,7 @@
fi
;;
irix5* | irix6* | nonstopux*)
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
hardcode_libdir_separator=:
;;
netbsd*)
@@ -408,20 +408,20 @@
;;
newsos6)
hardcode_direct=yes
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
hardcode_libdir_separator=:
;;
openbsd*)
hardcode_direct=yes
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ hardcode_libdir_flag_spec=''
else
case "$host_os" in
openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
hardcode_libdir_flag_spec='-R$libdir'
;;
*)
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ hardcode_libdir_flag_spec=''
;;
esac
fi
@@ -431,15 +431,15 @@
hardcode_minus_L=yes
;;
osf3*)
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
hardcode_libdir_separator=:
;;
osf4* | osf5*)
if test "$GCC" = yes; then
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
else
# Both cc and cxx compiler support -rpath directly
- hardcode_libdir_flag_spec='-rpath $libdir'
+ hardcode_libdir_flag_spec=''
fi
hardcode_libdir_separator=:
;;
--- NEW FILE mednafen.spec ---
Name: mednafen
Version: 0.8.7
Release: 1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
Group: Applications/Emulators
License: GPLv2+
URL: http://mednafen.sourceforge.net
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
Patch0: mednafen-0.7.1-norpath.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gettext
BuildRequires: pkgconfig >= 0.9.0
BuildRequires: SDL_net-devel >= 1.2.0
BuildRequires: libsndfile-devel => 1.0.2
BuildRequires: libcdio-devel
BuildRequires: libGLU-devel
BuildRequires: zlib-devel
BuildRequires: jack-audio-connection-kit-devel
%description
A portable command-line driven, multi-system emulator which uses OpenGL and
SDL. It emulates the following:
* Atari Lynx
* Famicom
* GameBoy (Color)
* GameBoy Advance
* Neo Geo Pocket (Color)
* NES (NTSC & PAL)
* PC Engine
* TurboGrafx 16 (CD)
* SuperGrafx
* PC-FX
Mednafen has the ability to remap hotkey functions and virtual system
inputs to a keyboard, a joystick or both simultaneously. Save states are
supported, as is real-time game rewinding. Screen snapshots may be taken at the
press of a button and are saved in the popular PNG file format. To play Atari
Lynx games you will also need lynxboot.img which is not included for legal
reasons.
%prep
%setup -q -n %{name}
%patch0 -p1
# Permission cleanups for debuginfo
chmod -x src/wswan/dis/*
%build
# Note --disable-rpath seems to get ignored, at least on x86_64 so we rely on
# the patch aswell.
%configure --disable-rpath
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
%find_lang %{name}
%clean
rm -rf %{buildroot}
%files -f %{name}.lang
%defattr(-,root,root,-)
%{_bindir}/%{name}
%doc AUTHORS ChangeLog COPYING TODO Documentation/*
%changelog
* Tue Jan 08 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.7-1
- Upgrade to 0.8.7
* Sun Nov 25 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.5-1
- Upgrade to 0.8.5
* Sun Nov 18 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.4-1
- Upgrade to 0.8.4
- Removed several patches which have been applied upstream
- License change due to new guidelines
- New URL as project homepage has changed
* Sat Apr 28 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.1-2
- Added patch to fix crashes with wonderswan roms
- Added patch to fix compilation on ppc
* Thu Apr 26 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.1-1
- Upgrade to 0.8.1
* Tue Feb 13 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.7.2-1
- Upgrade to 0.7.2
* Wed Jan 03 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.7.1-1
- Upgrade to 0.7.1
- Updated rpath patch
- Added support for jack
* Fri Oct 06 2006 Ian Chapman <packages[AT]amiga-hardware.ocm> 0.6.5-2
- Rebuild for new version of libcdio in fc6
* Thu Sep 07 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.5-1
- Upgrade to 0.6.5
* Wed Aug 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.4-1
- Upgrade to 0.6.4
- Minor alteration to RPM description due to new features
* Sat Aug 12 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.3-1
- Upgrade to 0.6.3
- Drop the libtool buildrequire and use the patch for fixing rpath
* Mon Jun 19 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.2-1
- Upgrade to 0.6.2
* Sun Jun 04 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.1-2
- Removed gawk buildrequire. Doesn't seem to be needed.
- Removed bison buildrequire. Doesn't seem to be needed.
- Replaced xorg-x11-devel with libGLU-devel for compatibility reasons with
modular and non modular X
- Removed SDL-devel buildrequire, implied by SDL_net-devel
* Tue May 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.1-1.iss
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:48:52 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:20:12 -0000 1.2
@@ -0,0 +1 @@
+mednafen-0.8.7.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:48:52 -0000 1.1
+++ sources 4 Sep 2008 11:20:12 -0000 1.2
@@ -0,0 +1 @@
+0bf5d722abc77323762c6fe81b5a2b25 mednafen-0.8.7.tar.bz2
16 years, 2 months
rpms/mednafen/EL-5 mednafen-0.7.1-norpath.patch, NONE, 1.1 mednafen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/mednafen/EL-5
In directory se02.es.rpmfusion.net:/tmp/cvs-serv17928/EL-5
Modified Files:
.cvsignore sources
Added Files:
mednafen-0.7.1-norpath.patch mednafen.spec
Log Message:
Initial import.
mednafen-0.7.1-norpath.patch:
--- NEW FILE mednafen-0.7.1-norpath.patch ---
--- mednafen/config.rpath.orig 2006-12-22 05:30:02.000000000 +0000
+++ mednafen/config.rpath 2007-01-03 19:37:59.000000000 +0000
@@ -153,7 +153,7 @@
# here allows them to be overridden if necessary.
# Unlike libtool, we use -rpath here, not --rpath, since the documented
# option of GNU ld is called -rpath, not --rpath.
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
case "$host_os" in
aix3* | aix4* | aix5*)
# On AIX/PPC, the GNU linker is very broken
@@ -191,7 +191,7 @@
;;
interix3*)
hardcode_direct=no
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ hardcode_libdir_flag_spec=''
;;
linux*)
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
@@ -218,7 +218,7 @@
;;
*)
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
+ hardcode_libdir_flag_spec='`test -z "$SCOABSPATH"`'
else
ld_shlibs=no
fi
@@ -399,7 +399,7 @@
fi
;;
irix5* | irix6* | nonstopux*)
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
hardcode_libdir_separator=:
;;
netbsd*)
@@ -408,20 +408,20 @@
;;
newsos6)
hardcode_direct=yes
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
hardcode_libdir_separator=:
;;
openbsd*)
hardcode_direct=yes
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ hardcode_libdir_flag_spec=''
else
case "$host_os" in
openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
hardcode_libdir_flag_spec='-R$libdir'
;;
*)
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ hardcode_libdir_flag_spec=''
;;
esac
fi
@@ -431,15 +431,15 @@
hardcode_minus_L=yes
;;
osf3*)
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
hardcode_libdir_separator=:
;;
osf4* | osf5*)
if test "$GCC" = yes; then
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_flag_spec=''
else
# Both cc and cxx compiler support -rpath directly
- hardcode_libdir_flag_spec='-rpath $libdir'
+ hardcode_libdir_flag_spec=''
fi
hardcode_libdir_separator=:
;;
--- NEW FILE mednafen.spec ---
Name: mednafen
Version: 0.8.7
Release: 1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
Group: Applications/Emulators
License: GPLv2+
URL: http://mednafen.sourceforge.net
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
Patch0: mednafen-0.7.1-norpath.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gettext
BuildRequires: pkgconfig >= 0.9.0
BuildRequires: SDL_net-devel >= 1.2.0
BuildRequires: libsndfile-devel => 1.0.2
BuildRequires: libcdio-devel
BuildRequires: libGLU-devel
BuildRequires: zlib-devel
BuildRequires: jack-audio-connection-kit-devel
%description
A portable command-line driven, multi-system emulator which uses OpenGL and
SDL. It emulates the following:
* Atari Lynx
* Famicom
* GameBoy (Color)
* GameBoy Advance
* Neo Geo Pocket (Color)
* NES (NTSC & PAL)
* PC Engine
* TurboGrafx 16 (CD)
* SuperGrafx
* PC-FX
Mednafen has the ability to remap hotkey functions and virtual system
inputs to a keyboard, a joystick or both simultaneously. Save states are
supported, as is real-time game rewinding. Screen snapshots may be taken at the
press of a button and are saved in the popular PNG file format. To play Atari
Lynx games you will also need lynxboot.img which is not included for legal
reasons.
%prep
%setup -q -n %{name}
%patch0 -p1
# Permission cleanups for debuginfo
chmod -x src/wswan/dis/*
%build
# Note --disable-rpath seems to get ignored, at least on x86_64 so we rely on
# the patch aswell.
%configure --disable-rpath
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
%find_lang %{name}
%clean
rm -rf %{buildroot}
%files -f %{name}.lang
%defattr(-,root,root,-)
%{_bindir}/%{name}
%doc AUTHORS ChangeLog COPYING TODO Documentation/*
%changelog
* Tue Jan 08 2008 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.7-1
- Upgrade to 0.8.7
* Sun Nov 25 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.5-1
- Upgrade to 0.8.5
* Sun Nov 18 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.4-1
- Upgrade to 0.8.4
- Removed several patches which have been applied upstream
- License change due to new guidelines
- New URL as project homepage has changed
* Sat Apr 28 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.1-2
- Added patch to fix crashes with wonderswan roms
- Added patch to fix compilation on ppc
* Thu Apr 26 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.8.1-1
- Upgrade to 0.8.1
* Tue Feb 13 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.7.2-1
- Upgrade to 0.7.2
* Wed Jan 03 2007 Ian Chapman <packages[AT]amiga-hardware.com> 0.7.1-1
- Upgrade to 0.7.1
- Updated rpath patch
- Added support for jack
* Fri Oct 06 2006 Ian Chapman <packages[AT]amiga-hardware.ocm> 0.6.5-2
- Rebuild for new version of libcdio in fc6
* Thu Sep 07 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.5-1
- Upgrade to 0.6.5
* Wed Aug 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.4-1
- Upgrade to 0.6.4
- Minor alteration to RPM description due to new features
* Sat Aug 12 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.3-1
- Upgrade to 0.6.3
- Drop the libtool buildrequire and use the patch for fixing rpath
* Mon Jun 19 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.2-1
- Upgrade to 0.6.2
* Sun Jun 04 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.1-2
- Removed gawk buildrequire. Doesn't seem to be needed.
- Removed bison buildrequire. Doesn't seem to be needed.
- Replaced xorg-x11-devel with libGLU-devel for compatibility reasons with
modular and non modular X
- Removed SDL-devel buildrequire, implied by SDL_net-devel
* Tue May 23 2006 Ian Chapman <packages[AT]amiga-hardware.com> 0.6.1-1.iss
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/EL-5/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 15:48:52 -0000 1.1
+++ .cvsignore 4 Sep 2008 11:17:44 -0000 1.2
@@ -0,0 +1 @@
+mednafen-0.8.7.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/EL-5/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 15:48:52 -0000 1.1
+++ sources 4 Sep 2008 11:17:44 -0000 1.2
@@ -0,0 +1 @@
+0bf5d722abc77323762c6fe81b5a2b25 mednafen-0.8.7.tar.bz2
16 years, 2 months