rpms/wxGTK/devel wxGTK.spec,1.7,1.8

Ville Skytta (scop) fedora-extras-commits at redhat.com
Sun Jan 23 19:37:00 UTC 2005


Author: scop

Update of /cvs/extras/rpms/wxGTK/devel
In directory cvs.fedora.redhat.com:/tmp/cvs-serv14021

Modified Files:
	wxGTK.spec 
Log Message:
Fix wx-config for x86_64 (#145508), honor $RPM_OPT_FLAGS, %{__cc} and %{__cxx}.


Index: wxGTK.spec
===================================================================
RCS file: /cvs/extras/rpms/wxGTK/devel/wxGTK.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- wxGTK.spec	6 Dec 2004 11:02:41 -0000	1.7
+++ wxGTK.spec	23 Jan 2005 19:36:58 -0000	1.8
@@ -1,6 +1,8 @@
+%define x11libdir %{_prefix}/X11R6/%{_lib}
+
 Name:           wxGTK
 Version:        2.4.2
-Release:        7
+Release:        8
 Summary:        GTK+ port of the wxWidgets GUI library
 License:        BSD
 Group:          System Environment/Libraries
@@ -132,19 +134,27 @@
 %setup -q -n %{name}-%{version}
 %patch0 -p1 -b .privates
 %patch1 -b .aclocal18
+sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in
 
 
 %build
 mkdir _gtk1 _gtk2
-export APPEXTRACFLAGS="$RPM_OPT_FLAGS"
-export APPEXTRACXXFLAGS="$RPM_OPT_FLAGS"
+export CC="%{__cc}"
+export CXX="%{__cxx}"
+export CFLAGS="$RPM_OPT_FLAGS"
+export CXXFLAGS="$RPM_OPT_FLAGS"
+# --disable-optimise prevents our $RPM_OPT_FLAGS being overridden
+# (see OPTIMISE in configure).
 
 cd _gtk1
 ../configure \
   --prefix=%{_prefix} \
+  --libdir=%{_libdir} \
+  --x-libraries=%{x11libdir} \
   --with-opengl \
   --enable-shared \
-  --enable-soname
+  --enable-soname \
+  --disable-optimise
 make %{?_smp_mflags}
 make %{?_smp_mflags} -C contrib/src/stc
 make %{?_smp_mflags} -C contrib/src/xrc
@@ -152,9 +162,12 @@
 cd ../_gtk2
 ../configure \
   --prefix=%{_prefix} \
+  --libdir=%{_libdir} \
+  --x-libraries=%{x11libdir} \
   --with-opengl \
   --enable-shared \
   --enable-soname \
+  --disable-optimise \
   --enable-gtk2
 make %{?_smp_mflags}
 make %{?_smp_mflags} -C contrib/src/stc
@@ -166,6 +179,9 @@
 %install
 rm -rf $RPM_BUILD_ROOT
 
+# Since we're not using %%configure, we would really like to use
+# "make install DESTDIR=..." instead of %%makeinstall here to keep things in
+# sync.  Unfortunately that does not work.
 cd _gtk1
 %makeinstall
 %makeinstall -C contrib/src/stc
@@ -276,6 +292,10 @@
 
 
 %changelog
+* Sun Jan 23 2005 Ville Skyttä <ville.skytta at iki.fi> - 2.4.2-8
+- Fix wx-config for x86_64 (#145508).
+- Honor $RPM_OPT_FLAGS better, as well as %%{__cc} and %%{__cxx}.
+
 * Mon Dec  6 2004 Ville Skyttä <ville.skytta at iki.fi> - 2.4.2-7
 - Patch to avoid aclocal >= 1.8 warnings from wxwin.m4.
 - Move unversioned *.so links for -gl, -stc and -xrc to -devel, make -devel




More information about the fedora-extras-commits mailing list