bffb12b
%bcond_with audacious
ce53b94
%bcond_without curl
10a2f8a
%bcond_without ibm
2447470
%bcond_without imlib
f5439bb
%bcond_without lua_cairo
f5439bb
%bcond_without lua_imlib
df1c301
%bcond_with moc
645c827
%bcond_without mpd
d0142f7
%bcond_with ncurses
cbf92f3
%bcond_with nvidia
65412da
%bcond_without portmon
645c827
%bcond_without rss
74d501c
%bcond_without weather
74d501c
%bcond_without weather_xoap
2a0c7a0
%if 0%{?fedora} < 36
645c827
%bcond_without wlan
2a0c7a0
%else
2a0c7a0
%bcond_with wlan
2a0c7a0
%endif
1f19157
%bcond_without xdbe
695c2bf
%bcond_without xinerama
2f7e075
5d1f068
Name:           conky 
313eb87
Version:        1.12.2
3bb88cf
Release:        3%{?dist}
5d1f068
Summary:        A system monitor for X 
5d1f068
2f7e075
License:        GPLv3+
d241b2f
URL:            https://github.com/brndnmtthws/conky
47c9c2a
Source0:        https://github.com/brndnmtthws/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
313eb87
Patch1:         conky-hsvheader.patch
1a6c97e
Igor Gnatenko 8a77272
BuildRequires:  gcc
Igor Gnatenko 8a77272
BuildRequires:  gcc-c++
5d1f068
BuildRequires:  libXft-devel
5d1f068
BuildRequires:  libXt-devel
5d1f068
BuildRequires:  libXdamage-devel
5d1f068
BuildRequires:  libXext-devel
d241b2f
BuildRequires:  lua-devel
bffb12b
%{?with_audacious:BuildRequires: audacious-devel < 3.5 dbus-glib-devel}
ce53b94
%{?with_curl:BuildRequires: curl-devel}
6c4275e
%{?with_imlib:BuildRequires: imlib2-devel}
203654c
%{?with_lua_cairo:BuildRequires: cairo-devel tolua++-devel}
203654c
%{?with_lua_imlib:BuildRequires: imlib2-devel tolua++-devel}
d0142f7
%{?with_ncurses:BuildRequires: ncurses-devel}
10a2f8a
%{?with_nvidia:BuildRequires: libXNVCtrl-devel}
fcb1d92
%{?with_rss:BuildRequires: curl-devel libxml2-devel}
74d501c
%{?with_weather:BuildRequires: curl-devel}
74d501c
%{?with_weather_xoap:BuildRequires: libxml2-devel}
cbf92f3
%{?with_wlan:BuildRequires: wireless-tools-devel}
695c2bf
%{?with_xinerama:BuildRequires: libXinerama-devel}
2bbcc95
# needed to generate documentation in the git snapshot
d241b2f
BuildRequires:  docbook2X docbook-style-xsl man
d241b2f
BuildRequires:  cmake git
23df203
BuildRequires:  desktop-file-utils
5d1f068
5d1f068
%description
5d1f068
A system monitor for X originally based on the torsmo code. but more kickass. 
5d1f068
It just keeps on given'er. Yeah.
5d1f068
5d1f068
%prep
47c9c2a
%setup -q
313eb87
%patch1 -p1 -b .hsvheader
d241b2f
e4274f5
# remove some options from CFLAGS
e4274f5
sed -i 's/\(-Werror\|-Wno-format\|-pedantic\)//g' cmake/ConkyBuildOptions.cmake
d241b2f
23df203
# and use our CFLAGS
23df203
sed -i '/set(CMAKE_C_FLAGS/,+5d' cmake/ConkyBuildOptions.cmake
23df203
5269b37
# our tolua++ is linked with lua 5.3
5269b37
sed -i \
5269b37
       -e 's|\(LUA REQUIRED\) lua5.1 lua-5.1 lua51 lua|\1 lua>=5.3|' \
5269b37
       -e 's|\(NOT LUA_VERSION VERSION_LESS\) 5.2.0|\1 5.4.0|' \
5269b37
    cmake/ConkyPlatformChecks.cmake
5269b37
d241b2f
# remove executable bits from files included in %{_docdir}
d241b2f
chmod a-x extras/convert.lua
f6188cd
df1c301
for i in AUTHORS; do
f6188cd
    iconv -f iso8859-1 -t utf8 -o ${i}{_,} && touch -r ${i}{,_} && mv -f ${i}{_,}
f6188cd
done
5d1f068
5d1f068
%build
d241b2f
%cmake \
c8fa054
                            -DBUILD_DOCS=ON \
d241b2f
                            -DBUILD_BUILTIN_CONFIG=OFF \
65412da
                            -DBUILD_SHARED_LIBS:BOOL=OFF \
d241b2f
    %{?with_audacious:      -DBUILD_AUDACIOUS=ON} \
d241b2f
    %{?with_curl:           -DBUILD_CURL=ON} \
d241b2f
    %{!?with_ibm:           -DBUILD_IBM=OFF} \
d241b2f
    %{?with_imlib:          -DBUILD_IMLIB2=ON} \
d241b2f
    %{?with_lua_cairo:      -DBUILD_LUA_CAIRO=ON} \
d241b2f
    %{?with_lua_imlib:      -DBUILD_LUA_IMLIB2=ON} \
d241b2f
    %{!?with_moc:           -DBUILD_MOC=OFF} \
d241b2f
    %{!?with_mpd:           -DBUILD_MPD=OFF} \
d241b2f
    %{!?with_ncurses:       -DBUILD_NCURSES=OFF} \
d241b2f
    %{?with_nvidia:         -DBUILD_NVIDIA=ON} \
65412da
    %{!?with_portmon:       -DBUILD_PORT_MONITORS=OFF} \
d241b2f
    %{?with_rss:            -DBUILD_RSS=ON} \
d241b2f
    %{?with_weather:        -DBUILD_WEATHER_METAR=ON} \
d241b2f
    %{?with_weather_xoap:   -DBUILD_WEATHER_XOAP=ON} \
d241b2f
    %{?with_wlan:           -DBUILD_WLAN=ON} \
1f19157
    %{?with_xdbe:           -DBUILD_XDBE=ON} \
695c2bf
    %{?!with_xinerama:      -DBUILD_XINERAMA=OFF} \
91d2bb5
    ;
407c61d
91d2bb5
%cmake_build
5d1f068
5d1f068
5d1f068
%install
91d2bb5
%cmake_install
d241b2f
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/conky
d241b2f
install -m644 -p data/conky.conf $RPM_BUILD_ROOT%{_sysconfdir}/conky
d241b2f
rm -rf $RPM_BUILD_ROOT%{_docdir}/conky-*
c8fa054
rm -f $RPM_BUILD_ROOT%{_libdir}/libtcp-portmon.a
23df203
rm -f $RPM_BUILD_ROOT/usr/lib/libconky_core.a
23df203
23df203
23df203
%check
23df203
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/conky.desktop
f58168b
5d1f068
5d1f068
%files
4b44af8
%doc AUTHORS COPYING README.md extras/*
645c827
%dir %{_sysconfdir}/conky
645c827
%config %{_sysconfdir}/conky/conky.conf
a3a25cc
%{_bindir}/conky
f58168b
%if %{with lua_cairo} || %{with lua_imlib}
f58168b
%{_libdir}/conky
f58168b
%endif
23df203
%{_datadir}/applications/conky.desktop
23df203
%{_datadir}/icons/hicolor/*/apps/conky*
a3a25cc
%{_mandir}/man1/conky.1*
5d1f068
5d1f068
5d1f068
%changelog
3bb88cf
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.2-3
3bb88cf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
3bb88cf
2a0c7a0
* Thu Dec 02 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 1.12.2-2
2a0c7a0
- Disable Wireless Extensions support (Fedora 36+)
2a0c7a0
  https://fedoraproject.org/wiki/Changes/RemoveWirelessExtensions
2a0c7a0
90ddb3b
* Tue Sep 21 2021 Miroslav Lichvar <mlichvar@redhat.com> - 1.12.2-1
90ddb3b
- update to 1.12.2
90ddb3b
7d7d3f6
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.1-2
7d7d3f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
7d7d3f6
12de4aa
* Mon Mar 08 2021 Miroslav Lichvar <mlichvar@redhat.com> - 1.12.1-1
12de4aa
- update to 1.12.1
12de4aa
c25edb2
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.6-2
c25edb2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c25edb2
3142246
* Tue Jul 28 2020 Miroslav Lichvar <mlichvar@redhat.com> - 1.11.6-1
3142246
- update to 1.11.6
3142246
- convert to new cmake rpm macros
3142246
4e10604
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.5-4
4e10604
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
4e10604
ad27326
* Mon Feb 03 2020 Miroslav Lichvar <mlichvar@redhat.com> - 1.11.5-3
ad27326
- enable cairo and imlib modules again (#1768166)
ad27326
a9f0bee
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.5-2
a9f0bee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a9f0bee
fc848b9
* Thu Aug 22 2019 Miroslav Lichvar <mlichvar@redhat.com> - 1.11.5-1
1d45663
- update to 1.11.5
fc848b9
- disable cairo and imlib modules to build without tolua++
1d45663
517f0d1
* Tue Jul 30 2019 Miroslav Lichvar <mlichvar@redhat.com> - 1.11.4-1
517f0d1
- update to 1.11.4
517f0d1
0783c3f
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.3-2
0783c3f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
0783c3f
17e9ce9
* Thu Apr 11 2019 Miroslav Lichvar <mlichvar@redhat.com> - 1.11.3-1
17e9ce9
- update to 1.11.3
17e9ce9
6eeaa1f
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.8-3
6eeaa1f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6eeaa1f
86af662
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.8-2
86af662
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
86af662
3d6a7ff
* Wed May 09 2018 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.8-1
3d6a7ff
- update to 1.10.8
3d6a7ff
f125129
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.7-2
f125129
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f125129
fb951db
* Mon Jan 22 2018 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.7-1
fb951db
- update to 1.10.7
fb951db
9c5d19f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.6-3
9c5d19f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
9c5d19f
01d3b45
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.6-2
01d3b45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
01d3b45
814a7ef
* Mon Feb 20 2017 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.6-1
814a7ef
- update to 1.10.6
814a7ef
- fix building with new gcc (#1423306)
814a7ef
ff23e43
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.4-2
ff23e43
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ff23e43
ec516bf
* Thu Aug 18 2016 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.4-1
ec516bf
- update to 1.10.4
ec516bf
a270087
* Tue May 03 2016 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.1-5.20160413git06f87b
a270087
- update to 1.10.1-20160413git06f87b
a270087
- enable port monitor (#1320739)
a270087
d9866cb
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-4.20160110gitb38ab1
d9866cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d9866cb
6c53dff
* Mon Feb 01 2016 Tim Niemueller <tim@niemueller.de> - 1.10.1-3.20160110gitb38ab1-3
6c53dff
- rebuild for updated tolua++
6c53dff
b5f4b5c
* Mon Jan 11 2016 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.1-2.20160110gitb38ab1
b5f4b5c
- update to 1.10.1-20160110gitb38ab1
b5f4b5c
9fb22e3
* Fri Dec 04 2015 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.1-1.20151201git1abd25
9fb22e3
- update to 1.10.1-20151201git1abd25
9fb22e3
- enable double-buffering support (#1284232)
9fb22e3
30eaf8c
* Tue Nov 03 2015 Miroslav Lichvar <mlichvar@redhat.com> - 1.10.0-1.20150824git341495
30eaf8c
- update to 1.10.0-20150824git341495
30eaf8c
- don't package manual in html
30eaf8c
1c3d6c1
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-14.20141003git30d09e
1c3d6c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1c3d6c1
41f4524
* Tue Dec 16 2014 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-13.20141003git30d09e
41f4524
- update to 20141003git30d09e
41f4524
- build with lua-5.2 for new tolua++
41f4524
7e94cd4
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-12.20140617gitab826d
7e94cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7e94cd4
b77c9a6
* Wed Jul 09 2014 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-11.20140617gitab826d
b77c9a6
- build with lua-5.1 (#1117120)
b77c9a6
dfc45e4
* Mon Jun 23 2014 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-10.20140617gitab826d
dfc45e4
- update to 20140617gitab826d
dfc45e4
7c2ab43
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-9.20131027git11a13d
7c2ab43
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7c2ab43
8d48a76
* Thu Apr 24 2014 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-8.20131027git11a13d
8d48a76
- disable audacious support (#1090655)
8d48a76
bee3581
* Tue Oct 29 2013 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-7.20131027git11a13d
bee3581
- update to 20131027git11a13d
bee3581
- enable weather support (#1024089)
bee3581
2c93ee0
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-6.20121101gitbfaa84
2c93ee0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2c93ee0
25fca19
* Tue May 14 2013 Tom Callaway <spot@fedoraproject.org> - 1.9.0-5.20121101gitbfaa84
25fca19
- rebuild for lua 5.2
25fca19
2e583c3
* Tue Apr 09 2013 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-4.20121101gitbfaa84
2e583c3
- update to 20121101gitbfaa84
2e583c3
- remove obsolete macros
2e583c3
f3ab89b
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-3
f3ab89b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f3ab89b
7db23ee
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-2
7db23ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7db23ee
f4853f6
* Mon May 07 2012 Miroslav Lichvar <mlichvar@redhat.com> - 1.9.0-1
f4853f6
- update to 1.9.0
f4853f6
878e888
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-5
878e888
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
878e888
1a6c97e
* Sat Dec 24 2011 Michael Schwendt <mschwendt@fedoraproject.org> - 1.8.1-4
1a6c97e
- Rebuild as needed for 1.8.1-3 and latest Audacious library deps.
1a6c97e
- Fix rebuild failure on Rawhide (no <curl/types.h>).
1a6c97e
597fca1
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.8.1-3
597fca1
- Rebuild for new libpng
597fca1
a03b829
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
a03b829
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a03b829
41cc446
* Wed Oct 06 2010 Miroslav Lichvar <mlichvar@redhat.com> - 1.8.1-1
41cc446
- update to 1.8.1
41cc446
407c61d
* Wed Apr 21 2010 Miroslav Lichvar <mlichvar@redhat.com> - 1.8.0-4
407c61d
- remove rpath
407c61d
2447470
* Wed Apr 14 2010 Miroslav Lichvar <mlichvar@redhat.com> - 1.8.0-3
2447470
- enable imlib support (#581986)
2447470
2cc52d0
* Thu Apr 01 2010 Miroslav Lichvar <mlichvar@redhat.com> - 1.8.0-2
d0142f7
- update to 1.8.0
d0142f7
ce53b94
* Mon Feb 15 2010 Miroslav Lichvar <mlichvar@redhat.com> - 1.7.2-2
ce53b94
- fix building with new audacious (#556317)
ce53b94
f58168b
* Tue Aug 25 2009 Miroslav Lichvar <mlichvar@redhat.com> - 1.7.2-1
f58168b
- Update to 1.7.2
f58168b
0c08a70
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1.1-3
0c08a70
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0c08a70
fcb1d92
* Mon Jul 20 2009 Miroslav Lichvar <mlichvar@redhat.com> - 1.7.1.1-2
fcb1d92
- Rebuild for new audacious
fcb1d92
- Buildrequire libxml2-devel
fcb1d92
6c4275e
* Wed Jun 17 2009 Miroslav Lichvar <mlichvar@redhat.com> - 1.7.1.1-1
6c4275e
- Update to 1.7.1.1
6c4275e
df1c301
* Mon May 11 2009 Miroslav Lichvar <mlichvar@redhat.com> - 1.7.0-1
df1c301
- Update to 1.7.0
df1c301
9d80ce9
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-2
9d80ce9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9d80ce9
d1d847c
* Tue Aug 26 2008 Miroslav Lichvar <mlichvar@redhat.com> - 1.6.1-1
896db25
- Update to 1.6.1
d1d847c
- Fix buffer overflow when reading interface addresses
896db25
cbf92f3
* Tue Jul 22 2008 Miroslav Lichvar <mlichvar@redhat.com> - 1.6.0-1
cbf92f3
- Update to 1.6.0
cbf92f3
- Fix freq_dyn on x86_64
cbf92f3
947b6bc
* Tue Apr 01 2008 Miroslav Lichvar <mlichvar@redhat.com> - 1.5.1-1
947b6bc
- Update to 1.5.1
947b6bc
f6188cd
* Sun Mar 23 2008 Miroslav Lichvar <mlichvar@redhat.com> - 1.5.0-1
f6188cd
- Update to 1.5.0
f6188cd
- Convert doc files to UTF-8
f6188cd
794385b
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.9-2
794385b
- Autorebuild for GCC 4.3
794385b
645c827
* Tue Nov 27 2007 Miroslav Lichvar <mlichvar@redhat.com> - 1.4.9-1
645c827
- Update to 1.4.9
60c1382
- Enable support for Audacious 1.4.0
645c827
2f7e075
* Sun Oct 21 2007 Miroslav Lichvar <mlichvar@redhat.com> - 1.4.8-1
2f7e075
- Update to 1.4.8
2f7e075
- Enable mpd, rss and wireless support
2f7e075
- Update license tag
2f7e075
3cf0c3a
* Wed Apr 18 2007 Michael Rice <errr[AT]errr-online.com> - 1.4.5-4
3cf0c3a
- Rebuild to match audacious lib in fc6 bug: 236989
3cf0c3a
919eec4
* Mon Apr 09 2007 Michael Rice <errr[AT]errr-online.com> - 1.4.5-3
919eec4
- Rebuild for devel
919eec4
5d1f068
* Thu Dec 14 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.5-2
5d1f068
- Ship NEWS
5d1f068
- Add patch for license of timed_thread and NEWS
5d1f068
5d1f068
* Tue Dec 12 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.5-1
5d1f068
- version bump
5d1f068
- change group
5d1f068
 
5d1f068
* Wed Dec 06 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.4-3
5d1f068
- rebuild for new audacious lib version
5d1f068
5d1f068
* Thu Nov 30 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.4-2
5d1f068
- Move nano and vim files into docs
5d1f068
- remove unneeded BR's
5d1f068
5d1f068
* Tue Nov 21 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.4-1
5d1f068
- Version bump
5d1f068
- Add vim and nano syntax files to package
5d1f068
5d1f068
* Thu Oct 05 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.3-1
5d1f068
- Version bump
5d1f068
- Remove Install file from docs
5d1f068
5d1f068
* Mon Oct 02 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.2-4
5d1f068
- moved to configure macro from ./configure
5d1f068
- clean up changelog and make more informative entrys
5d1f068
- Fixed sumary in spec file
5d1f068
- remove NEWS file since it was empty
5d1f068
- remove xmms support due to possible security issue
5d1f068
- remove bmp support due to possible security issue
5d1f068
- add missing BR for libXext-devel and remove unneeded libX11-devel  
5d1f068
5d1f068
* Thu Sep 28 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.2-3
5d1f068
- use the GPL as licence since the whole package is GPL
5d1f068
5d1f068
* Thu Sep 28 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.2-2
5d1f068
- remove unneeded deps
5d1f068
5d1f068
* Tue Sep 26 2006 Michael Rice <errr[AT]errr-online.com> - 1.4.2-1
5d1f068
- Initial RPM release