fixes after wx-config and other changes (patch 1076156)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
40
wxGTK.spec
40
wxGTK.spec
@@ -8,7 +8,7 @@
|
|||||||
%{?_with_unicode: %{expand: %%define unicode 1}}
|
%{?_with_unicode: %{expand: %%define unicode 1}}
|
||||||
%{?_without_unicode: %{expand: %%define unicode 0}}
|
%{?_without_unicode: %{expand: %%define unicode 0}}
|
||||||
|
|
||||||
%define gtk2 0
|
%define gtk2 1
|
||||||
%{?_with_gtk2: %{expand: %%define gtk2 1}}
|
%{?_with_gtk2: %{expand: %%define gtk2 1}}
|
||||||
%{?_without_gtk2: %{expand: %%define gtk2 0}}
|
%{?_without_gtk2: %{expand: %%define gtk2 0}}
|
||||||
|
|
||||||
@@ -29,9 +29,11 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{unicode}
|
%if %{unicode}
|
||||||
%define wxconfigname wx%{portname}u-%{ver2}-config
|
%define wxconfigname %{portname}-unicode-release-%{ver2}
|
||||||
|
%define wxconfiglinkname wx%{portname}u-%{ver2}-config
|
||||||
%else
|
%else
|
||||||
%define wxconfigname wx%{portname}-%{ver2}-config
|
%define wxconfigname %{portname}-ansi-release-%{ver2}
|
||||||
|
%define wxconfiglinkname wx%{portname}-%{ver2}-config
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
@@ -125,8 +127,8 @@ cd obj-shared
|
|||||||
%else
|
%else
|
||||||
--with-odbc \
|
--with-odbc \
|
||||||
%endif
|
%endif
|
||||||
%if %{gtk2}
|
%if ! %{gtk2}
|
||||||
--enable-gtk2 \
|
--disable-gtk2 \
|
||||||
%endif
|
%endif
|
||||||
--with-opengl
|
--with-opengl
|
||||||
$MAKE
|
$MAKE
|
||||||
@@ -142,8 +144,8 @@ cd obj-static
|
|||||||
%else
|
%else
|
||||||
--with-odbc \
|
--with-odbc \
|
||||||
%endif
|
%endif
|
||||||
%if %{gtk2}
|
%if ! %{gtk2}
|
||||||
--enable-gtk2 \
|
--disable-gtk2 \
|
||||||
%endif
|
%endif
|
||||||
--with-opengl
|
--with-opengl
|
||||||
$MAKE
|
$MAKE
|
||||||
@@ -298,7 +300,7 @@ for f in `cat wxbase-headers-list` ; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# list of all core headers:
|
# list of all core headers:
|
||||||
find $RPM_BUILD_ROOT/usr/include/wx -type f | sed -e "s,$RPM_BUILD_ROOT,,g" >core-headers.files
|
find $RPM_BUILD_ROOT/usr/include/wx-* -type f | sed -e "s,$RPM_BUILD_ROOT,,g" >core-headers.files
|
||||||
|
|
||||||
# contrib stuff:
|
# contrib stuff:
|
||||||
(cd obj-shared/contrib/src; make prefix=$RPM_BUILD_ROOT%{pref} install)
|
(cd obj-shared/contrib/src; make prefix=$RPM_BUILD_ROOT%{pref} install)
|
||||||
@@ -306,6 +308,7 @@ find $RPM_BUILD_ROOT/usr/include/wx -type f | sed -e "s,$RPM_BUILD_ROOT,,g" >cor
|
|||||||
|
|
||||||
# remove wxBase files so that RPM doesn't complain about unpackaged files:
|
# remove wxBase files so that RPM doesn't complain about unpackaged files:
|
||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/libwx_base*
|
rm -f $RPM_BUILD_ROOT%{_libdir}/libwx_base*
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_libdir}/libwxregexu-%{ver2}.a
|
||||||
rm -f $RPM_BUILD_ROOT%{_datadir}/aclocal/*
|
rm -f $RPM_BUILD_ROOT%{_datadir}/aclocal/*
|
||||||
rm -f $RPM_BUILD_ROOT%{_datadir}/locale/*/*/*
|
rm -f $RPM_BUILD_ROOT%{_datadir}/locale/*/*/*
|
||||||
|
|
||||||
@@ -324,6 +327,22 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%postun gl
|
%postun gl
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
%post devel
|
||||||
|
# link wx-config when you install RPM.
|
||||||
|
ln -sf %{_libdir}/wx/config/%{wxconfigname} %{_bindir}/wx-config
|
||||||
|
# link wx-config with explicit name.
|
||||||
|
ln -sf %{_libdir}/wx/config/%{wxconfigname} %{_bindir}/%{wxconfiglinkname}
|
||||||
|
|
||||||
|
%preun devel
|
||||||
|
if test -f %{_bindir}/wx-config -a -f /usr/bin/md5sum ; then
|
||||||
|
SUM1=`md5sum %{_libdir}/wx/config/%{wxconfigname} | cut -c 0-32`
|
||||||
|
SUM2=`md5sum %{_bindir}/wx-config | cut -c 0-32`
|
||||||
|
if test "x$SUM1" = "x$SUM2" ; then
|
||||||
|
rm -f %{_bindir}/wx-config
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f %{_bindir}/%{wxconfiglinkname}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@@ -333,6 +352,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/libwx_%{portname}*_core*.so.*
|
%{_libdir}/libwx_%{portname}*_core*.so.*
|
||||||
%{_libdir}/libwx_%{portname}*_html*.so.*
|
%{_libdir}/libwx_%{portname}*_html*.so.*
|
||||||
%{_libdir}/libwx_%{portname}*_adv*.so.*
|
%{_libdir}/libwx_%{portname}*_adv*.so.*
|
||||||
|
%{_libdir}/libwx_%{portname}*_media*.so.*
|
||||||
%if !%{unicode}
|
%if !%{unicode}
|
||||||
%{_libdir}/libwx_%{portname}*_dbgrid*.so.*
|
%{_libdir}/libwx_%{portname}*_dbgrid*.so.*
|
||||||
%endif
|
%endif
|
||||||
@@ -342,13 +362,13 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/libwx_%{portname}*_core*.so
|
%{_libdir}/libwx_%{portname}*_core*.so
|
||||||
%{_libdir}/libwx_%{portname}*_html*.so
|
%{_libdir}/libwx_%{portname}*_html*.so
|
||||||
%{_libdir}/libwx_%{portname}*_adv*.so
|
%{_libdir}/libwx_%{portname}*_adv*.so
|
||||||
|
%{_libdir}/libwx_%{portname}*_media*.so
|
||||||
%if !%{unicode}
|
%if !%{unicode}
|
||||||
%{_libdir}/libwx_%{portname}*_dbgrid*.so
|
%{_libdir}/libwx_%{portname}*_dbgrid*.so
|
||||||
%endif
|
%endif
|
||||||
%{_libdir}/libwx_%{portname}*_gl*.so
|
%{_libdir}/libwx_%{portname}*_gl*.so
|
||||||
%dir %{_libdir}/wx
|
%dir %{_libdir}/wx
|
||||||
%{_libdir}/wx/*
|
%{_libdir}/wx/*
|
||||||
%{_bindir}/%{wxconfigname}
|
|
||||||
|
|
||||||
%files gl
|
%files gl
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@@ -373,7 +393,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files contrib-devel
|
%files contrib-devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/wxrc
|
%{_bindir}/wxrc*
|
||||||
%dir %{_includedir}/wx-*/wx/animate
|
%dir %{_includedir}/wx-*/wx/animate
|
||||||
%{_includedir}/wx-*/wx/animate/*
|
%{_includedir}/wx-*/wx/animate/*
|
||||||
%{_libdir}/libwx_%{portname}*_animate*.so
|
%{_libdir}/libwx_%{portname}*_animate*.so
|
||||||
|
Reference in New Issue
Block a user