From 1c07df43b81626ab5bdc02d05e5d5847907aa467 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 7 Jul 2008 18:57:23 +0000 Subject: [PATCH 01/18] Initialize branch F-8 for xqf --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From 19e389adfea0cdf466184edee8f8226d7d113725 Mon Sep 17 00:00:00 2001 From: Stefan Posdzich Date: Tue, 8 Jul 2008 11:23:43 +0000 Subject: [PATCH 02/18] Initial commit --- .cvsignore | 1 + import.log | 1 + sources | 1 + xqf.desktop | 8 ++++ xqf.spec | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 120 insertions(+) create mode 100644 import.log create mode 100644 xqf.desktop create mode 100644 xqf.spec diff --git a/.cvsignore b/.cvsignore index e69de29..43f36fd 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +xqf-1.0.5.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..c5176b7 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +xqf-1_0_5-4_fc9:HEAD:xqf-1.0.5-4.fc9.src.rpm:1215516144 diff --git a/sources b/sources index e69de29..fa12978 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +a88cecba6abb6349107ab135f1009946 xqf-1.0.5.tar.gz diff --git a/xqf.desktop b/xqf.desktop new file mode 100644 index 0000000..f19c273 --- /dev/null +++ b/xqf.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=XQF +Comment=Locate and connect to game servers +Exec=xqf +Icon=xqf +Type=Application +Categories=GTK;Game;ActionGame; diff --git a/xqf.spec b/xqf.spec new file mode 100644 index 0000000..ceccf48 --- /dev/null +++ b/xqf.spec @@ -0,0 +1,109 @@ +Name: xqf +Version: 1.0.5 +Release: 4%{?dist} +Summary: A server browser for many popular games + +Group: Amusements/Games +License: GPLv2+ +URL: http://www.linuxgames.com/xqf/ +Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: %{name}.desktop +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +Requires: qstat +BuildRequires: GeoIP-devel qstat gdk-pixbuf-devel glib-devel glibc-devel gettext +BuildRequires: gtk2-devel intltool perl-XML-Parser desktop-file-utils zlib-devel +BuildRequires: readline-devel + +%description +XQF is a game server browser and launcher for Unix/X11 for many popular games +such as the Quake series, Unreal Tournament series, Half-Life etc. +XQF is a front-end to QStat, a program by Steve Jankowski +and uses the GTK+ toolkit. + +%prep +%setup -q + + +%build +%configure \ + --enable-geoip \ + --enable-bzip2 \ + --enable-externalrcon \ + --enable-gtk2 + +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + +# the desktop file +desktop-file-install --vendor="fedora" \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + %{SOURCE1} + +# removing extraneous .desktop file +rm -f $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop + +# the icon stuff +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps + +install -p -m 0644 pixmaps/%{name}_32x32.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/%{name}.png + +%find_lang %{name} + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +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 +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 -f %{name}.lang +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING README +%{_bindir}/%{name} +%{_bindir}/%{name}-rcon +%{_datadir}/pixmaps/%{name}_*.png +%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/icons/hicolor/*/apps/%{name}.png +%{_datadir}/%{name} +%{_mandir}/man6/%{name}.6.* + + +%changelog +* Wed Jun 18 2008 Stefan Posdzich - 1.0.5-4 +- Add new .desktop file source +- Remove BuildRequires: gtk+-devel, glib2-devel +- Remove desktop-file-install --remove-category=X-SuSE-Core-Game and {name}.desktop + +* Mon Jun 16 2008 Stefan Posdzich - 1.0.5-3 +- Add --enable-bzip2 for bzip2 data compression +- Add --enable-externalrco (Remote server administration tool) +- Add BuildRequires: readline-devel +- Add correct url for Source: +- Add gtk-update-icon-cache + +* Sun Jun 15 2008 Stefan Posdzich - 1.0.5-2 +- Add desktop-file-install for the .desktop file +- Add BuildRequires: GeoIP-devel, qstat +- Remove the dummy libGeoIP.so +- Remove Requires: GeoIP + +* Fri Jun 13 2008 Stefan Posdzich - 1.0.5-1 +- Initial SPEC file From 832f14ff2a42b661796f8e5147b54fb36e8b9891 Mon Sep 17 00:00:00 2001 From: Stefan Posdzich Date: Tue, 8 Jul 2008 12:52:36 +0000 Subject: [PATCH 03/18] - Remove BuildRequires: glibc-devel --- xqf.spec | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/xqf.spec b/xqf.spec index ceccf48..fec2a4c 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A server browser for many popular games Group: Amusements/Games @@ -11,9 +11,8 @@ Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: qstat -BuildRequires: GeoIP-devel qstat gdk-pixbuf-devel glib-devel glibc-devel gettext -BuildRequires: gtk2-devel intltool perl-XML-Parser desktop-file-utils zlib-devel -BuildRequires: readline-devel +BuildRequires: GeoIP-devel qstat gdk-pixbuf-devel glib-devel gettext zlib-devel +BuildRequires: gtk2-devel intltool perl-XML-Parser desktop-file-utils readline-devel %description XQF is a game server browser and launcher for Unix/X11 for many popular games @@ -39,14 +38,14 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +# removing extraneous .desktop file +rm -f $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop + # the desktop file desktop-file-install --vendor="fedora" \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE1} -# removing extraneous .desktop file -rm -f $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop - # the icon stuff mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps @@ -87,6 +86,9 @@ fi %changelog +* Tue Jul 08 2008 Stefan Posdzich - 1.0.5-5 +- Remove BuildRequires: glibc-devel + * Wed Jun 18 2008 Stefan Posdzich - 1.0.5-4 - Add new .desktop file source - Remove BuildRequires: gtk+-devel, glib2-devel From be8fa366f1055f6956d683e0e9067a33243b7c71 Mon Sep 17 00:00:00 2001 From: Stefan Posdzich Date: Tue, 8 Jul 2008 13:29:45 +0000 Subject: [PATCH 04/18] Initial commit --- sources | 1 + xqf.desktop | 8 ++++ xqf.spec | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 120 insertions(+) create mode 100644 xqf.desktop create mode 100644 xqf.spec diff --git a/sources b/sources index e69de29..fa12978 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +a88cecba6abb6349107ab135f1009946 xqf-1.0.5.tar.gz diff --git a/xqf.desktop b/xqf.desktop new file mode 100644 index 0000000..f19c273 --- /dev/null +++ b/xqf.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=XQF +Comment=Locate and connect to game servers +Exec=xqf +Icon=xqf +Type=Application +Categories=GTK;Game;ActionGame; diff --git a/xqf.spec b/xqf.spec new file mode 100644 index 0000000..fec2a4c --- /dev/null +++ b/xqf.spec @@ -0,0 +1,111 @@ +Name: xqf +Version: 1.0.5 +Release: 5%{?dist} +Summary: A server browser for many popular games + +Group: Amusements/Games +License: GPLv2+ +URL: http://www.linuxgames.com/xqf/ +Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: %{name}.desktop +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +Requires: qstat +BuildRequires: GeoIP-devel qstat gdk-pixbuf-devel glib-devel gettext zlib-devel +BuildRequires: gtk2-devel intltool perl-XML-Parser desktop-file-utils readline-devel + +%description +XQF is a game server browser and launcher for Unix/X11 for many popular games +such as the Quake series, Unreal Tournament series, Half-Life etc. +XQF is a front-end to QStat, a program by Steve Jankowski +and uses the GTK+ toolkit. + +%prep +%setup -q + + +%build +%configure \ + --enable-geoip \ + --enable-bzip2 \ + --enable-externalrcon \ + --enable-gtk2 + +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + +# removing extraneous .desktop file +rm -f $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop + +# the desktop file +desktop-file-install --vendor="fedora" \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + %{SOURCE1} + +# the icon stuff +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps + +install -p -m 0644 pixmaps/%{name}_32x32.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/%{name}.png + +%find_lang %{name} + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +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 +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 -f %{name}.lang +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING README +%{_bindir}/%{name} +%{_bindir}/%{name}-rcon +%{_datadir}/pixmaps/%{name}_*.png +%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/icons/hicolor/*/apps/%{name}.png +%{_datadir}/%{name} +%{_mandir}/man6/%{name}.6.* + + +%changelog +* Tue Jul 08 2008 Stefan Posdzich - 1.0.5-5 +- Remove BuildRequires: glibc-devel + +* Wed Jun 18 2008 Stefan Posdzich - 1.0.5-4 +- Add new .desktop file source +- Remove BuildRequires: gtk+-devel, glib2-devel +- Remove desktop-file-install --remove-category=X-SuSE-Core-Game and {name}.desktop + +* Mon Jun 16 2008 Stefan Posdzich - 1.0.5-3 +- Add --enable-bzip2 for bzip2 data compression +- Add --enable-externalrco (Remote server administration tool) +- Add BuildRequires: readline-devel +- Add correct url for Source: +- Add gtk-update-icon-cache + +* Sun Jun 15 2008 Stefan Posdzich - 1.0.5-2 +- Add desktop-file-install for the .desktop file +- Add BuildRequires: GeoIP-devel, qstat +- Remove the dummy libGeoIP.so +- Remove Requires: GeoIP + +* Fri Jun 13 2008 Stefan Posdzich - 1.0.5-1 +- Initial SPEC file From 308628640fe34e9edf9bbec16daa9253cce5f4de Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 11:56:22 +0000 Subject: [PATCH 05/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- xqf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xqf.spec b/xqf.spec index fec2a4c..f804213 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A server browser for many popular games Group: Amusements/Games @@ -86,6 +86,9 @@ fi %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 1.0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Jul 08 2008 Stefan Posdzich - 1.0.5-5 - Remove BuildRequires: glibc-devel From 6da1b5efc059c1825ab5db8acd18ba773e061f30 Mon Sep 17 00:00:00 2001 From: Stefan Posdzich Date: Sun, 7 Jun 2009 14:25:52 +0000 Subject: [PATCH 06/18] - Added new icon cache scriptlets - Fixed "Bug 503695 - Xqf freezes with 100% CPU" --- xqf-1.0.5-launch.patch | 22 ++++++++++++++++++++++ xqf.spec | 39 +++++++++++++++++++++++---------------- 2 files changed, 45 insertions(+), 16 deletions(-) create mode 100644 xqf-1.0.5-launch.patch diff --git a/xqf-1.0.5-launch.patch b/xqf-1.0.5-launch.patch new file mode 100644 index 0000000..5f7a0c3 --- /dev/null +++ b/xqf-1.0.5-launch.patch @@ -0,0 +1,22 @@ +--- src/launch.c 2005-10-07 14:55:15.000000000 +0200 ++++ src/launch.c.patch 2009-06-05 16:30:01.000000000 +0200 +@@ -168,14 +168,18 @@ + + res = read (fd, cl->buffer + cl->pos, CLIENT_ERROR_BUFFER - 1 - cl->pos); + +- if (res <= 0) { /* read error or EOF */ ++ if (res < 0) { /* read error or EOF */ + if (errno == EAGAIN || errno == EWOULDBLOCK) + return; + + client_detach (cl); + return; ++ } else if (res == 0) { ++ client_detach (cl); ++ return; + } + ++ + if (cl->pos + res == CLIENT_ERROR_BUFFER - 1) { + tmp = &cl->buffer[CLIENT_ERROR_BUFFER - 1]; + *tmp = '\0'; diff --git a/xqf.spec b/xqf.spec index f804213..8196631 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A server browser for many popular games Group: Amusements/Games @@ -8,6 +8,7 @@ License: GPLv2+ URL: http://www.linuxgames.com/xqf/ Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz Source1: %{name}.desktop +Patch0: %{name}-%{version}-launch.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: qstat @@ -22,6 +23,7 @@ and uses the GTK+ toolkit. %prep %setup -q +%patch0 -p0 -b .launch %build @@ -31,48 +33,49 @@ and uses the GTK+ toolkit. --enable-externalrcon \ --enable-gtk2 -make %{?_smp_mflags} +make %{?_smp_mflags} CFLAGS="%{optflags}" %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} # removing extraneous .desktop file -rm -f $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop +rm -f %{buildroot}%{_datadir}/applications/%{name}.desktop # the desktop file desktop-file-install --vendor="fedora" \ - --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} # the icon stuff -mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps +mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps install -p -m 0644 pixmaps/%{name}_32x32.png \ - $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/%{name}.png + %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png %find_lang %{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %post -touch --no-create %{_datadir}/icons/hicolor -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then -%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : -fi +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun -touch --no-create %{_datadir}/icons/hicolor -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then -%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README @@ -86,6 +89,10 @@ fi %changelog +* Sun Jun 07 2009 Stefan Posdzich - 1.0.5-7 +- Added new icon cache scriptlets +- Fixed "Bug 503695 - Xqf freezes with 100% CPU" + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 8e5f7564b29de3713963cae73ff3a3985d12cfd0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 08:42:52 +0000 Subject: [PATCH 07/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xqf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xqf.spec b/xqf.spec index 8196631..c177473 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A server browser for many popular games Group: Amusements/Games @@ -89,6 +89,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Stefan Posdzich - 1.0.5-7 - Added new icon cache scriptlets - Fixed "Bug 503695 - Xqf freezes with 100% CPU" From 87f97a0c4300b23ef92132c1f655c43b1b36615d Mon Sep 17 00:00:00 2001 From: cassmodiah Date: Sat, 14 Nov 2009 12:20:35 +0000 Subject: [PATCH 08/18] - Fix RHBZ #533704 #533705 - Cosmetical changes --- xqf.spec | 68 +++++++++++++++++++++++++++++++++----------------------- 1 file changed, 40 insertions(+), 28 deletions(-) diff --git a/xqf.spec b/xqf.spec index c177473..6511fa0 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,19 +1,29 @@ -Name: xqf -Version: 1.0.5 -Release: 8%{?dist} -Summary: A server browser for many popular games +Name: xqf +Version: 1.0.5 +Release: 9%{?dist} +Summary: Server browser for many popular games -Group: Amusements/Games -License: GPLv2+ -URL: http://www.linuxgames.com/xqf/ -Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -Source1: %{name}.desktop -Patch0: %{name}-%{version}-launch.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Group: Amusements/Games +License: GPLv2+ +URL: http://www.linuxgames.com/xqf/ +Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: %{name}.desktop +Patch0: %{name}-%{version}-launch.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +Requires: qstat >= 2.11-9 +BuildRequires: GeoIP-devel +BuildRequires: qstat +BuildRequires: gettext +BuildRequires: zlib-devel +BuildRequires: glib +BuildRequires: gtk2-devel +BuildRequires: intltool +BuildRequires: perl-XML-Parser +BuildRequires: desktop-file-utils +BuildRequires: readline-devel +BuildRequires: gdk-pixbuf -Requires: qstat -BuildRequires: GeoIP-devel qstat gdk-pixbuf-devel glib-devel gettext zlib-devel -BuildRequires: gtk2-devel intltool perl-XML-Parser desktop-file-utils readline-devel %description XQF is a game server browser and launcher for Unix/X11 for many popular games @@ -23,15 +33,16 @@ and uses the GTK+ toolkit. %prep %setup -q -%patch0 -p0 -b .launch +%patch0 -p0 %build %configure \ - --enable-geoip \ - --enable-bzip2 \ - --enable-externalrcon \ - --enable-gtk2 + --with-qstat=%{_bindir}/quakestat \ + --enable-geoip \ + --enable-bzip2 \ + --enable-externalrcon \ + --enable-gtk2 make %{?_smp_mflags} CFLAGS="%{optflags}" @@ -40,19 +51,16 @@ make %{?_smp_mflags} CFLAGS="%{optflags}" rm -rf %{buildroot} make install DESTDIR=%{buildroot} -# removing extraneous .desktop file rm -f %{buildroot}%{_datadir}/applications/%{name}.desktop -# the desktop file -desktop-file-install --vendor="fedora" \ - --dir=%{buildroot}%{_datadir}/applications \ - %{SOURCE1} +desktop-file-install \ + --dir=%{buildroot}%{_datadir}/applications \ + %{SOURCE1} -# the icon stuff mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps -install -p -m 0644 pixmaps/%{name}_32x32.png \ - %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png +install -p -m 0644 pixmaps/%{name}_32x32.png \ + %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png %find_lang %{name} @@ -82,13 +90,17 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/%{name} %{_bindir}/%{name}-rcon %{_datadir}/pixmaps/%{name}_*.png -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.png %{_datadir}/%{name} %{_mandir}/man6/%{name}.6.* %changelog +* Thu Nov 08 2009 Simon Wesp - 1.0.5-9 +- Fix RHBZ #533704 #533705 +- Cosmetical changes + * Mon Jul 27 2009 Fedora Release Engineering - 1.0.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 7028344a2145bac826ef68a6fdbfb77d3e47b10d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:41:06 +0000 Subject: [PATCH 09/18] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3e373e4..25003c4 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xqf -# $Id$ +# $Id: Makefile,v 1.1 2008/07/07 18:57:08 kevin Exp $ NAME := xqf SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From de4bf1cb3d2d6e52c408af66b39c42602301bfe2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:38:54 +0000 Subject: [PATCH 10/18] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3e373e4..ca08499 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xqf SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 8442bf21f83fb18bce3ea6cf1bc6a8b295050907 Mon Sep 17 00:00:00 2001 From: Vivek Shah Date: Sun, 3 Jan 2010 15:01:26 +0000 Subject: [PATCH 11/18] Fixed dependency issues with qstat #551990 --- xqf.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/xqf.spec b/xqf.spec index 6511fa0..388669f 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Server browser for many popular games Group: Amusements/Games @@ -11,7 +11,7 @@ Source1: %{name}.desktop Patch0: %{name}-%{version}-launch.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: qstat >= 2.11-9 +Requires: qstat >= 2.11 BuildRequires: GeoIP-devel BuildRequires: qstat BuildRequires: gettext @@ -97,6 +97,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Sun Jan 03, 2009 Vivek Shah - 1.0.5-10 +- Fix RHBZ #551990 +- Fixed dependency issues + * Thu Nov 08 2009 Simon Wesp - 1.0.5-9 - Fix RHBZ #533704 #533705 - Cosmetical changes From 582f3e031a05349e5f9d33ccf85453d7e276a0ea Mon Sep 17 00:00:00 2001 From: Vivek Shah Date: Sun, 3 Jan 2010 15:02:43 +0000 Subject: [PATCH 12/18] Fixed changelog format altered in previous commit --- xqf.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xqf.spec b/xqf.spec index 388669f..ff5f0e6 100644 --- a/xqf.spec +++ b/xqf.spec @@ -97,7 +97,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog -* Sun Jan 03, 2009 Vivek Shah - 1.0.5-10 +* Sun Jan 03 2009 Vivek Shah - 1.0.5-10 - Fix RHBZ #551990 - Fixed dependency issues From 92c60a59762f2c1539cb86f3ed63e9df87ea075d Mon Sep 17 00:00:00 2001 From: Vivek Shah Date: Sun, 3 Jan 2010 15:03:36 +0000 Subject: [PATCH 13/18] Fixed date in changelog --- xqf.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xqf.spec b/xqf.spec index ff5f0e6..09ad28b 100644 --- a/xqf.spec +++ b/xqf.spec @@ -97,7 +97,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog -* Sun Jan 03 2009 Vivek Shah - 1.0.5-10 +* Sun Jan 03 2010 Vivek Shah - 1.0.5-10 - Fix RHBZ #551990 - Fixed dependency issues From 1bed358584b1625ff71479021771037e197a5445 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 16:10:59 +0000 Subject: [PATCH 14/18] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index ca08499..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xqf -# $Id$ -NAME := xqf -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8 From 7d58830e0af4a7bf36ade28eab8493821315060e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 16:11:01 +0000 Subject: [PATCH 15/18] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 25003c4..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xqf -# $Id: Makefile,v 1.1 2008/07/07 18:57:08 kevin Exp $ -NAME := xqf -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index c5176b7..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -xqf-1_0_5-4_fc9:HEAD:xqf-1.0.5-4.fc9.src.rpm:1215516144 From eac49d33aaaedda8274f816d21e98485bbadd63b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 00:52:27 -0600 Subject: [PATCH 16/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xqf.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xqf.spec b/xqf.spec index 09ad28b..4917407 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Server browser for many popular games Group: Amusements/Games @@ -97,6 +97,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 1.0.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Jan 03 2010 Vivek Shah - 1.0.5-10 - Fix RHBZ #551990 - Fixed dependency issues From bd60c880146e20f9c6cb9919824b2819852ea417 Mon Sep 17 00:00:00 2001 From: Karsten Hopp Date: Fri, 25 Mar 2011 14:23:01 +0100 Subject: [PATCH 17/18] fix build failure, libX11 and lib dl need be be linked --- xqf-1.0.5-libx11.patch | 24 ++++++++++++++++++++++++ xqf.spec | 7 ++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 xqf-1.0.5-libx11.patch diff --git a/xqf-1.0.5-libx11.patch b/xqf-1.0.5-libx11.patch new file mode 100644 index 0000000..07e84cc --- /dev/null +++ b/xqf-1.0.5-libx11.patch @@ -0,0 +1,24 @@ +diff -up xqf-1.0.5/src/Makefile.am.libx11 xqf-1.0.5/src/Makefile.am +--- xqf-1.0.5/src/Makefile.am.libx11 2006-10-28 15:12:09.000000000 +0200 ++++ xqf-1.0.5/src/Makefile.am 2011-03-25 13:54:08.000000000 +0100 +@@ -32,7 +32,7 @@ xqf_LDADD = $(INTLLIBS) \ + $(GEOIP_LIB) \ + $(PACKAGE_LIBS) \ + $(GDK_PIXBUF_LIBS) \ +- -lz ++ -lz -lX11 -ldl + + xqf_LDFLAGS = -Wl,-rpath,$(pkglibdir) -Wl,--export-dynamic -Wl,--version-script=$(top_srcdir)/src/xqf.map + +diff -up xqf-1.0.5/src/Makefile.in.libx11 xqf-1.0.5/src/Makefile.in +--- xqf-1.0.5/src/Makefile.in.libx11 2006-11-04 13:44:12.000000000 +0100 ++++ xqf-1.0.5/src/Makefile.in 2011-03-25 13:54:19.000000000 +0100 +@@ -311,7 +311,7 @@ xqf_LDADD = $(INTLLIBS) \ + $(GEOIP_LIB) \ + $(PACKAGE_LIBS) \ + $(GDK_PIXBUF_LIBS) \ +- -lz ++ -lz -lX11 -ldl + + xqf_LDFLAGS = -Wl,-rpath,$(pkglibdir) -Wl,--export-dynamic -Wl,--version-script=$(top_srcdir)/src/xqf.map + diff --git a/xqf.spec b/xqf.spec index 4917407..df87add 100644 --- a/xqf.spec +++ b/xqf.spec @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Server browser for many popular games Group: Amusements/Games @@ -9,6 +9,7 @@ URL: http://www.linuxgames.com/xqf/ Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz Source1: %{name}.desktop Patch0: %{name}-%{version}-launch.patch +Patch1: %{name}-%{version}-libx11.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: qstat >= 2.11 @@ -34,6 +35,7 @@ and uses the GTK+ toolkit. %prep %setup -q %patch0 -p0 +%patch1 -p1 %build @@ -97,6 +99,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Fri Mar 25 2011 Karsten Hopp 1.0.5-12 +- fix build failure, libX11 and lib dl need be be linked + * Tue Feb 08 2011 Fedora Release Engineering - 1.0.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From dfb80cf7a202747d5638e80de36a2b0656677b5a Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 25 Jul 2011 18:27:12 -0400 Subject: [PATCH 18/18] Retire xqf. --- dead.package | 1 + sources | 1 - xqf-1.0.5-launch.patch | 22 ------ xqf-1.0.5-libx11.patch | 24 ------- xqf.desktop | 8 --- xqf.spec | 148 ----------------------------------------- 6 files changed, 1 insertion(+), 203 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 xqf-1.0.5-launch.patch delete mode 100644 xqf-1.0.5-libx11.patch delete mode 100644 xqf.desktop delete mode 100644 xqf.spec diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..6c90bdc --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired on 2011-07-25 due to it being unable to build this package for multiple releases (FTBFS). diff --git a/sources b/sources deleted file mode 100644 index fa12978..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -a88cecba6abb6349107ab135f1009946 xqf-1.0.5.tar.gz diff --git a/xqf-1.0.5-launch.patch b/xqf-1.0.5-launch.patch deleted file mode 100644 index 5f7a0c3..0000000 --- a/xqf-1.0.5-launch.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- src/launch.c 2005-10-07 14:55:15.000000000 +0200 -+++ src/launch.c.patch 2009-06-05 16:30:01.000000000 +0200 -@@ -168,14 +168,18 @@ - - res = read (fd, cl->buffer + cl->pos, CLIENT_ERROR_BUFFER - 1 - cl->pos); - -- if (res <= 0) { /* read error or EOF */ -+ if (res < 0) { /* read error or EOF */ - if (errno == EAGAIN || errno == EWOULDBLOCK) - return; - - client_detach (cl); - return; -+ } else if (res == 0) { -+ client_detach (cl); -+ return; - } - -+ - if (cl->pos + res == CLIENT_ERROR_BUFFER - 1) { - tmp = &cl->buffer[CLIENT_ERROR_BUFFER - 1]; - *tmp = '\0'; diff --git a/xqf-1.0.5-libx11.patch b/xqf-1.0.5-libx11.patch deleted file mode 100644 index 07e84cc..0000000 --- a/xqf-1.0.5-libx11.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -up xqf-1.0.5/src/Makefile.am.libx11 xqf-1.0.5/src/Makefile.am ---- xqf-1.0.5/src/Makefile.am.libx11 2006-10-28 15:12:09.000000000 +0200 -+++ xqf-1.0.5/src/Makefile.am 2011-03-25 13:54:08.000000000 +0100 -@@ -32,7 +32,7 @@ xqf_LDADD = $(INTLLIBS) \ - $(GEOIP_LIB) \ - $(PACKAGE_LIBS) \ - $(GDK_PIXBUF_LIBS) \ -- -lz -+ -lz -lX11 -ldl - - xqf_LDFLAGS = -Wl,-rpath,$(pkglibdir) -Wl,--export-dynamic -Wl,--version-script=$(top_srcdir)/src/xqf.map - -diff -up xqf-1.0.5/src/Makefile.in.libx11 xqf-1.0.5/src/Makefile.in ---- xqf-1.0.5/src/Makefile.in.libx11 2006-11-04 13:44:12.000000000 +0100 -+++ xqf-1.0.5/src/Makefile.in 2011-03-25 13:54:19.000000000 +0100 -@@ -311,7 +311,7 @@ xqf_LDADD = $(INTLLIBS) \ - $(GEOIP_LIB) \ - $(PACKAGE_LIBS) \ - $(GDK_PIXBUF_LIBS) \ -- -lz -+ -lz -lX11 -ldl - - xqf_LDFLAGS = -Wl,-rpath,$(pkglibdir) -Wl,--export-dynamic -Wl,--version-script=$(top_srcdir)/src/xqf.map - diff --git a/xqf.desktop b/xqf.desktop deleted file mode 100644 index f19c273..0000000 --- a/xqf.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=XQF -Comment=Locate and connect to game servers -Exec=xqf -Icon=xqf -Type=Application -Categories=GTK;Game;ActionGame; diff --git a/xqf.spec b/xqf.spec deleted file mode 100644 index df87add..0000000 --- a/xqf.spec +++ /dev/null @@ -1,148 +0,0 @@ -Name: xqf -Version: 1.0.5 -Release: 12%{?dist} -Summary: Server browser for many popular games - -Group: Amusements/Games -License: GPLv2+ -URL: http://www.linuxgames.com/xqf/ -Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -Source1: %{name}.desktop -Patch0: %{name}-%{version}-launch.patch -Patch1: %{name}-%{version}-libx11.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -Requires: qstat >= 2.11 -BuildRequires: GeoIP-devel -BuildRequires: qstat -BuildRequires: gettext -BuildRequires: zlib-devel -BuildRequires: glib -BuildRequires: gtk2-devel -BuildRequires: intltool -BuildRequires: perl-XML-Parser -BuildRequires: desktop-file-utils -BuildRequires: readline-devel -BuildRequires: gdk-pixbuf - - -%description -XQF is a game server browser and launcher for Unix/X11 for many popular games -such as the Quake series, Unreal Tournament series, Half-Life etc. -XQF is a front-end to QStat, a program by Steve Jankowski -and uses the GTK+ toolkit. - -%prep -%setup -q -%patch0 -p0 -%patch1 -p1 - - -%build -%configure \ - --with-qstat=%{_bindir}/quakestat \ - --enable-geoip \ - --enable-bzip2 \ - --enable-externalrcon \ - --enable-gtk2 - -make %{?_smp_mflags} CFLAGS="%{optflags}" - - -%install -rm -rf %{buildroot} -make install DESTDIR=%{buildroot} - -rm -f %{buildroot}%{_datadir}/applications/%{name}.desktop - -desktop-file-install \ - --dir=%{buildroot}%{_datadir}/applications \ - %{SOURCE1} - -mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps - -install -p -m 0644 pixmaps/%{name}_32x32.png \ - %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png - -%find_lang %{name} - - -%clean -rm -rf %{buildroot} - - -%post -touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : - - -%postun -if [ $1 -eq 0 ] ; then - touch --no-create %{_datadir}/icons/hicolor &>/dev/null - gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -fi - - -%posttrans -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - - -%files -f %{name}.lang -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING README -%{_bindir}/%{name} -%{_bindir}/%{name}-rcon -%{_datadir}/pixmaps/%{name}_*.png -%{_datadir}/applications/%{name}.desktop -%{_datadir}/icons/hicolor/*/apps/%{name}.png -%{_datadir}/%{name} -%{_mandir}/man6/%{name}.6.* - - -%changelog -* Fri Mar 25 2011 Karsten Hopp 1.0.5-12 -- fix build failure, libX11 and lib dl need be be linked - -* Tue Feb 08 2011 Fedora Release Engineering - 1.0.5-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sun Jan 03 2010 Vivek Shah - 1.0.5-10 -- Fix RHBZ #551990 -- Fixed dependency issues - -* Thu Nov 08 2009 Simon Wesp - 1.0.5-9 -- Fix RHBZ #533704 #533705 -- Cosmetical changes - -* Mon Jul 27 2009 Fedora Release Engineering - 1.0.5-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Sun Jun 07 2009 Stefan Posdzich - 1.0.5-7 -- Added new icon cache scriptlets -- Fixed "Bug 503695 - Xqf freezes with 100% CPU" - -* Thu Feb 26 2009 Fedora Release Engineering - 1.0.5-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Tue Jul 08 2008 Stefan Posdzich - 1.0.5-5 -- Remove BuildRequires: glibc-devel - -* Wed Jun 18 2008 Stefan Posdzich - 1.0.5-4 -- Add new .desktop file source -- Remove BuildRequires: gtk+-devel, glib2-devel -- Remove desktop-file-install --remove-category=X-SuSE-Core-Game and {name}.desktop - -* Mon Jun 16 2008 Stefan Posdzich - 1.0.5-3 -- Add --enable-bzip2 for bzip2 data compression -- Add --enable-externalrco (Remote server administration tool) -- Add BuildRequires: readline-devel -- Add correct url for Source: -- Add gtk-update-icon-cache - -* Sun Jun 15 2008 Stefan Posdzich - 1.0.5-2 -- Add desktop-file-install for the .desktop file -- Add BuildRequires: GeoIP-devel, qstat -- Remove the dummy libGeoIP.so -- Remove Requires: GeoIP - -* Fri Jun 13 2008 Stefan Posdzich - 1.0.5-1 -- Initial SPEC file