gtk2.spec revision 10295
10139N/A#
10139N/A# spec file for package gtk2
10139N/A#
10139N/A# Copyright (c) 2005 Sun Microsystems, Inc.
10139N/A# This file and all modifications and additions to the pristine
16307N/A# package are under the same license as the package itself.
10139N/A#
10139N/A# Owner: erwannc
10139N/A#
17185N/A%include l10n.inc
10139N/AName: gtk2
10139N/ALicense: LGPL
10139N/AGroup: System/Libraries
10139N/AVersion: 2.10.11
10139N/ARelease: 2
10139N/ADistribution: Java Desktop System
18688N/AVendor: Sun Microsystems, Inc.
18688N/ASummary: GTK+ - GIMP Toolkit Library for creation of graphical user interfaces
10139N/ASource: http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.10/gtk+-%{version}.tar.bz2
19013N/ASource1: gtk.unset-hack.sh
10139N/ASource2: gtk.unset-hack.csh
12790N/ASource3: mkinstalldirs
19140N/ASource4: %{name}-po-sun-%{po_sun_version}.tar.bz2
10139N/A#owner:erwannc date:2000-00-00 type:feature
10139N/APatch1: gtk+-01-window-icons-for-message-dialog.diff
19142N/A#owner:niall date:2003-07-11 type:feature
18993N/APatch2: gtk+-02-fileseldlg-navbuttons.diff
10627N/A#owner:erwannc date:2000-00-00 type:feature bugzilla:304128
10139N/APatch3: gtk+-03-gdk-x11-uninstalled-pc.diff
10139N/A#owner:yippi date:2005-08-11 type:feature bugzilla:344813
18993N/APatch4: gtk+-04-mediaLib.diff
11939N/A#owner:gman date:2004-04-30 type:feature
11939N/APatch5: gtk+-05-file-chooser.diff
18053N/A#owner:erwannc date:2004-05-17 bugster:5035382 type:bug
10139N/APatch6: gtk+-06-use-xim-for-all-locales.diff
10460N/A#owner:erwannc date:2004-08-12 type:feature
10460N/APatch7: gtk+-07-sun-copy-paste-keybindings.diff
19126N/A#owner:erwannc date:2004-08-12 bugzilla:74223 type:feature
10460N/APatch8: gtk+-08-sun-pgdn-pgup-keybinding.diff
19126N/A#owner:laca date:2004-09-18 type:feature
10460N/APatch9: gtk+-09-solaris-2.0.0-compat.diff
19142N/A#owner:erwannc date:2004-11-25 bugzilla:153829 bugster:5087948 type:bug
10460N/APatch10: gtk+-10-blank-popup-menu-fix.diff
10460N/A#Patch11: gtk+-11-treeview-keynav.diff
10460N/A#owner:erwannc date:2006-05-01 type:feature
10139N/APatch12: gtk+-12-trusted-extensions.diff
10139N/A# date:2006-09-17 bugster:6494571 bugzilla:382676 owner:gheet type:bug
10139N/APatch13: gtk+-13-printing-papi-backend.diff
10139N/A# date:2006-11-22 bugster:6438587 bugzilla:335796,331369 owner:padraig type:bug
10139N/APatch14: gtk+-14-gedit-menu-shortcuts.diff
10139N/A
10139N/ABuildRoot: %{_tmppath}/%{name}-%{version}-build
10139N/ADocdir: %{_defaultdocdir}/doc
10139N/AAutoreqprov: on
10139N/APrereq: /sbin/ldconfig
17878N/A
10139N/A%define cairo_version 0.9.2
10139N/A%define atk_version 1.7.0
10139N/A%define pango_version 1.9.0
11108N/A%define glib2_version 2.7.1
10139N/A%define libpng_version 1.2.5
10139N/A%define libjpeg_version 6.2.0
12612N/A
13649N/ABuildRequires: cairo-devel >= %{cairo_version}
13649N/ABuildRequires: atk-devel >= %{atk_version}
13649N/ABuildRequires: pango-devel >= %{pango_version}
12612N/ABuildRequires: glib2-devel >= %{glib2_version}
10460N/ABuildRequires: libpng-devel >= %{libpng_version}
10460N/ABuildRequires: libjpeg >= %{libjpeg_version}
10460N/ARequires: cairo >= %{cairo_version}
10460N/ARequires: glib2 >= %{glib2_version}
10460N/ARequires: atk >= %{atk_version}
10460N/ARequires: pango >= %{pango_version}
18128N/ARequires: libpng >= %{libpng_version}
18128N/ARequires: libjpeg >= %{libjpeg_version}
18128N/A
10139N/A%description
10139N/AThis fast and versatile library is used all over the world for all
10139N/AGNOME applications, the GIMP and several others. Originally it was
10139N/Awritten for the GIMP and hence has the name Gimp ToolKit. Many people
10139N/Alike it because it is small, efficient and very configurable.
10139N/A
10139N/A%package devel
10139N/ASummary: Library for creation of graphical user interfaces
10139N/AGroup: Development/Libraries/X11
10139N/AAutoreqprov: on
10139N/ARequires: %{name} = %{version}
10139N/ARequires: cairo-devel >= %{cairo_version}
10139N/ARequires: atk-devel >= %{atk_version}
10139N/ARequires: pango-devel >= %{pango_version}
10139N/A
10139N/A%description devel
10139N/AThis fast and versatile library is used all over the world for all
10139N/AGNOME applications, the GIMP and several others. Originally it was
10139N/Awritten for the GIMP and hence has the name Gimp ToolKit. Many people
10139N/Alike it because it is small, efficient and very configurable.
10139N/A
18128N/A%prep
18128N/A%setup -q -n gtk+-%{version}
10139N/A
10139N/A# Fixes build error. Solaris msgfmt does not have '-c'.
16695N/Afor f in po/Makefile.in.in po-properties/Makefile.in.in ; do
18128N/A sed -e 's/$(GMSGFMT) -c/$(GMSGFMT)/g' $f > $f$$
18128N/A mv $f$$ $f
18128N/Adone
10139N/A
10460N/A%if %build_l10n
10460N/Abzcat %SOURCE4 | tar xf -
10460N/Acd po-sun; make; cd ..
10460N/A%endif
10460N/A%patch1 -p1
10460N/A%patch2 -p1
10460N/A%patch3 -p1
10139N/A%patch4 -p1
18128N/A%patch5 -p1
18128N/A%patch6 -p1
17893N/A
17893N/A%ifos solaris
16779N/A%patch7 -p1
16779N/A%endif
16695N/A
16695N/A%patch8 -p1
16307N/A%patch9 -p1
16307N/A
13649N/A%patch10 -p1
13649N/A#%patch11 -p1
12612N/A%patch12 -p1
12612N/A%patch13 -p1
12612N/A%patch14 -p1
12609N/A
12609N/A%ifos solaris
12582N/A%ifarch amd64 sparcv9
12582N/Acd ..
11939N/Acp -rp gtk+-%{version} gtk+-%{version}-64
11939N/Acd gtk+-%{version}
11382N/A%endif
11382N/A%endif
11379N/A
11379N/A
11379N/A%build
11379N/A%ifos linux
11108N/Aif [ -x /usr/bin/getconf ]; then
11108N/A CPUS=`getconf _NPROCESSORS_ONLN`
10627N/Afi
10627N/A%else
10621N/A CPUS=`/usr/sbin/psrinfo | grep on-line | wc -l | tr -d ' '`
10621N/A%endif
10460N/Aif test "x$CPUS" = "x" -o $CPUS = 0; then
10460N/A CPUS=1
10139N/Afi
10139N/A
10139N/ACONFLAGS="--prefix=%{_prefix} --datadir=%{_datadir} --with-native-locale=yes \
10139N/A --with-xinput=xfree --mandir=%{_mandir} --infodir=%{_infodir} \
10139N/A --enable-shm --enable-xim --enable-fbmanager --with-gdktarget=x11"
10139N/A
10139N/A%ifos solaris
10139N/A%ifarch amd64 sparcv9
10139N/ACPUS=$(($CPUS*4))
10139N/A
10139N/Acd ../gtk+-%version-64
10139N/A
10139N/Aexport CFLAGS="$CFLAGS64"
10139N/Aexport LDFLAGS="$LDFLAGS64"
10139N/Aexport PKG_CONFIG_PATH="$PKG_CONFIG_PATH64"
10139N/Aexport CC=${CC64:-$CC}
10139N/Asave_PATH="$PATH"
10139N/Accdir=`dirname $CC`
10139N/Aexport PATH=$ccdir:$PATH
10139N/A
10139N/A# FIXME: is this still needed?
10139N/Acp %SOURCE3 .
10139N/Alibtoolize --force
10139N/Aaclocal $ACLOCAL_FLAGS -I .
10139N/Agtkdocize
10139N/Aautoheader
16401N/Aautomake -a -c -f
19238N/Aautoconf
19555N/A./configure $CONFLAGS \
--bindir=%{_bindir}/%{_arch64} \
--libdir=%{_libdir}/%{_arch64} \
--libexecdir=%{_libexecdir}/%{_arch64} \
--sysconfdir=%{_sysconfdir}/%{_arch64} \
--disable-gtk-doc
make -j $CPUS
cd ../gtk+-%version
export CFLAGS="$CFLAGS32"
export RPM_OPT_FLAGS="$CFLAGS"
export LDFLAGS="$LDFLAGS32"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH32"
export CC=${CC32:-$CC}
export PATH="$save_PATH"
%endif
%endif
cp %SOURCE3 .
libtoolize --force
aclocal $ACLOCAL_FLAGS -I .
gtkdocize
autoheader
automake -a -c -f
autoconf
CFLAGS="$RPM_OPT_FLAGS" \
./configure $CONFLAGS \
--sysconfdir=%{_sysconfdir} \
%{gtk_doc_option}
make -j $CPUS
%install
%ifos solaris
%ifarch amd64 sparcv9
cd ../gtk+-%version-64
make install DESTDIR=$RPM_BUILD_ROOT
cd ../gtk+-%version
%endif
%endif
make DESTDIR=$RPM_BUILD_ROOT install
./mkinstalldirs $RPM_BUILD_ROOT%{_sysconfdir}/gtk-2.0
mkdir -p $RPM_BUILD_ROOT/etc/profile.d
cp %SOURCE1 $RPM_BUILD_ROOT/etc/profile.d/
cp %SOURCE2 $RPM_BUILD_ROOT/etc/profile.d
#Copy zh_HK from zh_TW
#Fixes bug 4930405
install -d $RPM_BUILD_ROOT%{_datadir}/locale/zh_HK/LC_MESSAGES
install --mode=0644 $RPM_BUILD_ROOT%{_datadir}/locale/zh_TW/LC_MESSAGES/*.mo $RPM_BUILD_ROOT%{_datadir}/locale/zh_HK/LC_MESSAGES/
rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/immodules/*.la
rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/loaders/*.la
rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/engines/*.la
rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/printbackends/*.la
rm $RPM_BUILD_ROOT%{_libdir}/*.la
%clean
rm -rf $RPM_BUILD_ROOT
%post
/sbin/ldconfig
%{_bindir}/gtk-query-immodules-2.0 > %{_sysconfdir}/gtk-2.0/gtk.immodules
%{_bindir}/gdk-pixbuf-query-loaders > %{_sysconfdir}/gtk-2.0/gdk-pixbuf.loaders
%postun
#If this is the last version of the package remove the config files
if [ $1 = 0 ]
then
rm %{_sysconfdir}/gtk-2.0/gtk.immodules
rm %{_sysconfdir}/gtk-2.0/gdk-pixbuf.loaders
fi
/sbin/ldconfig
%files
%{_bindir}/*query*
%{_bindir}/gtk-update-icon-cache
%{_libdir}/lib*.so.*
%{_libdir}/gtk-2.0/*/immodules/*.so
%{_libdir}/gtk-2.0/*/loaders/*.so
%{_libdir}/gtk-2.0/*/engines/*.so
%{_datadir}/themes/*/*
%{_datadir}/locale/*/LC_MESSAGES/*.mo
%{_sysconfdir}/profile.d/gtk.unset-hack.sh
%{_sysconfdir}/profile.d/gtk.unset-hack.csh
%dir %{_sysconfdir}/gtk-2.0
%{_mandir}/man1/*.gz
%files devel
%{_bindir}/*-demo
%{_bindir}/*-csource
%{_includedir}/gtk-2.0
%{_libdir}/lib*.so
%{_libdir}/gtk-2.0/include
%{_libdir}/pkgconfig/*.pc
%{_datadir}/gtk-2.0
%{_datadir}/aclocal/*.m4
%{_datadir}/gtk-doc/html/*
%{_mandir}/man3/*.gz
%changelog -n gtk2
* Wed Mar 14 2007 - damien.carbery@sun.com
- Bump to 2.10.11.
* Tue Mar 13 2007 - damien.carbery@sun.com
- Bump to 2.10.10.
* Fri Feb 16 2007 - takao.fujiwara@sun.com
- Removed '-c' option of msgfmt in po*/Makefile.in.in
* Tue Feb 13 2007 - takao.fujiwara@sun.com
- Add l10n tarball.
* Mon Jan 22 2007 - damien.carbery@sun.com
- Bump to 2.10.9.
* Wed Jan 17 2007 - damien.carbery@sun.com
- Bump to 2.10.8. Removed upstream patches, 15-load-gdm-modules.
* Mon Jan 08 2007 - damien.carbery@sun.com
- Bump to 2.10.7. Remove upstream patches, 15-hidden and 17-recent-files-crash.
Renumber remainder.
* Wed Dec 13 2006 - padraig.obriain@sun.com
- remove patch 08-nofocus-empty.diff as it is not needed.
* Wed Dec 06 2006 - ghee.teo@sun.com
- Include bugzilla id for 19-printing-papi-backend.diff which is now cleaned up.
* Thu Nov 23 2006 - padraig.obriain@sun.com
- added patch 20-gedit-menu-shortcuts.diff
* Thu Nov 16 2006 - ghee.teo@sun.com
- added patch 19-printing-papi-backend.diff
* Fri Nov 3 2006 - laca@sun.com
- use %gtk_doc_option in configure so that it can be disabled using
--without-gtk-doc
- add --datadir=%{_datadir} to the configure options, fixes 6443777
* Thu Oct 26 2006 padraig.obriain@sun.com
- Add patch, 18-recent-files-crash, for bugster 6485464, bugzilla 365031.
* Mon Oct 18 2006 - brian.cameron@sun.com
- Call autoconf after autoheader/automake.
* Fri Oct 13 2006 - damien.carbery@sun.com
- Delete .a and .la files.
* Wed Oct 04 2006 - damien.carbery@sun.com
- Bump to 2.10.6.
* Tue Oct 03 2006 - damien.carbery@sun.com
- Add patch, 17-stock_icons_typo, to fix typo in Makefile. Already fixed
upstream.
* Mon Oct 02 2006 - damien.carbery@sun.com
- Bump to 2.10.5. Remove upstream patch, 17-hang-on-mutex.
* Wed Sep 27 2006 - padraig.obriain@sun.com
- Add patch hang-on-mutex as part fix for bug 6475663
* Tue Sep 05 2006 - damien.carbery@sun.com
* Tue Sep 26 2006 - damien.carbery@sun.com
- Bump to 2.10.4.
* Tue Sep 05 2006 - damien.carbery@sun.com
- Bump to 2.10.3.
* Fri Aug 18 2006 - damien.carbery@sun.com
- Bump to 2.10.2.
* Mon Jul 24 2006 - damien.carbery@sun.com
- Bump to 2.10.1.
* Thu Jul 20 2006 - damien.carbery@sun.com
- Bump to 2.10.0.
* Mon Jul 10 2006 - brian.cameron@sun.com
- Bump to 2.8.20.
* Tue Jul 04 2006 - ghee.teo@sun.com
- added gtk+-15-truested-extensions.diff
* Tue Jun 27 2006 - yuriy.kuznetsov@sun.com
- remove line with "cp po/Makefile.in.in po-properties"
to fix CR#6439573
* Wed Apr 26 2006 - damien.carbery@sun.com
- Bump to 2.8.17.
* Thu Mar 16 2006 - damien.carbery@sun.com
- Bump to 2.8.16.
* Mon Mar 13 2006 - damien.carbery@sun.com
- Bump to 2.8.15.
* Thu Mar 9 2006 - damien.carbery@sun.com
- Bump to 2.8.14.
* Sun Feb 26 2006 - damien.carbery@sun.com
- Bump to 2.8.13.
* Mon Feb 13 2006 - damien.carbery@sun.com
- Bump to 2.8.12.
* Sun Jan 29 2006 - damien.carbery@sun.com
- Bump to 2.8.11
* Tue Dec 20 2005 - damien.carbery@sun.com
- Bump to 2.8.9.
* Tue Nov 29 2005 - damien.carbery@sun.com
- Bump to 2.8.8.
- Remove upstream patches 15-gtkcalendar and 16-glib-mkenums.
* Mon Nov 28 2005 - laca@sun.com
- prepare for building from CVS snapshots:
- use a macro for Version
- fix autotool order, add some more
- cp mkinstalldirs so that we don't need to add even more autotool foo
* Tue Oct 11 2005 - damien.carbery@sun.com
- Bump to 2.8.6
- Add patch, gtk+-15-gtkcalendar, to declare a missing var. #318578.
- Add patch, gtk+-16-glib-mkenums, to use macro instead of hardcoding. #318582.
* Tue Sep 13 2005 - brian.cameron@sun.com
- Bump to 2.8.3 fixing a core dumping problem for the panel and
nautilus on Solaris x86.
* Mon Aug 15 2005 - glynn.foster@sun.com
- Bump to 2.8.0
* Fri May 06 2005 - brian.cameron@sun.com
- Added a patch and then backed it out.
* Fri May 06 2005 - glynn.foster@sun.com
- Bump to 2.6.7
* Wed May 04 2005 - srirama.sharma@wipro.com
- Added gtk+-17-treeview-keynav.diff to modify the keynav
in treeview. Fixes bug #6216594.
* Mon Mar 21 2005 - vinay.mandyakoppal@wipro.com
- Edited patch gtk+-02-fileseldlg-navbuttons.diff to make
save attachment Desktop button work. Fixes #6240188.
* Tue Feb 22 2005 - vijaykumar.patwari@wipro.com
- Added patch gtk+-16-blank-popup-menu-fix.diff to
fix blank popup menu area.
* Wed Dec 15 2004 - glynn.foster@sun.com
- Bump to 2.4.14
* Thu Nov 25 2004 - yong.sun@sun.com
- Patch 19 for bugster #6199166: Cinnabar [linux] Styles are not localized
in Gtk/Gnome font selector dialog
* Sat Nov 06 2004 - srirama.sharma@wipro.com
- Patch for the Bug #6185180 is rolled to the original
gtk+-06-file-chooser.diff.
* Thu Nov 04 2004 - srirama.sharma@wipro.com
- Rolled in the patch for Bug #6178360 to the original
gtk+-06-file-chooser.diff
* Fri Oct 29 2004 - padraig.obriain@sun.com
- Add patch gtk+-17-iter-inside-word.diff for bugzilla 153628.
* Fri Oct 29 2004 - laca@sun.com
- use $CC64 for the 64-bit build if defined
* Sat Oct 2 2004 - Joseph.Townsend@Sun.COM
- Create 64bit libraries for Solaris
* Thu Sep 30 2004 - vijaykumar.patwari@wipro.com
- Fix image code security issue.
* Sat Sep 18 2004 - laca@sun.com
- Add patch 15 for ABI compatibility with gdk in the Solaris GNOME 2.0 release
* Wed Sep 15 2004 - muktha.narayan@wipro.com
- Added patch gtk+-14-solaris-xinerama-support.diff to
enable xinerama flags on Solaris.
* Sat Sep 11 2004 - laca@sun.com
- Move Solaris specific LDFLAGS to the Solaris spec file
* Fri Sep 10 2004 - damien.carbery@sun.com
- Set LDFLAGS so Xrandr and Xrender can be found.
* Thu Aug 26 2004 - glynn.foster@sun.com
- Bump to 2.4.9
* Tue Aug 24 2004 - glynn.foster@sun.com
- Bump to 2.4.7
* Wed Aug 18 2004 - brian.cameron@sun.com
- added --enable-gtk-doc.
* Tue Aug 17 2004 - balamurali.viswanathan@wipro.com
- Added Sun branding patch gtk+-15-sun-pgdn-pgup-keybinding.diff
Sun keyboard bindings for Keypad keys PageUp, PageDown, Home and End.
The patch has been rejected by the GTK maintainers as a WONTFIX as they feel
its a bug in the Sun Xserver. Corresponding sun-patch is 085-74223-w.diff
* Thu Aug 12 2004 - narayana.pattipati@wipro.com
- Added Sun branding patch gtk+-14-sun-copy-paste-keybindings.diff
to provide copy, paste, cut key bindings in Sun Keyboards. The patch is
ported from GNOME 2.0 (sun-patches/gtk+/190-00000-s.diff). It was rejected
by community. So, it will be a SUN specific patch.
* Thu Jul 22 2004 - padraig.obriain@sun.com
- Added patches gtk+-10-combo-a11y.diff for bugzilla #132847
gtk+-11-nofocus-empty.diff for bugzilla #126295
gtk+-12-file-chooser-a11y-names.diff for bugzilla #144405
gtk+-13-single-row-treeview.diff for bugzilla #131226
* Wed Jul 14 2004 - Yong.Sun@Sun.COM
- Added a new -09 patch to fix bugtraq #5048804
* Thu Jul 08 2004 - damien.donlon@sun.com
- Updated l10n content to gtk2-l10n-po-1.2.tar.bz2
* Thu Jul 08 2004 - niall.power@sun.com
- run libtoolize to fix some weirdness
* Wed Jul 07 2004 - niall.power@sun.com
- Ported to rpm4
* Wed Jul 07 2004 - dermot.mccluskey@sun.com
- added "-j $CPUS" to make to speed up builds
* Mon May 17 2004 - hidetoshi.tajima@sun.com
- Added a new -07 patch to fix bugtraq #5035382.
- Moved the previous revision 07 patch to fix bug 141190 to revision 08
as the last patch, since the same fix is already in community's cvs server,
hence the patch should be removed eventually when the fix comes from a
new version of gtk+ tarball, including gtkimcontextxim.c revision 1.47 or
newer.
* Fri May 14 2004 - danek.duvall@sun.com
- Applied patch to fix bug 141190, bringing gtkimcontextxim.c
up to revision 1.47. Revision 1.46, included in 2.4.1, broke
compilation on Solaris.
* Fri May 14 2004 - glynn.foster@sun.com
- Bump to 2.4.1. Remove render icon patch, since upstream.
* Wed May 12 2004 - damien.donlon@sun.com
- Updated l10n content to gtk2-l10n-po-1.1.tar.bz2
* Mon Mar 29 2004 - damien.donlon@sun.com
- Updated l10n content to gtk2-l10n-po-1.0.tar.bz2
* Thu Mar 25 2004 - glynn.foster@sun.com
- Use JDS autotools.
* Wed Mar 24 2004 - glynn.foster@sun.com
- Bump to 2.4.0 and remove upstream file chooser patch.
* Mon Mar 22 2004 - <brian.cameron@sun.com>
- added patch 7 to add mediaLib support. Also added autoconf/
automake since this patch changes configure.in/Makefile.am
files.
* Thu Mar 18 2004 - hidetoshi.tajima@sun.com
- don't install unsupported gtk-2.0/*/immodules/im-*.so
* Tue Mar 16 2004 - <brian.cameron@sun.com>
- Add patch 6 to fix -1 enumeration issue on Solaris. This
fixed many programs from crashing (panel, gdm, nautilus).
* Mon Mar 15 2004 - <laca@sun.com>
- Add patch to fix build on Solaris. In cvs.gnome.org already.
* Thu Mar 11 2004 - <glynn.foster@sun.com>
- Remove patches 4 and 5 - they're upstream.
* Wed Mar 10 2004 - <niall.power@sun.com>
- Bump to 2.3.6, update dependenciy versions.
* Tue Feb 10 2004 - <matt.keenan@sun.com>
- Bump to 2.3.2, and l10n to 0.7, and port patch 05
* Fri Jan 09 2004 - <laca@sun.com>
- add a missing .pc file
- clean up for Solaris builds
* Wed Jan 07 2004 - <glynn.foster@sun.com>
- Remove the tab cycling patch for notebooks, since it's already
upstream.
* Mon Dec 15 2003 - <glynn.foster@sun.com>
- Bump to 2.3.1
* Mon Aug 25 2003 - <ghee.teo@sun.com>
- Fix input method hanged in zh_CN.gb18030 locale.
Taken patch from community for bugzilla 115077 and 105909.
Fixed 4894673, 4908025.
* Thu Aug 14 2003 - <laca@sun.com>
- move lib*.so to -devel, remove *.a, *.la
* Fri Jul 25 2003 - niall.power@sun.com
- /etc/gtk-2.0 needs to exist before postinstall script is run.
run ./mkinstalldirs to ensure this.
* Fri Jul 18 2003 - <michael.twomey@sun.com>
- Fixing %postun action so that config files are only removed on final
uninstall of gtk2.
* Fri Jul 11 2003 - <niall.power@sun.com>
- add file selection dialog shortcuts patch
* Wed Jul 09 2003 - <michael.twomey@sun.com>
- add in sun po files
* Mon Jul 07 2003 - <markmc@sun.com>
- add new patch to make message dialogs have window icons.
See bug #116896.
* Mon Jun 30 2003 - <glynn.foster@sun.com>
- Add new patch to make sure that rendering on pixbufs is okay. This
fixes an issue with gnome-theme-manager
* Mon Jun 30 2003 - <glynn.foster@sun.com>
- Bump version number for new tarballs, and reset release number.
* Wed Jun 25 2003 - <markmc@sun.com>
- add gtk-unset-hack.sh and gtk-unset-hack.csh to workaround
SuSE's gtk-1.2 rpms installing crackrock scripts into
/etc/profile.d
* Thu May 29 2003 - <Laszlo.Kovacs@sun.com>
- added patch gtk+-01-tab-change-with-ctrl-alt-pageup-pagedn.diff
* Tue May 13 2003 - Stephen.Browne@sun.com
- initial release