2000-07-15 15:51:35 -04:00
|
|
|
# RPM .spec file for wxMotif. Based on the .spec file for wxGTK
|
|
|
|
# (c) by Robert Roebling. Modifications (c) 2000/03 by Robert Fendt.
|
|
|
|
|
1999-06-22 14:51:25 -04:00
|
|
|
# Note that this is NOT a relocatable package
|
|
|
|
%define pref /usr
|
2002-12-05 06:08:08 -05:00
|
|
|
%define ver 2.5.0
|
|
|
|
%define ver2 2.5
|
2001-06-06 12:50:48 -04:00
|
|
|
%define rel 1
|
1999-06-22 14:51:25 -04:00
|
|
|
|
2003-08-20 11:14:12 -04:00
|
|
|
%define portname motif
|
|
|
|
%define name wx-%{portname}
|
|
|
|
%define wxbasename wx-base
|
|
|
|
%define wxconfigname wx%{portname}-%{ver2}-config
|
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
Summary: The Motif/Lesstif port of the wxWindows library
|
2003-08-20 11:14:12 -04:00
|
|
|
Name: %{name}
|
1999-06-22 14:51:25 -04:00
|
|
|
Version: %{ver}
|
|
|
|
Release: %{rel}
|
2003-08-20 11:14:12 -04:00
|
|
|
License: wxWindows Licence
|
1999-06-22 14:51:25 -04:00
|
|
|
Group: X11/Libraries
|
2001-11-20 18:56:43 -05:00
|
|
|
Source: wxMOTIF-%{ver}.tar.bz2
|
2000-07-15 15:51:35 -04:00
|
|
|
URL: http://www.wxwindows.org
|
|
|
|
Packager: Robert Fendt <rfendt@myokay.net>
|
1999-06-22 14:51:25 -04:00
|
|
|
BuildRoot: /tmp/wxmotif_root
|
|
|
|
|
|
|
|
# all packages providing an implementation of wxWindows library (regardless of
|
|
|
|
# the toolkit used) should provide the (virtual) wxwin package, this makes it
|
2001-08-25 10:52:26 -04:00
|
|
|
# possible to require wxwin instead of requiring "wxgtk or wxmotif or wxuniv..."
|
1999-06-22 14:51:25 -04:00
|
|
|
Provides: wxwin
|
|
|
|
|
2003-08-20 11:14:12 -04:00
|
|
|
Provides: wxMotif
|
|
|
|
|
|
|
|
Requires: %{wxbasename} = %{ver}
|
|
|
|
BuildRequires: %{wxbasename}-devel = %{ver}
|
|
|
|
|
1999-06-22 14:51:25 -04:00
|
|
|
%description
|
|
|
|
wxWindows is a free C++ library for cross-platform GUI development.
|
|
|
|
With wxWindows, you can create applications for different GUIs (GTK+,
|
|
|
|
Motif/LessTif, MS Windows, Mac) from the same source code.
|
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
%package devel
|
|
|
|
Summary: The Motif/Lesstif port of the wxWindows library
|
|
|
|
Group: X11/Libraries
|
2003-08-20 11:14:12 -04:00
|
|
|
Requires: %{name} = %{ver}
|
|
|
|
Requires: %{wxbasename}-devel = %{ver}
|
2000-07-15 15:51:35 -04:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Header files for wxMotif, the Motif/Lesstif port of the wxWindows library.
|
|
|
|
|
|
|
|
%package gl
|
2001-11-21 19:29:44 -05:00
|
|
|
Summary: The Motif/Lesstif port of the wxWindows library, OpenGL add-on.
|
2000-07-15 15:51:35 -04:00
|
|
|
Group: X11/Libraries
|
2003-08-20 11:14:12 -04:00
|
|
|
Requires: %{name} = %{ver}
|
2000-07-15 15:51:35 -04:00
|
|
|
|
|
|
|
%description gl
|
2001-11-21 19:29:44 -05:00
|
|
|
OpenGL add-on library for wxMotif, the Motif/Lesstif port of the wxWindows library.
|
|
|
|
|
|
|
|
%package static
|
|
|
|
Summary: wxMotif static libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
%description static
|
|
|
|
Static libraries for wxMotif. You need them if you want to link statically against wxMotif.
|
|
|
|
|
1999-06-22 14:51:25 -04:00
|
|
|
%prep
|
2003-08-20 11:14:12 -04:00
|
|
|
%setup -q -n wxMOTIF-%{ver}
|
1999-06-22 14:51:25 -04:00
|
|
|
|
|
|
|
%build
|
2000-07-15 15:51:35 -04:00
|
|
|
if [ "$SMP" != "" ]; then
|
|
|
|
export MAKE="make -j$SMP"
|
|
|
|
else
|
|
|
|
export MAKE="make"
|
|
|
|
fi
|
2001-11-21 19:29:44 -05:00
|
|
|
|
|
|
|
mkdir obj-shared
|
|
|
|
cd obj-shared
|
2003-06-25 15:54:06 -04:00
|
|
|
../configure --prefix=%{pref} --with-odbc --with-opengl --with-motif
|
2000-07-15 15:51:35 -04:00
|
|
|
$MAKE
|
2001-11-21 19:29:44 -05:00
|
|
|
cd ..
|
|
|
|
|
|
|
|
mkdir obj-static
|
|
|
|
cd obj-static
|
|
|
|
../configure --prefix=%{pref} --disable-shared --with-odbc --with-opengl --with-motif
|
|
|
|
$MAKE
|
|
|
|
cd ..
|
1999-06-22 14:51:25 -04:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2001-11-21 19:29:44 -05:00
|
|
|
(cd obj-static; make prefix=$RPM_BUILD_ROOT%{pref} install)
|
|
|
|
(cd obj-shared; make prefix=$RPM_BUILD_ROOT%{pref} install)
|
1999-06-22 14:51:25 -04:00
|
|
|
|
2003-08-20 11:14:12 -04:00
|
|
|
# Remove headers that are part of wx-base-devel:
|
|
|
|
(
|
|
|
|
cd $RPM_BUILD_ROOT
|
|
|
|
for f in `rpm -ql %{wxbasename}-devel | sed -e 's,\(.*\),.\1,g'` ; do
|
|
|
|
if test -f $f ; then rm -f $f ; fi
|
|
|
|
done
|
|
|
|
)
|
|
|
|
|
|
|
|
# list of all core headers:
|
|
|
|
find $RPM_BUILD_ROOT/usr/include/wx -type f | sed -e "s,$RPM_BUILD_ROOT,,g" >core-headers.files
|
|
|
|
|
2001-11-22 18:55:21 -05:00
|
|
|
|
1999-06-22 14:51:25 -04:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
2001-11-20 18:56:43 -05:00
|
|
|
%post gl
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun gl
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%post devel
|
|
|
|
# Install wx-config if there isn't any
|
|
|
|
if test ! -f %{_bindir}/wx-config ; then
|
2003-08-20 11:14:12 -04:00
|
|
|
ln -sf %{wxconfigname} %{_bindir}/wx-config
|
2001-11-20 18:56:43 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
%preun devel
|
|
|
|
# Remove wx-config if it points to this package
|
|
|
|
if test -f %{_bindir}/wx-config -a -f /usr/bin/md5sum ; then
|
2003-08-20 11:14:12 -04:00
|
|
|
SUM1=`md5sum %{_bindir}/%{wxconfigname} | cut -c 0-32`
|
2001-11-20 18:56:43 -05:00
|
|
|
SUM2=`md5sum %{_bindir}/wx-config | cut -c 0-32`
|
|
|
|
if test "x$SUM1" = "x$SUM2" ; then
|
|
|
|
rm -f %{_bindir}/wx-config
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2003-08-20 11:14:12 -04:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2001-11-20 18:56:43 -05:00
|
|
|
%doc COPYING.LIB *.txt
|
|
|
|
%dir %{_datadir}/wx
|
|
|
|
%{_datadir}/wx/*
|
2003-08-20 11:14:12 -04:00
|
|
|
%{_libdir}/libwx_%{portname}*_core*.so.*
|
|
|
|
%{_libdir}/libwx_%{portname}*_html*.so.*
|
|
|
|
%{_libdir}/libwx_%{portname}*_adv*.so.*
|
|
|
|
%{_libdir}/libwx_%{portname}*_dbgrid*.so.*
|
2000-07-15 15:51:35 -04:00
|
|
|
|
2003-08-20 11:14:12 -04:00
|
|
|
%files devel -f core-headers.files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libwx_%{portname}*_core*.so
|
|
|
|
%{_libdir}/libwx_%{portname}*_html*.so
|
|
|
|
%{_libdir}/libwx_%{portname}*_adv*.so
|
|
|
|
%{_libdir}/libwx_%{portname}*_dbgrid*.so
|
|
|
|
%{_libdir}/libwx_%{portname}*_gl*.so
|
2001-11-20 18:56:43 -05:00
|
|
|
%dir %{_libdir}/wx
|
|
|
|
%{_libdir}/wx/*
|
2003-08-20 11:14:12 -04:00
|
|
|
%{_bindir}/%{wxconfigname}
|
1999-06-22 14:51:25 -04:00
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
%files gl
|
2001-11-20 18:56:43 -05:00
|
|
|
%defattr(-,root,root)
|
2003-08-20 11:14:12 -04:00
|
|
|
%{_libdir}/libwx_%{portname}*_gl*.so.*
|
2001-11-21 19:29:44 -05:00
|
|
|
|
|
|
|
%files static
|
|
|
|
%defattr (-,root,root)
|
2003-08-20 11:14:12 -04:00
|
|
|
%{_libdir}/libwx_%{portname}*.a
|