cvsdist a5a3d38
# Enable this for Fedora Core 2 builds and newer.  For Fedora Core 1,
cvsdist a5a3d38
# Red Hat Linux 9, and Red Hat Enterprise Linux 3, set to 0
cvsdist a5a3d38
%define build_fc2		1
cvsdist a5a3d38
cvsdist 2041262
# Nobody likely uses this so we disable it
cvsdist a916822
%define with_tclplugin		0
cvsdist 2041262
cvsdist 2041262
Summary:   A popular and easy to use graphical IRC (chat) client
cvsdist 2041262
Name:      xchat
e8f1ab7
Version:   2.4.5
e8f1ab7
Release:   1
cvsdist 2041262
Epoch:     1
cvsdist 2041262
Group:     Applications/Internet
cvsdist 2041262
License:   GPL
cvsdist 2041262
URL:       http://www.xchat.org
cvsdist 2041262
Source:    http://www.xchat.org/files/source/2.0/xchat-%{version}.tar.bz2
cvsdist daf3b45
Buildroot: %{_tmppath}/%{name}-%{version}-root
cvsdist 59a3bb0
# Patches 0-9 reserved for official xchat.org patches
e8f1ab7
Patch1:  xc245-fix-te-notify.diff
e8f1ab7
697bea3
Patch10: xchat-2.4.4-redhat-desktop.patch
cvsdist 2041262
Patch12: xchat-1.8.7-use-sysconf-to-detect-cpus.patch
cvsdist 2041262
Patch19: xchat-2.0.2-freenode.patch
cvsdist 0598012
Patch22: xchat-2.0.9-simplify-to-use-gnome-open-for-default-webbrowser.patch
cvsdist 0598012
Patch23: xchat-2.0.9-simplify-to-use-htmlview-for-default-webbrowser.patch
9654c0c
Patch33: xchat-2.4.3-im_context_filter_keypress.patch
4f9ceb9
# filed as 1262423 in the xchat bug tracker
4f9ceb9
Patch34: xchat-2.4.4-unrealize.patch
cvsdist 2041262
e8f1ab7
cvsdist 2041262
BuildRequires: perl python-devel openssl-devel pkgconfig
cvsdist 2041262
# Added for bugzilla bug #91676 - ./configure indicates these versions or
cvsdist 2041262
# greater are required. 
cvsdist 2041262
BuildRequires: glib2-devel >= 2.0.3, gtk2-devel >= 2.0.3, bison >= 1.35
cvsdist 2041262
BuildRequires: gettext /bin/sed
154a432
# Ensure that a compatible libperl is installed
154a432
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
cvsdist 1535dd9
cvsdist 8d2f6d4
%description
cvsdist 0f561d6
X-Chat is an easy to use graphical IRC chat client for the X Window
cvsdist 0f561d6
System. 
cvsdist daf3b45
cvsdist 8d2f6d4
%prep
cvsdist daf3b45
%setup -q
e8f1ab7
%patch1 -p1 -b .fix-te-notify
cvsdist 8d2f6d4
cvsdist 59dc9b2
%patch10 -p1 -b .redhat-desktop-file
cvsdist 2041262
%patch12 -p0 -b .use-sysconf-to-detect-cpus
cvsdist 2041262
%patch19 -p0 -b .freenode
cvsdist a5a3d38
%if %{build_fc2}
cvsdist 0598012
%patch22 -p1 -b .simplify-to-use-gnome-open-for-default-webbrowser
cvsdist a5a3d38
%else
cvsdist 0598012
%patch23 -p1 -b .simplify-to-use-htmlview-for-default-webbrowser
cvsdist a5a3d38
%endif
9654c0c
%patch33 -p1 -b .im_context_filter_keypress
4f9ceb9
%patch34 -p1 -b .unrealize
cvsdist ccf4fe9
cvsdist 8d2f6d4
%build
cvsdist 0f561d6
# Remove CVS files from source dirs so they're not installed into doc dirs.
cvsdist 0f561d6
find . -name CVS -type d | xargs rm -rf
cvsdist 0f561d6
cvsdist 2041262
export CFLAGS="$RPM_OPT_FLAGS $(perl -MExtUtils::Embed -e ccopts)"
cvsdist b345688
export LDFLAGS=$(perl -MExtUtils::Embed -e ldopts)
cvsdist 2041262
cvsdist 0f561d6
if pkg-config openssl ; then
cvsdist 0f561d6
	export CFLAGS="$CFLAGS `pkg-config --cflags openssl`"
cvsdist 0f561d6
	export CPPFLAGS="$CPPFLAGS `pkg-config --cflags-only-I openssl`"
cvsdist 0f561d6
	export LDFLAGS="$LDFLAGS `pkg-config --libs-only-L openssl`"
cvsdist 0f561d6
fi
cvsdist a916822
cvsdist b345688
%configure --disable-panel \
cvsdist b345688
           --disable-textfe \
cvsdist b345688
           --enable-openssl \
cvsdist b345688
           --enable-python \
cvsdist 2041262
%if %{with_tclplugin}
cvsdist 2041262
	   --enable-tcl \
cvsdist 2041262
%else
cvsdist 2041262
	   --disable-tcl \
cvsdist 2041262
%endif	   
cvsdist b345688
           --enable-ipv6
cvsdist c297c6d
cvsdist 0f561d6
make %{?_smp_mflags}
cvsdist 8d2f6d4
cvsdist 8d2f6d4
%install
cvsdist 1cff4a7
rm -rf $RPM_BUILD_ROOT
cvsdist daf3b45
%makeinstall
cvsdist 2fe39b7
cvsdist 2041262
# Move plugins around
cvsdist 2041262
mkdir -p $RPM_BUILD_ROOT%{_libdir}/xchat/plugins
cvsdist 2041262
mv $RPM_BUILD_ROOT%{_libdir}/perl.so $RPM_BUILD_ROOT%{_libdir}/xchat/plugins/
cvsdist 2041262
mv $RPM_BUILD_ROOT%{_libdir}/python.so $RPM_BUILD_ROOT%{_libdir}/xchat/plugins/
cvsdist 2041262
%if %{with_tclplugin}
cvsdist 2041262
mv $RPM_BUILD_ROOT%{_libdir}/tcl.so $RPM_BUILD_ROOT%{_libdir}/xchat/plugins/
cvsdist 2041262
%else
cvsdist 2041262
rm -f $RPM_BUILD_ROOT%{_libdir}/tcl.so
cvsdist 2041262
%endif	   
cvsdist 3c059d4
cvsdist 2041262
# Remove unwanted stuff
cvsdist 2041262
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
cvsdist 2041262
#rm -f $RPM_BUILD_ROOT%{_datadir}/applications/xchat.desktop
cvsdist 2041262
#rm -f $RPM_BUILD_ROOT/etc/X11/applnk/Internet/xchat.desktop
cvsdist b345688
cvsdist daf3b45
%find_lang %name
cvsdist 8d2f6d4
cvsdist daf3b45
%files -f %{name}.lang
cvsdist 8d2f6d4
%defattr(-,root,root)
cvsdist 2041262
%doc README ChangeLog
cvsdist 5e24bc1
%{_bindir}/xchat
cvsdist 2041262
%{_libdir}/xchat/plugins/*.so
cvsdist 2041262
#%{_datadir}/applications/net-xchat.desktop
cvsdist 2041262
%{_datadir}/applications/xchat.desktop
cvsdist 5e24bc1
%{_datadir}/pixmaps/*
cvsdist 8d2f6d4
cvsdist 8d2f6d4
%clean
cvsdist 1cff4a7
rm -rf $RPM_BUILD_ROOT
cvsdist 8d2f6d4
cvsdist 8d2f6d4
%changelog
e8f1ab7
* Mon Sep 19 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.5-1
e8f1ab7
- X-Chat 2.4.5
e8f1ab7
4f9ceb9
* Wed Aug 17 2005 Matthias Clasen <mclasen@redhat.com> 1:2.4.4-3
4f9ceb9
- Fix a bug that could lead to occasional crashes
4f9ceb9
c47df5e
* Mon Aug 15 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.4-2
c47df5e
- Rebuild
c47df5e
697bea3
* Sun Jun 26 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.4-1
697bea3
- Update to xchat-2.4.4
697bea3
9654c0c
* Sun May 15 2005 Warren Togami <wtogami@redhat.com> 1:2.4.3-3
9654c0c
- Prevent interception of down arrow during Input Method (#144588 tagoh)
9654c0c
36d8816
* Thu Apr 14 2005 Warren Togami <wtogami@redhat.com> 1:2.4.3-2
36d8816
- fix plugins on lib64 (#113188 Ville Skytta)
36d8816
154a432
* Sun Apr 03 2005 Warren Togami <wtogami@redhat.com> 1:2.4.3-1
154a432
- 2.4.3, use perl MODULE_COMPAT
154a432
461bd3d
* Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.2-3
461bd3d
- Fix crash when right clicking users whose away msg is unknown.
461bd3d
d05cfd9
* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.2-2
d05cfd9
- Add user's away message to right click menu, if known
d05cfd9
8da2403
* Thu Mar 17 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.2-1
8da2403
- Update to 2.4.2
8da2403
3a00120
* Sat Mar  5 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.1-4
3a00120
- Rebuild against GCC 4.0
3a00120
cturner a0b6301
* Tue Jan 18 2005 Chip Turner <cturner@redhat.com> 1:2.4.1-3
cturner a0b6301
- rebuild for new perl
cturner a0b6301
881778e
* Tue Jan  4 2005 Christopher Aillon <caillon@redhat.com> 1:2.4.1-2
881778e
- Add Dan Reed's CTCP patch to support multiline messages (#136545)
881778e
8b860dd
* Tue Nov 23 2004 Christopher Aillon <caillon@redhat.com> 1:2.4.1-1
8b860dd
- Update to 2.4.1
8b860dd
dreed e546b47
* Mon Sep 20 2004 Daniel Reed <djr@redhat.com> 1:2.4.0-3
dreed e546b47
- #132967 Remove GenericName
dreed e546b47
cvsdist 59dc9b2
* Tue Aug 17 2004 Daniel Reed <djr@redhat.com> 1:2.4.0-2
cvsdist 59dc9b2
- #125846 Change xchat.desktop names to "IRC"
cvsdist 59dc9b2
cvsdist 59a3bb0
* Sun Aug 15 2004 Christopher Aillon <caillon@redhat.com> 1:2.4.0-1
cvsdist 59a3bb0
- Update to 2.4.0
cvsdist 59a3bb0
- Fix simplify-to-use-gnome-open and simplify-to-use-htmlview patches
cvsdist 59a3bb0
  to not conflict every time upstream modifies the urlhandler list.
cvsdist 59a3bb0
- Remove focus and tab completion patches (no longer needed)
cvsdist 59a3bb0
cvsdist 77a3dfd
* Mon Jul 26 2004 Christopher Aillon <caillon@redhat.com> 1:2.0.10-3
cvsdist 77a3dfd
- Update upstream patch to fix tab completion crash
cvsdist 77a3dfd
- Add upstream patch to fix focus crash on some window managers.
cvsdist 77a3dfd
cvsdist 77a3dfd
* Fri Jul  9 2004 Mike A. Harris <mharris@redhat.com> 1:2.0.10-2
cvsdist 77a3dfd
- Added upstream xc2010-fixtabcomp.diff patch to fix SEGV in tab completion
cvsdist 77a3dfd
cvsdist 77a3dfd
* Sat Jul 03 2004 Christopher Aillon <caillon@redhat.com> 1:2.0.10-1
cvsdist 77a3dfd
- Update to 2.0.10
cvsdist 77a3dfd
cvsdist 0598012
* Wed Jun 23 2004 Christopher Aillon <caillon@redhat.com> 1:2.0.9-1
cvsdist 0598012
- Update to 2.0.9
cvsdist 0598012
- Fixed the URL handler menu patches to apply.
cvsdist 0598012
cvsdist 13e0122
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 13e0122
- rebuilt
cvsdist 13e0122
cvsdist a5a3d38
* Tue Mar  9 2004 Mike A. Harris <mharris@redhat.com> 1:2.0.7-5
cvsdist a5a3d38
- Bump and rebuild for Fedora devel, to sync up with new perl
cvsdist 13e0122
- Remove require_autoconf conditional, and conditionalized autoconf BuildRequires
cvsdist a5a3d38
cvsdist a5a3d38
* Fri Mar  5 2004 Mike A. Harris <mharris@redhat.com> 1:2.0.7-4
cvsdist a5a3d38
- Added xchat-2.0.7-simplify-to-use-gnome-open-for-default-webbrowser.patch
cvsdist a5a3d38
  and xchat-2.0.7-simplify-to-use-htmlview-for-default-webbrowser.patch to
cvsdist a5a3d38
  simplify the default URL handler menu to point only to the default system
cvsdist a5a3d38
  web browser by using gnome-open on Fedora Core 2 and later, or htmlview
cvsdist a5a3d38
  on earlier OS releases.  This is added to improve user friendliness (#82331)
cvsdist a5a3d38
cvsdist a5a3d38
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist a5a3d38
- rebuilt
cvsdist a5a3d38
cvsdist a5a3d38
* Tue Feb 17 2004 Mike A. Harris <mharris@redhat.com> 1:2.0.7-1.FC1.0
cvsdist a5a3d38
- Rebuild xchat 2.0.7-3 as 2.0.7-1.FC1.0 for release as an enhancement erratum
cvsdist a5a3d38
  for Fedora Core 1.  Also fixes AMD64 64bit issues reported in bug (#114237)
cvsdist a5a3d38
cvsdist a5a3d38
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 1:2.0.7-3
cvsdist a5a3d38
- rebuilt
cvsdist a5a3d38
cvsdist a916822
* Mon Jan 26 2004 Jeremy Katz <katzj@redhat.com> 1:2.0.7-2
cvsdist a916822
- rebuild for new perl version
cvsdist a916822
cvsdist a5a3d38
* Sat Jan 10 2004 Mike A. Harris <mharris@redhat.com> 1:2.0.7-1
cvsdist a916822
- Updated to xchat 2.0.7
cvsdist a916822
- Removed already integrated patches, including:  xc204-fixperlui.diff,
cvsdist a916822
  xchat-2.0.4-screen-position-fix.patch, xchat-2.0.4-exec-shield-GNU-stack.patch
cvsdist a916822
- Added a new rpm macro require_autoconf, which is disabled (0) by default, as
cvsdist a916822
  it seems no longer necessary to run autoconf prior to ./configure, so we no
cvsdist a916822
  longer need to BuildRequire autoconf 2.54 either.
cvsdist a916822
cvsdist 2041262
* Fri Oct 24 2003 Mike A. Harris <mharris@redhat.com> 2.0.4-4
cvsdist 2041262
- Added xchat-2.0.4-exec-shield-GNU-stack.patch from Arjan, to allow xchat to
cvsdist 2041262
  be be protected by exec shield if the system has exec-shield enabled.
cvsdist 2041262
cvsdist 2041262
* Fri Sep 19 2003 Mike A. Harris <mharris@redhat.com> 2.0.4-3.EL
cvsdist 2041262
- Rebuilt 2.0.4-3 for Taroon as 2.0.4-3.EL
cvsdist 2041262
cvsdist 2041262
* Fri Sep 19 2003 Mike A. Harris <mharris@redhat.com> 2.0.4-3
cvsdist 2041262
- Added xchat-2.0.4-screen-position-fix.patch to fix problem where xchat
cvsdist 2041262
  doesn't remember it's screen location between invocations (#103896)
cvsdist 2041262
cvsdist 2041262
* Sat Aug 30 2003 Mike A. Harris <mharris@redhat.com> 2.0.4-2
cvsdist 2041262
- Updated xchat-2.0.4-redhat-desktop-file.patch
cvsdist 2041262
cvsdist 2041262
* Thu Aug 28 2003 Mike A. Harris <mharris@redhat.com> 2.0.4-1
cvsdist 2041262
- Updated to xchat 2.0.4
cvsdist 2041262
- Removed unneeded patches xc203-fixtint.diff, xc203-fix-cps.diff
cvsdist 2041262
- Added upstream patch xc204-fixperlui.diff
cvsdist 2041262
- Updated autoconf dependancy to version 2.54 and greater as xchat wont
cvsdist 2041262
  compile otherwise.  Meaning Red Hat Linux 9 or higher is needed.
cvsdist 2041262
cvsdist 2041262
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 2.0.3-4
cvsdist 2041262
- rebuild
cvsdist 2041262
cvsdist 2041262
* Mon Jul 14 2003 Chip Turner <cturner@redhat.com>
cvsdist 2041262
- rebuild for new perl 5.8.1
cvsdist 2041262
cvsdist 2041262
* Thu Jul 10 2003 Mike A. Harris <mharris@redhat.com> 2.0.3-2
cvsdist 2041262
- Added xc203-fix-cps.diff patch from upstream to fix cps calculation
cvsdist 2041262
- TCL plugin was getting built even though we don't want it, so now we pass
cvsdist 2041262
  --enable-tcl or --disable-tcl explicitly, depending on with_tclplugin macro
cvsdist 2041262
cvsdist 2041262
* Mon Jun 30 2003 Mike A. Harris <mharris@redhat.com> 2.0.3-1.EL
cvsdist 2041262
- Rebuilt 2.0.3-1 as 2.0.3-1.EL for Red Hat Enterprise Linux development
cvsdist 2041262
cvsdist 2041262
* Mon Jun 30 2003 Mike A. Harris <mharris@redhat.com> 2.0.3-1
cvsdist 2041262
- Updated to xchat 2.0.3
cvsdist 2041262
- Dropped old patches: xc202-fixdetach.diff, xc202-fixurlg.diff,
cvsdist 2041262
  xchat-2.0.2-lib64-cleanup-for-python.patch
cvsdist 2041262
- Added upstream patch: xc203-fixtint.diff
cvsdist 2041262
cvsdist 2041262
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 2041262
- rebuilt
cvsdist 2041262
cvsdist 2041262
* Thu May 29 2003 Mike A. Harris <mharris@redhat.com> 2.0.2-7
cvsdist 2041262
- Added back BuildRequires autoconf, and call autoconf prior to ./configure
cvsdist 2041262
  as it seems to make xchat build successfully.  Have not bothered to figure
cvsdist 2041262
  out why calling autoconf is needed.  Something for a rainy day.
cvsdist 2041262
cvsdist 2041262
* Thu May 29 2003 Mike A. Harris <mharris@redhat.com> 2.0.2-6
cvsdist 2041262
- Removed gnome-libs BuildRequires as it is bogus now
cvsdist 2041262
- Removed autoconf BuildRequires and usage, as it should be unneeded
cvsdist 2041262
- Added new BuildRequires on gettext, bison >= 1.35, glib2-devel >= 2.0.3,
cvsdist 2041262
  gtk2-devel >= 2.0.3, /bin/sed  (#91676 - Warren Togami)
cvsdist 2041262
- Removed dead patches: xchat-1.8.9-perlcrypt.patch, xchat-1.8.9-korean-fontset.patch
cvsdist 2041262
cvsdist 2041262
* Wed May 21 2003 Mike A. Harris <mharris@redhat.com> 2.0.2-5
cvsdist 2041262
- Removed xchat.desktop file, as it was earlier replacedwith a patch
cvsdist 2041262
- Converted xchat-2.0.2-redhat-desktop-file.patch to be UTF-8 clean now,
cvsdist 2041262
  instead of the various random legacy mix of encodings it was, updating
cvsdist 2041262
  the following: es, ko, uk, zh_TW
cvsdist 2041262
cvsdist 2041262
* Tue May 20 2003 Mike A. Harris <mharris@redhat.com> 2.0.2-4
cvsdist 2041262
- Replace explicit perl package name-epoch-version Requires added in 2.0.2-3
cvsdist 2041262
  with a more robust and generic solution of querying perl for the archlibexp
cvsdist 2041262
  dir during building, and requiring it instead
cvsdist 2041262
cvsdist 2041262
* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 2.0.2-3
cvsdist 2041262
- rebuild against new (old?) perl, add epoch to dependency
cvsdist 2041262
cvsdist 2041262
* Sat May 17 2003 Mike A. Harris <mharris@redhat.com> 2.0.2-1
cvsdist 2041262
- Updated to new xchat 2.0.2 based on GTK2
cvsdist 2041262
- Dropped unneeded patches xchat-1.8.1-konqueror.patch,
cvsdist 2041262
  xchat-1.8.4-fix-USE_GNOME.patch
cvsdist 2041262
- Updated xchat-2.0.2-freenode.patch to refer to Openprojects.net
cvsdist 2041262
- Removed doc/xchat.sgml doc/*.html scripts-python scripts-perl from %%doc
cvsdist 2041262
- Added xchat-2.0.2-redhat-desktop-file.patch to patch the supplied xchat
cvsdist 2041262
  desktop file, instead of replacing it and trying to stay in sync
cvsdist 2041262
- Added xchat-2.0.2-lib64-cleanup-for-python.patch which fixes build problems
cvsdist 2041262
  on lib64 archs, and replaces xchat-multilib.patch
cvsdist 2041262
- Added with_tclplugin macro and default it to disabled
cvsdist 2041262
cvsdist 2041262
* Mon Mar 17 2003 Mike A. Harris <mharris@redhat.com> 1.8.11-8
cvsdist 2041262
- Added xchat-1.8.11-nickall.patch which was written by Fabio Olive Leite,
cvsdist 2041262
  sent to me by Rik van Riel
cvsdist 49b96a4
cvsdist 0f561d6
* Wed Feb 19 2003 Bill Nottingham <notting@redhat.com> 1.8.11-7
cvsdist 0f561d6
- ship single desktop in %{_datadir}/applications, not /etc/X11/applnk
cvsdist 0f561d6
cvsdist 0f561d6
* Fri Jan 31 2003 Mike A. Harris <mharris@redhat.com> 1.8.11-6
cvsdist 0f561d6
- Added xchat-1.8.11-freenode.patch to rename all openprojects.net entries
cvsdist 0f561d6
  to freenode.net in the default server list.  Patch courtesy of Dan Burcaw
cvsdist 0f561d6
  from bug (#81704)
cvsdist 0f561d6
cvsdist 0f561d6
* Wed Jan 22 2003 Mike A. Harris <mharris@redhat.com> 1.8.11-5
cvsdist 0f561d6
- Removed double .desktop file (#81874,82315)
cvsdist 0f561d6
cvsdist 0f561d6
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 1.8.11-4
cvsdist 0f561d6
- rebuilt
cvsdist 0f561d6
cvsdist 0f561d6
* Tue Jan  7 2003 Mike A. Harris <mharris@redhat.com> 1.8.11-3
cvsdist 0f561d6
- Add bugfix from xchat.org xc1811fixststint.diff
cvsdist 0f561d6
cvsdist 0f561d6
* Tue Jan  7 2003 Mike A. Harris <mharris@redhat.com> 1.8.11-2
cvsdist 0f561d6
- Remove CVS files from source dirs so they're not installed into doc dirs.
cvsdist 0f561d6
cvsdist 0f561d6
* Tue Jan  7 2003 Mike A. Harris <mharris@redhat.com> 1.8.11-1
cvsdist 0f561d6
- Update to xchat 1.8.11 bugfix release, fixes various runtime crashes
cvsdist 0f561d6
- Remove now included patches: xchat-1.8.10-urlhandler-open-in-new-tab.patch,
cvsdist 0f561d6
  xchat-1.8.10-beep-beep-beep.patch
cvsdist 0f561d6
cvsdist 0f561d6
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.8.10-13
cvsdist 0f561d6
- Pick up OpenSSL configuration from pkgconfig, if available
cvsdist 0f561d6
- Add openssl-devel and pkgconfig as buildreqs
cvsdist 0f561d6
cvsdist 0f561d6
* Wed Dec 11 2002 Elliot Lee <sopwith@redhat.com> 1.8.10-12
cvsdist 0f561d6
- Fix broken libpython path on multilibbed systems (patch13)
cvsdist 0f561d6
- _smp_mflags
cvsdist 0f561d6
cvsdist 0f561d6
* Tue Nov 26 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-11
cvsdist 0f561d6
- Added xchat-1.8.10-urlhandler-open-in-new-tab.patch to offer the option of
cvsdist 0f561d6
  opening a URL in a new tab of an existing browser window rather than a new
cvsdist 0f561d6
  window
cvsdist 0f561d6
cvsdist 0f561d6
* Sat Nov 23 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-10
cvsdist 0f561d6
- Added BuildRequires: python-devel to hopefully pick up a missing dep
cvsdist 0f561d6
  causing package build failure in timp's nightly builds.
cvsdist 0f561d6
- Removed dead patches
cvsdist 0f561d6
- Updated package summary and description to be more user friendly by
cvsdist 0f561d6
  rewording, and removing scary words like GNOME, GTK and other irrelevance
cvsdist 0f561d6
cvsdist 0f561d6
* Wed Nov 13 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-9
cvsdist 0f561d6
- Made sure {_sysconfdir}/X11/applnk/Internet/xchat.desktop gets packaged
cvsdist 0f561d6
- Removed some conditional weirdness in %%files list.  This may break xchat
cvsdist 0f561d6
  erratum releases on Red Hat Linux 7.x.  May need to be fixed in future.
cvsdist 0f561d6
cvsdist 1535dd9
* Fri Aug 23 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-7
cvsdist 1535dd9
- Added Requires line so that xchat requires the exact version of perl
cvsdist 1535dd9
  be installed, that was used to compile it, since the embedded perl
cvsdist 1535dd9
  interpreter will break, if you upgrade perl
cvsdist 1535dd9
cvsdist a0e9cd5
* Thu Aug 15 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-6
cvsdist a0e9cd5
- Fix Bill's beep beep beep bug (#71651)
cvsdist a0e9cd5
cvsdist a0e9cd5
* Wed Aug 14 2002 Jonathan Blandford <jrb@redhat.com> 1.8.10-5
cvsdist b345688
- actually install the desktop file.
cvsdist b345688
cvsdist b345688
* Fri Aug  9 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-3
cvsdist b345688
- Added http://xchat.org/files/source/1.8/patches/xc1810fixme.diff to fix
cvsdist b345688
  bug with using /ME in a /QUERY window.  (#71179)
cvsdist b345688
cvsdist b345688
* Wed Aug  7 2002 Mike A. Harris <mharris@redhat.com> 1.8.10-2
cvsdist b345688
- Updated to xchat 1.8.10 to fix a few bugs where a remote ircd could cause
cvsdist b345688
  the xchat client to crash.  This is a bugfix only release.
cvsdist b345688
cvsdist b345688
* Tue Aug  6 2002 Mike A. Harris <mharris@redhat.com> 1.8.9-10
cvsdist b345688
- Added Korean fontset support to fix bug (#69771)
cvsdist b345688
cvsdist b345688
* Mon Aug  5 2002 Mike A. Harris <mharris@redhat.com> 1.8.9-9
cvsdist b345688
- Enabled python scripting which was somehow disabled somewhere along the
cvsdist b345688
  line by default in upstream sources, and we missed catching it. (#70816)
cvsdist b345688
cvsdist b345688
* Sun Aug  4 2002 Mike A. Harris <mharris@redhat.com> 1.8.9-8
cvsdist b345688
- Created new-style net-xchat.desktop file (#69541)
cvsdist b345688
cvsdist b345688
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.8.9-7
cvsdist b345688
- automated rebuild
cvsdist b345688
cvsdist b345688
* Tue Jun 18 2002 Mike A. Harris <mharris@redhat.com> 1.8.9-6
cvsdist b345688
- updated the package description
cvsdist b345688
- Added CFLAGS and LDFLAGS export vars before configure to fix rpath problem
cvsdist b345688
cvsdist b345688
* Sun May 26 2002 Tim Powers <timp@redhat.com>
cvsdist b345688
- automated rebuild
cvsdist b345688
cvsdist 2fe39b7
* Mon May 20 2002 Mike A. Harris <mharris@redhat.com> 1.8.9-2
cvsdist 2fe39b7
- Updated to xchat 1.8.9
cvsdist 2fe39b7
cvsdist 5aa5a14
* Mon Apr  8 2002 Mike A. Harris <mharris@redhat.com> 1.8.8-5
cvsdist 5aa5a14
- Re-enabled GNOME support due to user complaints of pixmaps missing, key
cvsdist 5aa5a14
  bindings, and other fairly important features no longer working.
cvsdist 5aa5a14
cvsdist 5aa5a14
* Tue Mar 27 2002 Mike A. Harris <mharris@redhat.com> 1.8.8-4
cvsdist c297c6d
- Disabled GNOME support since it doesn't seem too useful anyways, and forces
cvsdist c297c6d
  all xchat users to install GNOME libs even if they use KDE. (#59626)
cvsdist c297c6d
- Updated URL and source lines in spec.
cvsdist c297c6d
cvsdist c297c6d
* Wed Mar  6 2002 Mike A. Harris <mharris@redhat.com> 1.8.8-1
cvsdist c297c6d
- Updated to xchat 1.8.8
cvsdist c297c6d
cvsdist c297c6d
* Tue Feb 26 2002 Mike A. Harris <mharris@redhat.com> 1.8.7-6
cvsdist c297c6d
- Built in new buildroot
cvsdist c297c6d
cvsdist c297c6d
* Tue Feb  5 2002 Mike A. Harris <mharris@redhat.com> 1.8.7-5
cvsdist c297c6d
- Added xchat-1.8.7-use-sysconf-to-detect-cpus.patch to use glibc's sysconf()
cvsdist c297c6d
  to detect the number of processors available.
cvsdist c297c6d
cvsdist c297c6d
* Mon Feb  4 2002 Mike A. Harris <mharris@redhat.com> 1.8.7-4
cvsdist c297c6d
- Enabled IPv6 support as per the request for enhancement (#52124)
cvsdist c297c6d
cvsdist c297c6d
* Thu Jan 24 2002 Mike A. Harris <mharris@redhat.com> 1.8.7-3
cvsdist c297c6d
- Rebuilt in new build environment
cvsdist c297c6d
cvsdist c297c6d
* Thu Jan 10 2002 Mike A. Harris <mharris@redhat.com> 1.8.7-2
cvsdist 1cff4a7
- Updated to xchat 1.8.7
cvsdist 1cff4a7
- New release fixes security vulnerability in CTCP reply
cvsdist 1cff4a7
- Built erratum for all supported releases (1.8.7-1.62.0, 1.8.7-1.70.0,
cvsdist 1cff4a7
  1.8.7-1.71.0, 1.8.7-1.72.0)
cvsdist 1cff4a7
- Removed konqueror patch as it is integrated now.
cvsdist 1cff4a7
cvsdist 1cff4a7
* Sat Jan  5 2002 Mike A. Harris <mharris@redhat.com> 1.8.6-2
cvsdist 1cff4a7
- Enabled ssl support with --enable-openssl
cvsdist 1cff4a7
- Also built releases 1.72.0, 1.71.0, 1.70.0, 1.62.0 for erratum release
cvsdist 1cff4a7
cvsdist 1cff4a7
* Mon Dec 10 2001 Mike A. Harris <mharris@redhat.com> 1.8.6-1
cvsdist 1cff4a7
- Updated to xchat 1.8.6
cvsdist 1cff4a7
cvsdist 1cff4a7
* Tue Nov 13 2001 Mike A. Harris <mharris@redhat.com> 1.8.5-1
cvsdist 1cff4a7
- Updated to xchat 1.8.5
cvsdist 1cff4a7
- Added f to rm -r in install and clean sections
cvsdist 1cff4a7
cvsdist 1cff4a7
* Sun Oct  7 2001 Mike A. Harris <mharris@redhat.com> 1.8.4-1
cvsdist 1cff4a7
- Updated to 1.8.4, now using tar.bz2
cvsdist 1cff4a7
- Removed kanjiconv-fix patch as it is integrated now
cvsdist 1cff4a7
- Added xchat-1.8.4-fix-USE_GNOME.patch to fix simple ifdef USE_GNOME typo
cvsdist 1cff4a7
cvsdist 5e24bc1
* Fri Jul 13 2001 Akira TAGOH <tagoh@redhat.com> 1.8.1-2
cvsdist 5e24bc1
- fixed check locale.
cvsdist 5e24bc1
- don't save kanji_conv.
cvsdist 5e24bc1
  always check locale. however anyone can change the option from
cvsdist 5e24bc1
  the settings menu.
cvsdist 5e24bc1
cvsdist 5e24bc1
* Thu Jul 12 2001 Havoc Pennington <hp@redhat.com>
cvsdist 5e24bc1
- upgrade to 1.8.1
cvsdist 5e24bc1
- remove autoconnect patch since it's upstream
cvsdist 5e24bc1
- remove japanese patch, upstream seems to have applied
cvsdist 5e24bc1
  parts of it and changelog says there's upstream support.
cvsdist 5e24bc1
  (this patch was pretty huge to maintain in an SRPM anyway...)
cvsdist 5e24bc1
- put scripts-python scripts-perl in docs bug #28521
cvsdist 5e24bc1
- remove patch to include locale.h, gone upstream
cvsdist 5e24bc1
- upgrade konqueror patch
cvsdist 5e24bc1
cvsdist 5e24bc1
* Thu Jul 12 2001 Havoc Pennington <hp@redhat.com>
cvsdist 5e24bc1
- nevermind, BuildRequires gnome-libs, that should 
cvsdist 5e24bc1
  close #48923
cvsdist 5e24bc1
cvsdist 5e24bc1
* Thu Jul 12 2001 Havoc Pennington <hp@redhat.com>
cvsdist 5e24bc1
- fix file list to not include absolute path "/usr/share/..."
cvsdist 5e24bc1
  no idea how that ever worked at all. closes #48923
cvsdist 5e24bc1
cvsdist 54b47ae
* Mon Jun 25 2001 Karsten Hopp <karsten@redhat.de>
cvsdist 54b47ae
- use konqueror, not kfmclient on URLs
cvsdist 54b47ae
cvsdist daf3b45
* Fri Feb 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
cvsdist daf3b45
- langify
cvsdist daf3b45
- use %%{_tmppath}
cvsdist daf3b45
- make it compile
cvsdist daf3b45
cvsdist daf3b45
* Tue Feb 13 2001 Akira TAGOH <tagoh@redhat.com>
cvsdist daf3b45
- Added Japanese patch.
cvsdist daf3b45
cvsdist daf3b45
* Tue Feb 13 2001 Havoc Pennington <hp@redhat.com>
cvsdist daf3b45
- patch that may fix autoconnections (bug 27093)
cvsdist daf3b45
cvsdist daf3b45
* Mon Jan 22 2001 Havoc Pennington <hp@redhat.com>
cvsdist daf3b45
- 1.6.3
cvsdist daf3b45
- remove patch to desktop file (Internet->Application), seems to 
cvsdist daf3b45
  have gone upstream
cvsdist daf3b45
cvsdist daf3b45
* Sat Dec 9 2000 Havoc Pennington <hp@redhat.com>
cvsdist daf3b45
- Remove security fix which has been merged upstream
cvsdist daf3b45
- upgrade to 1.6.1
cvsdist daf3b45
cvsdist daf3b45
* Sat Aug 19 2000 Havoc Pennington <hp@redhat.com>
cvsdist daf3b45
- Don't use /bin/sh to interpret URLs from the net
cvsdist daf3b45
cvsdist daf3b45
* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
cvsdist daf3b45
- Updated Epoch
cvsdist 8d2f6d4
cvsdist daf3b45
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
cvsdist daf3b45
- automatic rebuild
cvsdist 8d2f6d4
cvsdist daf3b45
* Mon Jun 19 2000 Havoc Pennington <hp@redhat.com>
cvsdist daf3b45
- Install HTML docs
cvsdist 8d2f6d4
cvsdist daf3b45
* Fri Jun 16 2000 Preston Brown <pbrown@redhat.com>
cvsdist daf3b45
- fix desktop entry
cvsdist 8d2f6d4
cvsdist daf3b45
* Fri May 19 2000 Havoc Pennington <hp@redhat.com>
cvsdist daf3b45
- rebuild for the Winston tree, update to 1.4.2