cvsextras 9ac3e73
Name:           wxGTK
cc2308f
Version:        2.8.12
388a5c1
Release:        31%{?dist}
e4ac7a4
Summary:        GTK2 port of the wxWidgets GUI library
26ada7b
License:        wxWidgets
cvsextras 9ac3e73
Group:          System Environment/Libraries
cvsextras 0bb0464
URL:            http://www.wxwidgets.org/
Mystro256 f2a80d5
Source0:        http://downloads.sf.net/wxwindows/%{name}-%{version}.tar.bz2
db11992
Source1:        wx-config
Mystro256 f2a80d5
Patch0:         %{name}-%{version}-test.patch
cc897a4
# https://bugzilla.redhat.com/show_bug.cgi?id=1200611
cc897a4
# remove abort when ABI check fails
Mystro256 f2a80d5
Patch1:         %{name}-%{version}-abicheck.patch
8c63225
# https://bugzilla.redhat.com/show_bug.cgi?id=1308243
8c63225
# backported from https://github.com/wxWidgets/wxWidgets/commit/1780a38b7bc9a9c04d33775a3176fe8516465f50
Mystro256 f2a80d5
Patch2:         %{name}-%{version}-char.patch
a4fbc0d
b116a5c
BuildRequires:  gcc-c++
e4ac7a4
BuildRequires:  gtk2-devel, zlib-devel >= 1.1.4
e4ac7a4
BuildRequires:  libpng-devel, libjpeg-devel, libtiff-devel
b8a97e9
BuildRequires:  expat-devel, SDL-devel
0e420ce
BuildRequires:  libGL-devel, libGLU-devel
6438e16
BuildRequires:  libSM-devel
6438e16
BuildRequires:  gstreamer-devel >= 0.10, gstreamer-plugins-base-devel >= 0.10
6438e16
BuildRequires:  GConf2-devel
3e3a810
BuildRequires:  autoconf, gettext
8c63225
#BuildRequires:  cppunit-devel
e4ac7a4
33a282f
Requires:       wxBase = %{version}-%{release}
e1d2519
Provides:       bundled(scintilla) = 1.70
53d8753
cvsextras 9ac3e73
%description
e4ac7a4
wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets
cvsextras 9ac3e73
GUI library, offering classes for all common GUI controls as well as a
cvsextras 9ac3e73
comprehensive set of helper classes for most common application tasks,
cvsextras 9ac3e73
ranging from networking to HTML display and image manipulation.
cvsextras 9ac3e73
e4ac7a4
cvsextras 9ac3e73
%package        devel
cvsextras 9ac3e73
Group:          Development/Libraries
e4ac7a4
Summary:        Development files for the wxGTK2 library
6e37475
Requires:       %{name} = %{version}-%{release}
0a210f3
Requires:       %{name}-gl = %{version}-%{release}
68f5231
Requires:       %{name}-media = %{version}-%{release}
33a282f
Requires:       wxBase = %{version}-%{release}
cvsextras 9ac3e73
Requires:       gtk2-devel
5126fd8
Requires:       libGL-devel, libGLU-devel
0e0f833
Requires:       bakefile
Mystro256 48dcb29
Requires(post): %{_sbindir}/update-alternatives
Mystro256 48dcb29
Requires(postun): %{_sbindir}/update-alternatives
cvsextras 9ac3e73
e4ac7a4
%description devel
cvsextras 9ac3e73
This package include files needed to link with the wxGTK2 library.
cvsextras 9ac3e73
cvsextras 9ac3e73
cvsextras 9ac3e73
%package        gl
cvsextras 0bb0464
Summary:        OpenGL add-on for the wxWidgets library
cvsextras 9ac3e73
Group:          System Environment/Libraries
6e37475
Requires:       %{name} = %{version}-%{release}
cvsextras 9ac3e73
e4ac7a4
%description gl
ccebd58
OpenGL (a 3D graphics API) add-on for the wxWidgets library.
ccebd58
33a282f
68f5231
%package        media
68f5231
Summary:        Multimedia add-on for the wxWidgets library
68f5231
Group:          System Environment/Libraries
68f5231
Requires:       %{name} = %{version}-%{release}
68f5231
68f5231
%description media
68f5231
Multimedia add-on for the wxWidgets library.
68f5231
68f5231
33a282f
%package -n     wxBase
33a282f
Summary:        Non-GUI support classes from the wxWidgets library
33a282f
Group:          System Environment/Libraries
33a282f
33a282f
%description -n wxBase
33a282f
Every wxWidgets application must link against this library. It contains
33a282f
mandatory classes that any wxWidgets code depends on (like wxString) and
33a282f
portability classes that abstract differences between platforms. wxBase can
33a282f
be used to develop console mode applications -- it does not require any GUI
33a282f
libraries or the X Window System.
33a282f
33a282f
cvsextras 9ac3e73
%prep
f3c8bf4
%setup -q -n %{name}-%{version}
cc2308f
%patch0 -p1 -b .test
cc897a4
%patch1 -p1 -b .abicheck
8c63225
%patch2 -p1 -b .char
665ea91
946635d
sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in configure
cvsextras 9ac3e73
f3c8bf4
# fix plugin dir for 64-bit
f3c8bf4
sed -i -e 's|/lib|/%{_lib}|' src/unix/stdpaths.cpp
f3c8bf4
ffd325b
# fix permissions for sources
ffd325b
chmod a-x include/wx/{msgout.h,dcgraph.h,graphics.h}
ffd325b
chmod a-x src/common/msgout.cpp
ffd325b
cvsextras 9ac3e73
cvsextras 9ac3e73
%build
6fb80fe
e4ac7a4
export GDK_USE_XFT=1
e4ac7a4
53d8753
# this code dereferences type-punned pointers like there's no tomorrow.
53d8753
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
53d8753
CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
53d8753
4989da5
# --disable-optimise prevents our $RPM_OPT_FLAGS being overridden
4989da5
# (see OPTIMISE in configure).
e4ac7a4
%configure \
cvsextras 9ac3e73
  --with-opengl \
e4ac7a4
  --with-sdl \
b8a97e9
  --without-gnomeprint \
cvsextras 9ac3e73
  --enable-shared \
cvsextras 9ac3e73
  --enable-soname \
4989da5
  --disable-optimise \
e4ac7a4
  --enable-debug_info \
6fb80fe
  --enable-intl \
e4ac7a4
  --enable-unicode \
6fb80fe
  --enable-no_deps \
6fb80fe
  --disable-rpath \
6fb80fe
  --enable-geometry \
6fb80fe
  --enable-graphics_ctx \
6fb80fe
  --enable-sound \
6fb80fe
  --enable-mediactrl \
6fb80fe
  --enable-display \
7423ca7
  --enable-timer \
4adb170
  --enable-compat24 \
4adb170
  --disable-catch_segvs
e4ac7a4
cvsextras 9ac3e73
make %{?_smp_mflags}
cvsextras 9ac3e73
make %{?_smp_mflags} -C contrib/src/stc
e4ac7a4
make %{?_smp_mflags} -C contrib/src/ogl
e4ac7a4
make %{?_smp_mflags} -C contrib/src/gizmos
6fb80fe
make %{?_smp_mflags} -C contrib/src/svg
6fb80fe
6fb80fe
# Why isn't this this part of the main build? Need to investigate.
6fb80fe
make %{?_smp_mflags} -C locale allmo
cvsextras 9ac3e73
cvsextras 9ac3e73
%install
cvsextras 9ac3e73
%makeinstall
e4ac7a4
cvsextras 9ac3e73
%makeinstall -C contrib/src/stc
e4ac7a4
%makeinstall -C contrib/src/ogl
e4ac7a4
%makeinstall -C contrib/src/gizmos
6fb80fe
%makeinstall -C contrib/src/svg
6fb80fe
cvsextras 9ac3e73
db11992
# install our multilib-aware wrapper
Mystro256 743c05b
rm %{buildroot}%{_bindir}/wx-config
Mystro256 743c05b
install -p -m 755 %{SOURCE1} %{buildroot}%{_bindir}/wx-config-2.0
Mystro256 743c05b
touch %{buildroot}%{_bindir}/wx-config
Mystro256 743c05b
Mystro256 743c05b
#Alternatives setup with wxrc
Mystro256 743c05b
mv %{buildroot}%{_bindir}/wxrc %{buildroot}%{_bindir}/wxrc-2
Mystro256 743c05b
touch %{buildroot}%{_bindir}/wxrc
cvsextras 9ac3e73
e4ac7a4
%find_lang wxstd
e4ac7a4
%find_lang wxmsw
e4ac7a4
cat wxmsw.lang >> wxstd.lang
cvsextras 9ac3e73
ad7a692
%check
ad7a692
pushd tests
8c63225
#make test
ad7a692
popd
ad7a692
cvsextras 9ac3e73
cvsextras 9ac3e73
%post -p /sbin/ldconfig
cvsextras 9ac3e73
%postun -p /sbin/ldconfig
cvsextras 9ac3e73
cvsextras 9ac3e73
%post gl -p /sbin/ldconfig
cvsextras 9ac3e73
%postun gl -p /sbin/ldconfig
cvsextras 9ac3e73
68f5231
%post media -p /sbin/ldconfig
68f5231
%postun media -p /sbin/ldconfig
68f5231
33a282f
%post -n wxBase -p /sbin/ldconfig
33a282f
%postun -n wxBase -p /sbin/ldconfig
33a282f
Mystro256 743c05b
%post devel
Mystro256 f5200a1
if [ -f %{_bindir}/wx-config ] && [ ! -h %{_bindir}/wx-config ] ; then
Mystro256 f5200a1
  rm %{_bindir}/wx-config
Mystro256 f5200a1
fi
Mystro256 743c05b
%{_sbindir}/update-alternatives --install %{_bindir}/wx-config \
Mystro256 743c05b
  wx-config %{_bindir}/wx-config-2.0 2
Mystro256 743c05b
%{_sbindir}/update-alternatives --install %{_bindir}/wxrc \
Mystro256 743c05b
  wxrc %{_bindir}/wxrc-2 2
Mystro256 743c05b
Mystro256 743c05b
%postun devel
Mystro256 743c05b
if [ $1 -eq 0 ] ; then
Mystro256 743c05b
  %{_sbindir}/update-alternatives --remove wx-config %{_bindir}/wx-config-2.0
Mystro256 743c05b
  %{_sbindir}/update-alternatives --remove wxrc %{_bindir}/wxrc-2
Mystro256 743c05b
fi
cvsextras 9ac3e73
e4ac7a4
%files -f wxstd.lang
6fb80fe
%doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt
6fb80fe
%doc docs/licendoc.txt docs/preamble.txt docs/readme.txt
e4ac7a4
%{_libdir}/libwx_gtk2u_adv-*.so.*
6fb80fe
%{_libdir}/libwx_gtk2u_aui-*.so.*
e4ac7a4
%{_libdir}/libwx_gtk2u_core-*.so.*
e4ac7a4
%{_libdir}/libwx_gtk2u_gizmos-*.so.*
e4ac7a4
%{_libdir}/libwx_gtk2u_gizmos_xrc*.so.*
e4ac7a4
%{_libdir}/libwx_gtk2u_html-*.so.*
e4ac7a4
%{_libdir}/libwx_gtk2u_ogl-*.so.*
e4ac7a4
%{_libdir}/libwx_gtk2u_qa-*.so.*
6fb80fe
%{_libdir}/libwx_gtk2u_richtext-*.so.*
6fb80fe
%{_libdir}/libwx_gtk2u_stc-*.so.*
6fb80fe
%{_libdir}/libwx_gtk2u_svg-*.so.*
6fb80fe
%{_libdir}/libwx_gtk2u_xrc-*.so.*
cvsextras 9ac3e73
cvsextras 9ac3e73
%files devel
Mystro256 743c05b
%ghost %{_bindir}/wx-config
Mystro256 743c05b
%ghost %{_bindir}/wxrc
Mystro256 48dcb29
%{_bindir}/wx-config-2.0
Mystro256 483579d
%{_bindir}/wxrc-*
6fb80fe
%{_includedir}/wx-2.8
e4ac7a4
%{_libdir}/libwx_*.so
cvsextras 9ac3e73
%dir %{_libdir}/wx
cvsextras 9ac3e73
%dir %{_libdir}/wx/include
e4ac7a4
%{_libdir}/wx/include/gtk2*
e4ac7a4
%dir %{_libdir}/wx/config
e4ac7a4
%{_libdir}/wx/config/gtk2*
e4ac7a4
%{_datadir}/aclocal/*
0e0f833
%{_datadir}/bakefile/presets/*
cvsextras 9ac3e73
cvsextras 9ac3e73
%files gl
e4ac7a4
%{_libdir}/libwx_gtk2u_gl-*.so.*
cvsextras 9ac3e73
68f5231
%files media
68f5231
%{_libdir}/libwx_gtk2u_media-*.so.*
68f5231
33a282f
%files -n wxBase
33a282f
%doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt
33a282f
%doc docs/licendoc.txt docs/preamble.txt docs/readme.txt
33a282f
%{_libdir}/libwx_baseu-*.so.*
33a282f
%{_libdir}/libwx_baseu_net-*.so.*
33a282f
%{_libdir}/libwx_baseu_xml-*.so.*
33a282f
33a282f
cvsextras 9ac3e73
%changelog
388a5c1
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.12-31
388a5c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
388a5c1
d0304fc
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.12-30
d0304fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d0304fc
0f3bc2a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.12-29
0f3bc2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0f3bc2a
dccbd09
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.12-28
dccbd09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
dccbd09
da8fbfa
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.12-27
da8fbfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
da8fbfa
Mystro256 f2a80d5
* Thu Sep 29 2016 Jeremy Newton <alexjnewt at hotmail dot com>
Mystro256 f2a80d5
- Spec cleanup, fixed broken download link
Mystro256 f2a80d5
Mystro256 f5200a1
* Mon Sep 19 2016 Jeremy Newton <alexjnewt at hotmail dot com> - 2.8.12-26
Mystro256 f5200a1
- Workaround for alternatives: remove wx-config if it's not a symlink
Mystro256 f5200a1
Mystro256 48dcb29
* Sun Sep 18 2016 Jeremy Newton <alexjnewt at hotmail dot com> - 2.8.12-25
Mystro256 48dcb29
- Missing update-alternatives requirement for devel package
Mystro256 48dcb29
Mystro256 743c05b
* Sun Aug 28 2016 Jeremy Newton <alexjnewt at hotmail dot com> - 2.8.12-24
Mystro256 743c05b
- Fix alternatives with wxGTK3 (#1128365)
Mystro256 743c05b
8c63225
* Sat Feb 20 2016 Dan Horák <dan[at]danny.cz> - 2.8.12-23
8c63225
- fix FTBFS (#1308243)
8c63225
- skip tests as they depend on cppunit-config which was removed from cppunit-devel
8c63225
5b3bfb7
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.12-22
5b3bfb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5b3bfb7
43c9127
* Wed Dec 30 2015 Michal Toman <mtoman@fedoraproject.org> - 2.8.12-21
43c9127
- Add support for MIPS to wx-config
43c9127
b8a97e9
* Wed Nov 25 2015 Yaakov Selkowitz <yselkowi@redhat.com> - 2.8.12-20
b8a97e9
- Disable gnomeprint support (retired prior to F23)
b8a97e9
40c495b
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-19
40c495b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
40c495b
e1d2519
* Mon May 04 2015 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.8.12-18
e1d2519
- Indicate that this package bundles scintilla 1.70.
e1d2519
ac84ab6
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.8.12-17
ac84ab6
- Rebuilt for GCC 5 C++11 ABI change
ac84ab6
cc897a4
* Thu Mar 12 2015 Dan Horák <dan[at]danny.cz> - 2.8.12-16
cc897a4
- only warn on ABI mismatch (#1200611)
cc897a4
dcc6214
* Wed Feb 25 2015 Petr Pisar <ppisar@redhat.com> - 2.8.12-15
dcc6214
- Rebuild for reverted GCC 5.0 C++ ABI signature
dcc6214
eddb5f4
* Tue Feb 10 2015 Petr Pisar <ppisar@redhat.com> - 2.8.12-14
eddb5f4
- Rebuild for new GCC 5.0 C++ ABI signature (bug #1190971)
eddb5f4
f8c338f
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-13
f8c338f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f8c338f
3e7fe98
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-12
3e7fe98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3e7fe98
48a7cf6
* Fri Jan 17 2014 Dan Horák <dan[at]danny.cz> - 2.8.12-11
48a7cf6
- Add ppc64le (#1054411)
48a7cf6
de5728c
* Tue Jan 14 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.8.12-10
de5728c
- Add aarch64, clean up spec
de5728c
7e66fba
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-9
7e66fba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
7e66fba
e27960e
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-8
e27960e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e27960e
Adam Tkac 73f6014
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 2.8.12-7
Adam Tkac 73f6014
- rebuild due to "jpeg8-ABI" feature drop
Adam Tkac 73f6014
Adam Tkac 4156ca1
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 2.8.12-6
Adam Tkac 4156ca1
- rebuild against new libjpeg
Adam Tkac 4156ca1
1af70dd
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-5
1af70dd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1af70dd
4f4d716
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-4
4f4d716
- Rebuilt for c++ ABI breakage
4f4d716
631d54f
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.12-3
631d54f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
631d54f
aa3ef9d
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 2.8.12-2
aa3ef9d
- Rebuild for new libpng
aa3ef9d
cc2308f
* Thu Apr 14 2011 Dan Horák <dan[at]danny.cz> - 2.8.12-1
cc2308f
- updated to 2.8.12
cc2308f
4e50f7d
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.11-4
4e50f7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4e50f7d
0e0f833
* Mon Nov 29 2010 Dan Horák <dan[at]danny.cz> - 2.8.11-3
0e0f833
- added fix for crashes during DnD (#626012)
0e0f833
- bakefiles are included in devel subpackage (#626314)
0e0f833
4adb170
* Thu Jul  1 2010 Dan Horák <dan[at]danny.cz> - 2.8.11-2
4adb170
- rebuilt without the internal crash handler
4adb170
ad7a692
* Thu Apr 15 2010 Dan Horák <dan[at]danny.cz> - 2.8.11-1
ad7a692
- updated to 2.8.11
ad7a692
1109d9c
* Wed Nov 25 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-9
1109d9c
- updated the wrapper script (#541087)
1109d9c
db11992
* Fri Nov 20 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-8
db11992
- added multilib-aware wrapper for wx-config
db11992
9d30430
* Tue Nov 10 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-7
9d30430
- added fix for html tables rendering (#534030)
9d30430
- removed the long time disabled odbc subpackage
9d30430
48e18a9
* Sun Oct 25 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-6
48e18a9
- add fix for wrong menubar height when using larger system font (#528376)
48e18a9
1786169
* Fri Oct 16 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-5
1786169
- add fix for excessive CPU usage (#494425)
1786169
234ad8b
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.10-4
234ad8b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
234ad8b
ffd325b
* Wed Jul 15 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-3
ffd325b
- add fix for CVE-2009-2369 (#511279)
ffd325b
71fd427
* Thu Jun 11 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-2
71fd427
- fix build with glib >= 2.21
71fd427
f3c8bf4
* Sat Mar 21 2009 Dan Horák <dan[at]danny.cz> - 2.8.10-1
f3c8bf4
- update to 2.8.10
f3c8bf4
- fix default plugin path for 64 bit arches
f3c8bf4
189cdc0
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.9-4
189cdc0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
189cdc0
f3c8bf4
* Thu Dec  4 2008 Dan Horák <dan[at]danny.cz> - 2.8.9-3
68b9f4e
- remove support for bakefiles, fixes directory ownership (#474594)
68b9f4e
f3c8bf4
* Thu Dec  4 2008 Dan Horak <dan[at]danny.cz> - 2.8.9-2
68f5231
- drop all the Obsoletes/Provides used for upgrading from the wxGTK 2.6 era
68f5231
- drop using of x11libdir pointing to X11R6
68f5231
- create media subpackage for more precise package dependencies
68f5231
3f3685f
* Mon Sep 22 2008 Dan Horak <dan[at]danny.cz> - 2.8.9-1
3f3685f
- update to 2.8.9
3f3685f
26ada7b
* Sat Sep  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.8.8-2
26ada7b
- fix license tag
26ada7b
0ab0d06
* Thu Jul 31 2008 Dan Horak <dan[at]danny.cz> - 2.8.8-1
0ab0d06
- update to 2.8.8 (rh bug #457406)
0ab0d06
2c4c222
* Tue Apr  1 2008 Dan Horak <dan[at]danny.cz> - 2.8.7-2
2c4c222
- added fix for a race condition (rh bug #440011)
2c4c222
33a282f
* Wed Feb 20 2008 Matthew Miller <mattdm@mattdm.org> - 2.8.7-1
33a282f
- update to 2.8.7 (rh bug #369621, etc.)
33a282f
- split base libs into separate wxBase package (rh bug #357961)
33a282f
- okay, so, wxPython 2.8.7.1 seems to work fine against this version of the
33a282f
  library, so I'm dropping the kludgy-patch-to-2.8.7.1 thing. Please report
33a282f
  any compatibility problems with wxPython 2.8.7.1 and I'll fix them as they
33a282f
  come up.
33a282f
e189b3e
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.8.4-7
e189b3e
- Autorebuild for GCC 4.3
e189b3e
e32f149
* Tue Aug 28 2007 Hans de Goede <j.w.r.degoede@hhs.nl> - 2.8.4-6
e32f149
- Rebuild for new expat 2.0
e32f149
168a1ed
* Fri Aug  3 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.4-5
168a1ed
- obsolete all compat-wxGTK subpackages properly (bug #250687)
168a1ed
a4fbc0d
* Mon Jul 16 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.4-4
a4fbc0d
- patch from svn to fix rh bug #247414
a4fbc0d
8b68d53
* Thu Jul 12 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.4-3
8b68d53
- include libwx_gtk2u_media, since I'm now listing the
8b68d53
  buildreqs properly.
8b68d53
6438e16
* Thu Jul 12 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.4-2
6438e16
- buildrequires for libSM-devel, gstreamer-plugins-base-devel,
6438e16
  and GConf2-devel
6438e16
53d8753
* Wed Jul 11 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.4-1
53d8753
- update to 2.8.4
53d8753
- obsolete compat-wxGTK
53d8753
- add -fno-strict-aliasing
53d8753
b3efc29
* Sun Apr 15 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.3-2
b3efc29
- gratuitously bump release number.
b3efc29
ed38886
* Sun Apr 15 2007 Matthew Miller <mattdm@mattdm.org> - 2.8.3-1
b3efc29
- update to 2.8.3.
ed38886
7423ca7
* Sun Dec 17 2006 Matthew Miller <mattdm@mattdm.org> - 2.8.0-2.8.0.1.3
7423ca7
- add --enable-timer to build wxTimer class for XaraLX.
7423ca7
- NOTE: if anyone else needs any non-default classes or features enabled,
7423ca7
  let me know. Thanks!
7423ca7
3e3a810
* Fri Dec 15 2006 Matthew Miller <mattdm@mattdm.org> - 2.8.0-2.8.0.1.2
3e3a810
- buildrequires gettext
3e3a810
6fb80fe
* Thu Dec 14 2006 Matthew Miller <mattdm@mattdm.org> - 2.8.0-2.8.0.1.1
6fb80fe
- patch to 2.8.0.1 wxPython subrelease (following upstream wxPython)
6fb80fe
  from wxWidgets CVS
6fb80fe
6fb80fe
* Thu Dec 14 2006 Matthew Miller <mattdm@mattdm.org> - 2.8.0-2.8.0.0.1
6fb80fe
- update to 2.8.0 release
6fb80fe
- gtk2 is now the default (and gtk1.2 gone -- about time!)
6fb80fe
- compatibility with wxWidgets 2.2 is now gone; add flag to build 2.4 with
6fb80fe
  compatibility, though (now off by default)
6fb80fe
- added "--enable-no_deps" for faster builds
6fb80fe
- added "--enable-intl", because that seems like a good idea
6fb80fe
- added disable-rpath, enable-geometry, enable-graphics_ctx, enable-sound,
6fb80fe
  enable-mediactrl, and enable-display to better match upstream wxPython
6fb80fe
  package.
6fb80fe
- buildrequires: gstreamer-devel
6fb80fe
- "animate" contributed module no longer exists.
6fb80fe
- enable the svg contributed module
6fb80fe
- build the .mo files explicitly -- not sure why that's not happening
6fb80fe
  automatically.
6fb80fe
- minor -- location of doc files in src tarball has changed
6fb80fe
d17bd2b
* Mon Aug 28 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.3-2.6.3.2.3
d17bd2b
- bump release for FC6 rebuild
d17bd2b
5126fd8
* Mon Jul  3 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.3-2.6.3.2.2
5126fd8
- add libGL-devel and libGLU-devel requires to wxGTK-devel package
5126fd8
  (see bug #197501).
5126fd8
0e420ce
* Thu Apr 13 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.3-2.6.3.2.1
0e420ce
- oops -- forgot to change mesa-libGL*-devel -> libGL*-devel
0e420ce
32561e7
* Thu Apr 13 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.3-2.6.3.2.0
32561e7
- patch to cvs subrelease 2.6.3.2 (matches wxPython)
99f3e7a
Mystro256 f2a80d5
* Sat Mar 25 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.3-1
ccebd58
- 2.6.3 final
ccebd58
- remove the locale_install thing -- that was just an issue with using the
ccebd58
  release candidate.
ccebd58
ccebd58
* Tue Mar 21 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.3-0.rc2
ccebd58
- update to 2.6.3-rc2 package
ccebd58
- all patches now upstream -- removing 'em.
ccebd58
- use complete 'wxWidgets' source tarball instead of the wxGTK-subset one,
ccebd58
  since that's all there is for the release candidate. I'm operating under
ccebd58
  the assumption that we'll have a wxGTK source tarball in the future --
ccebd58
  otherwise, I'm going to eventually have to change the name of this
ccebd58
  package again. :)
ccebd58
- add ODBC support via unixODBC as subpackage (see bug #176950)
ccebd58
- wait, no; comment out ODBC support as it doesn't build...
ccebd58
- add explicit make locale_install; apparently not done as part of
ccebd58
  the general 'make install' anymore.
ccebd58
910e149
* Mon Feb 13 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.2-5
910e149
- rebuild in preparation for FC5
910e149
52301ec
* Mon Feb 06 2006 Matthew Miller <mattdm@mattdm.org> - 2.6.2-4
52301ec
- add wxGTK-2.6.2-socketclosefix.patch to fix aMule crashes. see
52301ec
  bugzilla bug #178184
Mystro256 f2a80d5
- add wxGTK-2.6.2-gcc41stringh.patch (pulled from CVS) to make build on
52301ec
  FC5 devel w/ gcc-4.1.
Mystro256 f2a80d5
c839dff
* Wed Nov 30 2005 Matthew Miller <mattdm@mattdm.org> - 2.6.2-3
c839dff
- add wxGTK-2.6.2-intl_cpp.patch to deal with amule and probably other
c839dff
  issues (see bug #154618 comment #47)
c839dff
- obsolete wxGTK2 < 2.6.2-1 specifically, at Matthias Saou's suggestion
c839dff
e4ac7a4
* Mon Nov 28 2005 Matthew Miller <mattdm@mattdm.org> - 2.6.2-2
e4ac7a4
- implemented some suggestions from Matthias Saou:
Mystro256 f2a80d5
-   removed extraneous / from last line of ./configure
e4ac7a4
-   removed -n from setup macro, since we're now actually using the
e4ac7a4
    standard name
e4ac7a4
-   don't use summary macro in opengl subpackage, as it's not clear which
e4ac7a4
    summary should get used
e4ac7a4
-   don't bother setting CC, CXX, etc., as configure script does that
e4ac7a4
-   move libdir/wx to devel subpackage
e4ac7a4
e4ac7a4
* Thu Nov 24 2005 Matthew Miller <mattdm@mattdm.org> - 2.6.2-1
e4ac7a4
- ready for actually putting into Extras
e4ac7a4
- update mesa buildreqs for new split-up xorg packaging
e4ac7a4
- libgnomeprint22-devel -> libgnomeprintui22-devel
e4ac7a4
e4ac7a4
* Tue Oct 04 2005 Toshio Kuratomi <toshio-tiki-lounge.com> - 2.6.2-0.1
e4ac7a4
- Update to 2.6.2.
e4ac7a4
- Include the sample wx bakefiles.
e4ac7a4
- Include new .mo files.
e4ac7a4
- From Paul Johnson:
e4ac7a4
  Change license to wxWidgets due to concerns over trademark infringement.
e4ac7a4
  Add dist tag.
e4ac7a4
- From Tom Callaway: Build and include libwx_gtk2u_animate-2.6.
e4ac7a4
32561e7
* Thu Apr 28 2005 Matthew Miller <mattdm@mattdm.org> 2.6.1-0.1
e4ac7a4
- update to 2.6.1
e4ac7a4
- from Michael Schwendt in 2.4.2-11 package: build-require
e4ac7a4
  xorg-x11-Mesa-libGL and xorg-x11-Mesa-libGLU (the libGL and libGLU
e4ac7a4
  deps aren't provided in FC3, so not using that).
e4ac7a4
- from Thorsten Leemhuis in 2.4.2-12 package: sed -i -e
e4ac7a4
  's|/usr/lib\b|%%{_libdir}|' in configure also to fix x86_64
e4ac7a4
- properly include older 2.4.x changelog
e4ac7a4
e4ac7a4
* Wed Apr 27 2005 Matthew Miller <mattdm@mattdm.org> - 2.6.0-0.1
e4ac7a4
- include libwx_gtk2u_gizmos_xrc in file listing
e4ac7a4
e4ac7a4
* Wed Apr 27 2005 Matthew Miller <mattdm@mattdm.org> - 2.6.0-0.0
e4ac7a4
- update to 2.6.0 final release
e4ac7a4
- configure now wants "--with-gtk=2" instead of "--enable-gtk2".
e4ac7a4
e4ac7a4
* Wed Apr 13 2005 Matthew Miller <mattdm@mattdm.org> - 2.5.5-0.2
e4ac7a4
- removed provides: wxWidgets/wxWidgets devel -- handy for compatibility
Mystro256 f2a80d5
  with unmodified generic source packages, but not so good for
e4ac7a4
  repeatable builds.
e4ac7a4
e4ac7a4
* Wed Apr 13 2005 Matthew Miller <mattdm@mattdm.org> - 2.5.5-0.1
e4ac7a4
- whoops -- forgot to remove a reference to the "common" package
e4ac7a4
- version-release for obsoletes/provides
e4ac7a4
e4ac7a4
* Tue Apr 12 2005 Matthew Miller <mattdm@mattdm.org> - 2.5.5-0
e4ac7a4
- remove BU-specific oddities for fedora an idea for a simplied future....
e4ac7a4
e4ac7a4
* Tue Apr 12 2005 Matthew Miller <mattdm@bu.edu> - 2.5.5-bu45.2
e4ac7a4
- whoops -- forgot "Provides: wxGTK2-devel".
e4ac7a4
e4ac7a4
* Tue Apr 12 2005 Matthew Miller <mattdm@bu.edu> - 2.5.5-bu45.1
e4ac7a4
- update to 2.5.5
e4ac7a4
e4ac7a4
* Sat Mar  5 2005 Matthew Miller <mattdm@bu.edu> - 2.5.4-bu45.3
e4ac7a4
- Obsolete & provide GTK-xrc, wxGTK-stc, to provide clean upgrade path
e4ac7a4
e4ac7a4
* Tue Mar  1 2005 Matthew Miller <mattdm@bu.edu> - 2.5.4-bu45.2
e4ac7a4
- enable wxWindows 2.2 compatibility (for compatibility with 2.4 rpm,
e4ac7a4
  ironically).
e4ac7a4
e4ac7a4
* Tue Mar  1 2005 Matthew Miller <mattdm@bu.edu> - 2.5.4-bu45.1
e4ac7a4
- update to 2.5.4 -- the devel version is where all the fun is.
e4ac7a4
- rebase to updated FE 2.4.2 package
e4ac7a4
- license isn't "BSD" -- it's "wxWindows Library Licence".
e4ac7a4
- make gtk2-only -- gtk 1.0.x is no longer supported, and 1.2.x is
e4ac7a4
  being phased out. 2.x is the way to go.
e4ac7a4
- all current patches no longer necessary (upstream)
e4ac7a4
- roll "common" subpackage in to main package -- no longer makes sense
e4ac7a4
  to split it out with gtk+ gone
e4ac7a4
- use SDL, which will make this use Alsa for sound. I believe.
e4ac7a4
- add gnomeprint support
e4ac7a4
- add enable-debug_info for debuginfo package
e4ac7a4
- enable unicode
e4ac7a4
- use GDK_USE_XFT to enable Pango and fontconfig
e4ac7a4
- xrc moved from contrib to base -- making it no longer a subpackage
e4ac7a4
- making stc part of base too -- it's tiny, and doesn't introduce any
e4ac7a4
  additional deps
e4ac7a4
- leaving gl as a subpackage, though, since it's the only part that
e4ac7a4
  requires GL libs.
e4ac7a4
- add 'ogl' 2d drawing lib from contrib (needed for wxPython)
e4ac7a4
- add 'gizmos' from contrib (needed for wxPython)
e4ac7a4
- make wx-config actually part of the package, since there's no need
e4ac7a4
  to mess with moving it around
e4ac7a4
- the various afm fonts are gone in 2.5....
e4ac7a4
- use configure macro
e4ac7a4
- add provides for wxWidgets and wxWidgets-devel, because that
e4ac7a4
  seems like a good idea.
3acae33
4989da5
* Sun Jan 23 2005 Ville Skyttä <ville.skytta at iki.fi> - 2.4.2-8
4989da5
- Fix wx-config for x86_64 (#145508).
4989da5
- Honor $RPM_OPT_FLAGS better, as well as %%{__cc} and %%{__cxx}.
4989da5
0a210f3
* Mon Dec  6 2004 Ville Skyttä <ville.skytta at iki.fi> - 2.4.2-7
0a210f3
- Patch to avoid aclocal >= 1.8 warnings from wxwin.m4.
0a210f3
- Move unversioned *.so links for -gl, -stc and -xrc to -devel, make -devel
0a210f3
  require them.
0a210f3
6e37475
* Wed Nov 10 2004 Matthias Saou <http://freshrpms.net/> 2.4.2-6
6e37475
- Bump release to provide Extras upgrade path.
6e37475
- Fix spaces/tabs in spec.
6e37475
- Remove unneeded zero epochs.
6e37475
- Add full source URL.
6e37475
cvsextras 0bb0464
* Tue Jun 22 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.4.2-0.fdr.2
cvsextras 0bb0464
- s/wxWindows/wxWidgets/
cvsextras 0bb0464
- Fix release tag.
cvsextras 0bb0464
cvsextras 0bb0464
* Sat May 22 2004 Noa Resare <noa@resare.com> - 0:2.4.2-0.fdr.1.3
cvsextras 0bb0464
- Merged fix from wxGTK cvs head, now works with recent gtk2
cvsextras 0bb0464
cvsextras a0cffa7
* Sat Oct 11 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.4.2-0.fdr.1
cvsextras a0cffa7
- Update to 2.4.2.
cvsextras a0cffa7
cvsextras 9ac3e73
* Mon Aug  4 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.4.1-0.fdr.4
cvsextras 9ac3e73
- Borrow Matthias Saou's -gl and -stc subpackages.
cvsextras 9ac3e73
cvsextras 9ac3e73
* Mon Jun 16 2003 Dams <anvil[AT]livna.org> 0:2.4.1-0.fdr.3
cvsextras 9ac3e73
- Removed libwx_gtk2_xrc*so* from wxGTK2/wxGTK2-devel packages
cvsextras 9ac3e73
cvsextras 9ac3e73
* Sun Jun 15 2003 Dams <anvil[AT]livna.org> 0:2.4.1-0.fdr.2
cvsextras 9ac3e73
- Removed *-devel postun scriptlets (from Ville Skyttä)
cvsextras 9ac3e73
cvsextras 9ac3e73
* Sat Jun 14 2003 Dams <anvil[AT]livna.org> 0:2.4.1-0.fdr.1
cvsextras 9ac3e73
- Updated to 2.4.1
cvsextras 9ac3e73
cvsextras 9ac3e73
* Wed May 28 2003 Dams <anvil[AT]livna.org> 0:2.4.0-0.fdr.7
cvsextras 9ac3e73
- Added xrc contrib in separate packages
cvsextras 9ac3e73
cvsextras 9ac3e73
* Wed May 21 2003 Dams <anvil[AT]livna.org> 0:2.4.0-0.fdr.6
cvsextras 9ac3e73
- Corrected typo in postun devel
cvsextras 9ac3e73
cvsextras 9ac3e73
* Wed May 21 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.4.0-0.fdr.5
cvsextras 9ac3e73
- Make -devel packages require the corresponding GTK devel package.
cvsextras 9ac3e73
- Save .spec in UTF-8.
cvsextras 9ac3e73
- Fixes from Dams:
cvsextras 9ac3e73
- Don't build --with-unicode, it breaks stuff (as was already noted by Dams).
cvsextras 9ac3e73
- Don't remove wx-config symlinks on upgrades.
cvsextras 9ac3e73
- Remove duplicates from docs.
cvsextras 9ac3e73
cvsextras 9ac3e73
* Tue May 20 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.4.0-0.fdr.4
cvsextras 9ac3e73
- Split into subpackages, spec file rewrite.
cvsextras 9ac3e73
- Use bzipped upstream tarball.
cvsextras 9ac3e73
- Clean up BuildRequirement versions.
cvsextras 9ac3e73
cvsextras 9ac3e73
* Fri May  9 2003 Dams <anvil[AT]livna.org> 0:2.4.0-0.fdr.3
cvsextras 9ac3e73
- Now build/include both gtk/gtk2 libs
cvsextras 9ac3e73
- buildroot -> RPM_BUILD_ROOT
cvsextras 9ac3e73
a24ae7a
* Mon Mar  3 2003 Dams <anvil@livna.org>
cvsextras 9ac3e73
- Initial build.
cvsextras 9ac3e73
- Disable unicode as it breaks lmule
ffd325b
- use the %%find_lang macro for locale