a397451
Name:           transmission
64a6041
Version:        2.04
f2c8dd5
Release:        2%{?dist}
a397451
Summary:        A lightweight GTK+ BitTorrent client
a397451
a397451
Group:          Applications/Internet
96e85a1
# See COPYING. This licensing situation is... special.
96e85a1
License:        MIT and GPLv2
fce5d9a
URL:            http://www.transmissionbt.com/
9c882a6
Source0:        http://download.m0k.org/transmission/files/transmission-%{version}.tar.xz
15254cc
# This is intended to be merged by upstream post 1.80 release
e566cc8
Source1:        qtr.desktop
15254cc
# init script. Upstream doesn't want it because it is distro specific
15254cc
Source2:        transmission-daemon-init
6e69fe3
# Example conf file
6e69fe3
Source3:        transmission-daemon-sysconfig
afde5c9
BuildRequires:  openssl-devel >= 0.9.4
c1c64a1
BuildRequires:  glib2-devel >= 2.15.5
a397451
BuildRequires:  gtk2-devel >= 2.6.0
7651f14
BuildRequires:  libnotify-devel >= 0.4.3
12ca763
BuildRequires:  libcanberra-devel
74c1f85
BuildRequires:  libcurl-devel >= 7.16.3
e5ebd3b
BuildRequires:  dbus-glib-devel >= 0.70
1734e3e
BuildRequires:  libevent-devel >= 1.4.5
a397451
BuildRequires:  desktop-file-utils
a397451
BuildRequires:  gettext intltool
650c75b
BuildRequires:  GConf2-devel
f2421ae
BuildRequires:  qt4-devel
e566cc8
# this modification applies to the Qt qtr.pro file
0c46c33
Patch1:         fix-optflags.patch
f2c8dd5
Patch2:         transmission-3539.patch
e566cc8
Requires: transmission-cli
e566cc8
Requires: transmission-gtk
a397451
%description
a397451
Transmission is a free, lightweight BitTorrent client. It features a
a397451
simple, intuitive interface on top on an efficient, cross-platform
a397451
back-end.
a397451
e566cc8
%package common
e566cc8
Summary:       Transmission common files
15254cc
Group:         Applications/Internet
e566cc8
Conflicts:     transmission < 1.80-0.3.b4
e566cc8
%description common
15254cc
Common files for Transmission BitTorrent client sub-packages. It includes 
15254cc
the web user interface, icons and transmission-remote utility.
e566cc8
e566cc8
%package cli
e566cc8
Summary:       Transmission command line implementation
15254cc
Group:         Applications/Internet
e566cc8
Requires:      transmission-common
e566cc8
Provides:      transmission = %{version}-%{release}
e566cc8
%description cli
15254cc
Command line version of Transmission BitTorrent client.
e566cc8
e566cc8
%package daemon
e566cc8
Summary:       Transmission daemon
15254cc
Group:         Applications/Internet
e566cc8
Requires:      transmission-common
15254cc
Requires(pre): shadow-utils
15254cc
Requires(post): chkconfig
15254cc
Requires(preun): chkconfig
15254cc
Requires(preun): initscripts
15254cc
Requires(postun): initscripts
e566cc8
Provides:      transmission = %{version}-%{release}
e566cc8
%description daemon
15254cc
Transmission BitTorrent client daemon.
e566cc8
e566cc8
%package gtk
e566cc8
Summary:       Transmission GTK interface
15254cc
Group:         Applications/Internet
e566cc8
Requires:      transmission-common
e566cc8
Obsoletes:     transmission <= 1.80-0.3.b4
e566cc8
Provides:      transmission = %{version}-%{release}
e566cc8
e566cc8
%description gtk
15254cc
GTK graphical interface of Transmission BitTorrent client.
e566cc8
e566cc8
%package qt
e566cc8
Summary:       Transmission Qt interface
15254cc
Group:         Applications/Internet
e566cc8
Requires:      transmission-common
f2421ae
%{?_qt4_version:Requires: qt4 >= %{_qt4_version}}
e566cc8
%description qt
15254cc
Qt graphical interface of Transmission BitTorrent client.
15254cc
15254cc
%pre daemon
15254cc
getent group transmission >/dev/null || groupadd -r transmission
15254cc
getent passwd transmission >/dev/null || \
9c882a6
useradd -r -g transmission -d /var/lib/transmission -s /sbin/nologin \
9c882a6
        -c "transmission daemon account" transmission
15254cc
exit 0
a397451
a397451
%prep
9c882a6
%setup -q 
e566cc8
%patch1 -p1
f2c8dd5
%patch2 -p1
a397451
a397451
%build
e566cc8
%configure --disable-static --with-gtk --without-wx --enable-libcanberra --enable-libnotify --enable-daemon
72b3b46
make %{?_smp_mflags}
a397451
e566cc8
pushd qt
e566cc8
qmake-qt4 qtr.pro
15254cc
make %{?_smp_mflags}
e566cc8
popd
e566cc8
a397451
a397451
%install
15254cc
mkdir -p %{buildroot}%{_initddir}
6e69fe3
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
6e69fe3
15254cc
install -m755 %{SOURCE2} %{buildroot}%{_initddir}/transmission-daemon
6e69fe3
install -m644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/transmission-daemon
6e69fe3
15254cc
mkdir -p %{buildroot}/var/lib/transmission
15254cc
e566cc8
make install DESTDIR=%{buildroot}
a397451
e566cc8
make install INSTALL_ROOT=%{buildroot}%{_prefix} -C qt
a397451
e566cc8
%find_lang %{name}
e566cc8
e566cc8
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
e566cc8
desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1}
a397451
a397451
d4bcdf0
%post common
d4bcdf0
touch --no-create %{_datadir}/icons/hicolor || :
d4bcdf0
15254cc
%post daemon
15254cc
/sbin/chkconfig --add transmission-daemon
15254cc
2af3056
%post gtk
d4bcdf0
update-desktop-database > /dev/null 2>&1 || :
15254cc
d4bcdf0
%post qt
a397451
update-desktop-database > /dev/null 2>&1 || :
a397451
15254cc
%preun daemon
15254cc
if [ $1 = 0 ] ; then
15254cc
    /sbin/service transmission-daemon stop >/dev/null 2>&1
15254cc
    /sbin/chkconfig --del transmission-daemon
15254cc
fi
15254cc
d4bcdf0
%postun common
d4bcdf0
if [ $1 -eq 0 ]; then
d4bcdf0
touch --no-create %{_datadir}/icons/hicolor || :
d4bcdf0
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
d4bcdf0
fi
d4bcdf0
15254cc
%postun daemon
15254cc
if [ "$1" -ge "1" ] ; then
15254cc
    /sbin/service transmission-daemon condrestart >/dev/null 2>&1 || :
15254cc
fi
a397451
2af3056
%postun gtk
a397451
update-desktop-database > /dev/null 2>&1 || :
a397451
d4bcdf0
%postun qt
d4bcdf0
update-desktop-database > /dev/null 2>&1 || :
d4bcdf0
d4bcdf0
%posttrans common
d4bcdf0
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
d4bcdf0
d4bcdf0
e566cc8
%files 
a397451
e566cc8
%files common 
a397451
%defattr(-, root, root, -)
3a0fc4f
%doc AUTHORS COPYING NEWS README
e566cc8
%{_bindir}/transmission-remote
e566cc8
%{_datadir}/transmission/web/
a397451
%{_datadir}/pixmaps/*
e50b81c
%{_datadir}/icons/hicolor/*/apps/transmission.*
9331816
%doc %{_mandir}/man1/transmission-remote*
e566cc8
e566cc8
%files cli 
e566cc8
%defattr(-, root, root, -)
e566cc8
%{_bindir}/transmissioncli
e566cc8
%doc %{_mandir}/man1/transmissioncli*
e566cc8
e566cc8
%files daemon
e566cc8
%defattr(-, root, root, -)
e566cc8
%{_bindir}/transmission-daemon
15254cc
%{_initddir}/transmission-daemon
69979cf
%config(noreplace) %{_sysconfdir}/sysconfig/transmission-daemon
15254cc
%attr(-,transmission, transmission)/var/lib/transmission/
9331816
%doc %{_mandir}/man1/transmission-daemon*
e566cc8
e566cc8
%files gtk -f %{name}.lang
e566cc8
%defattr(-, root, root, -)
e566cc8
%{_bindir}/transmission
e566cc8
%{_datadir}/applications/transmission.desktop
e566cc8
%doc %{_mandir}/man1/transmission.*
e566cc8
e566cc8
%files qt
e566cc8
%defattr(-, root, root, -)
e566cc8
%{_bindir}/qtr
e566cc8
%{_datadir}/applications/qtr.desktop
a397451
a397451
%changelog
f2c8dd5
* Mon Sep 20 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.04-2
f2c8dd5
- Added patch to fix https://trac.transmissionbt.com/ticket/3539
f2c8dd5
64a6041
* Mon Aug 09 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.04-1
64a6041
- Updated to latest release
64a6041
- bug 622239
64a6041
f289af2
* Wed Jul 21 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.03-1
f289af2
- updated to latest release version
f289af2
- bug 616745
f289af2
afcf616
* Sun Jun 27 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.01-2
afcf616
- corrected build failure
afcf616
ebc9b8e
* Sun Jun 27 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.01-1
ebc9b8e
- https://trac.transmissionbt.com/wiki/Changes 
ebc9b8e
0c46c33
* Thu Jun 17 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 2.00-1
0c46c33
- https://trac.transmissionbt.com/wiki/Changes?version=57
0c46c33
- Drop the clean section as it is redundant now
0c46c33
a5122de
* Fri Mar 12 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.92-1
a5122de
- Some bug fixes
a5122de
- http://trac.transmissionbt.com/query?groupdesc=1&group=component&milestone=1.92&order=severity
a5122de
69979cf
* Mon Mar 07 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.91-3
69979cf
- Don't lose user configuration with updates 
69979cf
- Fixes rhbz#571044
69979cf
d4bcdf0
* Wed Feb 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.91-2
d4bcdf0
- -common: move icon scriptlets here (where the icons are), update/optimize 
d4bcdf0
- -qt : add mime scriptlet
d4bcdf0
92d166a
* Mon Feb 22 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.91-1
92d166a
- http://trac.transmissionbt.com/wiki/Changes#version-1.91
92d166a
f2421ae
* Sun Feb 21 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.90-2
f2421ae
- BR: qt4-devel
f2421ae
- -qt: Requires: qt4 >= %%_qt4_version
f2421ae
6f05493
* Wed Feb 17 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.90-1
6f05493
- http://trac.transmissionbt.com/browser/trunk/NEWS#L1
6f05493
- Fix initscript to use the config file properly
6f05493
6e69fe3
* Wed Feb 10 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.83-3
6e69fe3
- rhbz #563090 - fixed config for daemon initscript
6e69fe3
e4bdbe2
* Wed Feb 3 2010 Ankur Sinha <ankursinha@fedoraproject.org> - 1.83-2
e4bdbe2
- Bugfix - #560180 - changed init script
e4bdbe2
3fea160
* Sun Jan 31 2010 Ankur Sinha <ankursinha@fedoraproject.org> - 1.83-1
3fea160
- New Release
3fea160
- Fix 1.80 announce error that caused uploads and downloads to periodically freeze
3fea160
- Fix 1.80 announce timeout error that caused "no response from tracker" message
3fea160
- Fix 1.80 "file not found" error message that stopped some torrents
3fea160
- Fix 1.82 crash when adding new torrents via their ftp URL
3fea160
- Fix 1.80 crash when receiving invalid request messages from peers
3fea160
- Fix 1.82 error when updating the blocklist
3fea160
- http://trac.transmissionbt.com/wiki/Changes#version-1.83
3fea160
2af3056
* Mon Jan 25 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.82-2
2af3056
- Fix icon cache 
e566cc8
9afb188
* Sun Jan 24 2010 Ankur Sinha <ankursinha@fedoraproject.org> - 1.82-1
9afb188
- Bugfix
9afb188
- http://trac.transmissionbt.com/wiki/Changes#version-1.82
9afb188
9c882a6
* Thu Jan 21 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-1
9c882a6
- Many major new features including magnet link support, trackerless torrents
9c882a6
- http://trac.transmissionbt.com/wiki/Changes#version-1.80
9c882a6
15254cc
* Wed Jan 20 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-0.6.b5
15254cc
- Add a initscript for transmission daemon. Fixes rhbz#556228
15254cc
- Description changes, add group for sub-packages and fix make
15254cc
0b1a48c
* Thu Jan 14 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-0.5.b5
0b1a48c
- Bug fixes
0b1a48c
- http://trac.transmissionbt.com/wiki/Changes#version-1.80b5
0b1a48c
e566cc8
* Sat Jan 09 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-0.4.b4
e566cc8
- Build the qt interface as a sub package
e566cc8
- Build daemon as a separate sub package
e566cc8
- Translations are for only the gtk sub package
e566cc8
- Fix obsoletes and add conflicts
e566cc8
e566cc8
* Thu Jan 07 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 1.80-0.3.b4
e566cc8
- Split package to sub packages
e566cc8
650c75b
* Tue Jan 05 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-0.2.b4
650c75b
- Add BR GConf2-devel
650c75b
7af3e75
* Tue Jan 05 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-0.1.b4
7af3e75
- 1.80 Beta 4
7af3e75
- http://trac.transmissionbt.com/wiki/Changes#version-1.80b4
12ca763
74c1f85
* Thu Dec 17 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.80-0.1.b3
12ca763
- 1.80 Beta 3
12ca763
- Enable sounds via libcanberra
12ca763
- http://trac.transmissionbt.com/wiki/Changes#version-1.80b3
12ca763
9d1d29c
* Sun Oct 25 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.76-1
9d1d29c
- http://trac.transmissionbt.com/wiki/Changes#version-1.76
9d1d29c
b443a80
* Tue Sep 15 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.75-1
b443a80
- new upstream release
b443a80
- Fixes seg fault, rhbz#522783
b443a80
a183310
* Thu Aug 27 2009 Tomas Mraz <tmraz@redhat.com> - 1.74-3
a183310
- rebuilt with new openssl
a183310
9740d90
* Tue Aug 25 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.74-2
9740d90
- Add source
9740d90
9740d90
* Tue Aug 25 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.74-1
3338e1a
- Bug fix release
3338e1a
- http://trac.transmissionbt.com/wiki/Changes
3338e1a
- disable static linking explicitly
3338e1a
f1f6839
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.73-2
f1f6839
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f1f6839
e3f3d5f
* Fri Jul 24 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.73-1
e3f3d5f
- new upstream
e3f3d5f
- switch to using LZMA source
e3f3d5f
96214de
* Sun Jun 21 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.72-1
96214de
- Update to new upstream version
96214de
- Drop compiler options patch since upstream has fixed this issue
96214de
ab45fb4
* Fri Jun 12 2009 Rahul Sundaram <sundaram@fedoraproject.org> - 1.71-1
ab45fb4
- Update to upstream version 1.71
ab45fb4
- Update compiler options patch to match new upstream release
ab45fb4
- Drop patch for not using bundled libevent. Upstream now has been fixed to use the system copy whenever possible
ab45fb4
- Don't use vendor tag for desktop file. It is not recommended anymore
ab45fb4
- Follow https://fedoraproject.org/wiki/Packaging/Guidelines#All_patches_should_have_an_upstream_bug_link_or_comment
ab45fb4
894879b
* Thu May 28 2009 Denis Leroy <denis@poolshark.org> - 1.61-1
894879b
- Update to upstream version 1.61
894879b
- fallocate patch upstreamed
894879b
- Patches updated for 1.61
894879b
0b6b467
* Fri May 22 2009 Denis Leroy <denis@poolshark.org> - 1.53-1
0b6b467
- Update to upstream 1.53
0b6b467
- XDG Download patch upstreamed
0b6b467
- Security fix CVE-2009-1757 (#500278)
0b6b467
f6b91e5
* Sat Mar 28 2009 Lubomir Rintel <lkundrak@v3.sk> - 1.51-2
f6b91e5
- Use XDG Download directory (#490950)
f6b91e5
fa88b41
* Sat Feb 28 2009 Denis Leroy <denis@poolshark.org> - 1.51-1
fa88b41
- Update to upstream 1.51
fa88b41
- Added icon cache scriplets (#487824)
fa88b41
fb6ee56
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.50-2
fb6ee56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fb6ee56
7651f14
* Fri Feb 20 2009 Denis Leroy <denis@poolshark.org> - 1.50-1
7651f14
- Update to upstream 1.50
7651f14
- Ported patches to 1.50, enforce compile flags
7651f14
5d427e7
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1.42-2
5d427e7
- rebuild with new openssl
5d427e7
51522b0
* Wed Dec 31 2008 Brian Pepple <bpepple@fedoraproject.org> - 1.42-1
51522b0
- Update to 1.42.
51522b0
- Update event patch to 1.42.
51522b0
bce21f5
* Fri Nov 21 2008 Denis Leroy <denis@poolshark.org> - 1.40-1
bce21f5
- Update to upstream 1.40
bce21f5
- Ported patches to 1.40
bce21f5
1734e3e
* Sun Sep 28 2008 Denis Leroy <denis@poolshark.org> - 1.34-1
1734e3e
- Update to upstream 1.34
1734e3e
- Added patch to link with distributed libevent library
1734e3e
96e85a1
* Mon Sep  8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.33-2
96e85a1
- fix license tag
96e85a1
3a0fc4f
* Sun Aug 24 2008 Denis Leroy <denis@poolshark.org> - 1.33-1
3a0fc4f
- Update to upstream 1.33
3a0fc4f
- Now dual-licensed
3a0fc4f
- Gnusource and download dir patches upstreamed
3a0fc4f
a22ecc4
* Wed Jun 18 2008 Denis Leroy <denis@poolshark.org> - 1.22-1
a22ecc4
- Update to upstream 1.22
a22ecc4
d2f12e7
* Sat May 31 2008 Denis Leroy <denis@poolshark.org> - 1.21-1
d2f12e7
- Update to upstream 1.21
d2f12e7
e5ebd3b
* Tue May 13 2008 Denis Leroy <denis@poolshark.org> - 1.20-1
e5ebd3b
- Update to upstream 1.20
e5ebd3b
- Browser opening patch upstreamed
e5ebd3b
- New dependencies (dbus, curl)
e5ebd3b
412483c
* Tue May  6 2008 Denis Leroy <denis@poolshark.org> - 1.11-2
412483c
- Patch to fix opening issue from browser (#431769)
412483c
- Patch to fix hardcoded optimize compile flags
412483c
c1c64a1
* Fri May  2 2008 Denis Leroy <denis@poolshark.org> - 1.11-1
c1c64a1
- Update to upstream 1.11, many bug fixes
c1c64a1
88bcce6
* Fri Mar 14 2008 Denis Leroy <denis@poolshark.org> - 1.06-1
88bcce6
- Update to upstream 1.06, bug fixes, memory leak fix
88bcce6
e50b81c
* Sun Feb 10 2008 Denis Leroy <denis@poolshark.org> - 1.05-1
e50b81c
- Update to upstream 1.05, with a bunch of bug fixes
7e8ec95
5b7772a
* Thu Jan 31 2008 Denis Leroy <denis@poolshark.org> - 1.03-1
5b7772a
- Update to upstream 1.03
5b7772a
f5a8b86
* Wed Jan 23 2008 Denis Leroy <denis@poolshark.org> - 1.02-1
f5a8b86
- Update to upstream 1.02, bugfix release
f5a8b86
fce5d9a
* Sat Jan  5 2008 Denis Leroy <denis@poolshark.org> - 1.00-1
fce5d9a
- Update to upstream 1.00. New project URL
fce5d9a
ef04c0d
* Wed Dec  5 2007 Denis Leroy <denis@poolshark.org> - 0.95-1
ef04c0d
- Update to upstream 0.95
ef04c0d
- Rebuild with new openssl
ef04c0d
47d35a1
* Thu Nov 29 2007 Denis Leroy <denis@poolshark.org> - 0.94-1
47d35a1
- Update to upstream 0.94
47d35a1
afde5c9
* Tue Nov  6 2007 Denis Leroy <denis@poolshark.org> - 0.92-1
afde5c9
- Update to upstream 0.92, important bug fixes
afde5c9
72b3b46
* Sat Nov  3 2007 Denis Leroy <denis@poolshark.org> - 0.91-1
72b3b46
- Update to upstream 0.91
72b3b46
- Removal of -gtk suffix
72b3b46
- Obsoleting manpath patch
72b3b46
677253a
* Wed Sep 12 2007 Denis Leroy <denis@poolshark.org> - 0.82-1
677253a
- Update to upstream 0.82, many bug fixes
b7f9f91
- Added patch to support default user download directory (Bastien Nocera)
677253a
51b7fd3
* Sat Aug 25 2007 - Bastien Nocera <bnocera@redhat.com> - 0.81-1
51b7fd3
- Update to upstream 0.81
f7de345
- Add work-around for busted tarball without a sub-directory
51b7fd3
4ac6e77
* Thu Aug 16 2007 Denis Leroy <denis@poolshark.org> - 0.80-1
4ac6e77
- Update to upstream 0.80
4ac6e77
8744f1a
* Wed May  2 2007 Denis Leroy <denis@poolshark.org> - 0.72-1
8744f1a
- Update to 0.72
8744f1a
- Added libevent BR
8744f1a
59c7aaa
* Wed Apr 25 2007 Denis Leroy <denis@poolshark.org> - 0.71-1
59c7aaa
- Update to 0.71
59c7aaa
- Removed custom desktop file
59c7aaa
- Added patch to fix manpath
59c7aaa
22ebcb1
* Thu Sep 28 2006 Denis Leroy <denis@poolshark.org> - 0.6.1-3
22ebcb1
- Added project icon
22ebcb1
- Honor cc variable
22ebcb1
a397451
* Mon Sep 25 2006 Denis Leroy <denis@poolshark.org> - 0.6.1-2
a397451
- Removed ldconfig Requires
a397451
a397451
* Wed Sep 13 2006 Denis Leroy <denis@poolshark.org> - 0.6.1-1
a397451
- First version
69979cf
`