libqt5-qttools/libqt5-qttools.spec

170 lines
5.5 KiB
RPMSpec

#
# spec file for package libqt5-qttools
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libqt5-qttools
BuildRequires: fdupes
Version: 5.1.0
Release: 0
%define base_name libqt5
%define real_version 5.1.0
%define so_version 5.1.0
%define tar_version qttools-opensource-src-%{real_version}
BuildRequires: libQt5Quick-private-headers-devel
BuildRequires: libQt5WebKitWidgets-devel >= 5.1.0
BuildRequires: libxslt-devel
BuildRequires: update-desktop-files
BuildRequires: xz
Url: http://qt.digia.com
Summary: Qt 5 QtTools Module
License: SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
Group: Development/Libraries/X11
Source: %{tar_version}.tar.xz
Source10: qt5config.desktop
Source11: designer5.desktop
Source12: linguist5.desktop
Source13: assistant5.desktop
Source14: assistant5.png
Source15: designer5.png
Source16: linguist5.png
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Qt is a set of libraries for developing applications.
This package contains base tools, like string, xml, and network handling.
%prep
%setup -q -n qttools-opensource-src-%{real_version}
%package devel
Summary: Qt Development Kit
Group: Development/Libraries/X11
Requires: %name = %version
Requires: libQt5Quick-devel
Requires: libxslt-devel
Requires: libQt5WebKitWidgets-devel >= 5.1.0
%description devel
You need this package, if you want to compile programs with qttools.
%package private-headers-devel
Summary: Non-ABI stable experimental API
Group: Development/Libraries/C and C++
Requires: %name-devel = %version
Requires: libQt5Quick-private-headers-devel
%description private-headers-devel
This package provides private headers of libqt5-qttools that are normally
not used by application development and that do not have any ABI or
API guarantees. The packages that build against these have to require
the exact Qt version.
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%build
export PATH=%_libqt5_bindir:$PATH
%ifarch ppc64
RPM_OPT_FLAGS="$RPM_OPT_FLAGS -mminimal-toc"
%endif
export CXXFLAGS="$CXXFLAGS $RPM_OPT_FLAGS -DOPENSSL_LOAD_CONF"
export CFLAGS="$CFLAGS $RPM_OPT_FLAGS -DOPENSSL_LOAD_CONF"
export MAKEFLAGS="%{?jobs:-j %jobs}"
qmake
make
%install
make INSTALL_ROOT=$RPM_BUILD_ROOT install
find $RPM_BUILD_ROOT/%_libdir -type f -name '*la' -print -exec perl -pi -e 's, -L%{_builddir}/\S+,,g' {} \;
find $RPM_BUILD_ROOT/%_libdir -type f -name '*pc' -print -exec perl -pi -e "s, -L$RPM_BUILD_DIR/?\S+,,g" {} \; -exec sed -i -e "s,^moc_location=.*,moc_location=%{_libqt5_bindir}/moc," -e "s,uic_location=.*,uic_location=%{_libqt5_bindir}/uic," {} \;
%fdupes $RPM_BUILD_ROOT/%{_libqt5_includedir}
# put all the binaries to %_bindir, add -qt5 suffix, and symlink them back to %_qt5_bindir
mkdir %{buildroot}%{_bindir}
pushd %{buildroot}%{_libqt5_bindir}
for i in * ; do
mv $i ../../../bin/${i}-qt5
ln -s ../../../bin/${i}-qt5 .
ln -s ../../../bin/${i}-qt5 $i
done
popd
#
# install menu entries
#
##%suse_update_desktop_file -i qt5config Qt Utility DesktopSettings
##%suse_update_desktop_file -i designer5 Qt Development GUIDesigner
##%suse_update_desktop_file -i linguist5 Qt Development Translation
##%suse_update_desktop_file -i assistant5 Qt Development Documentation
##mkdir -p $RPM_BUILD_ROOT/usr/share/doc/packages/libqt5
##cp -a src/assistant/assistant/assistant.qch $RPM_BUILD_ROOT/usr/share/doc/packages/libqt5/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,755)
%_bindir/*
%{_libqt5_bindir}/*
%_datadir/applications/*.desktop
%_datadir/pixmaps/*.png
%{_libqt5_libdir}/libQt5CLucene.so.*
%{_libqt5_libdir}/libQt5Designer.so.*
%{_libqt5_libdir}/libQt5DesignerComponents.so.*
%{_libqt5_libdir}/libQt5Help.so.*
%{_libqt5_libdir}/qt5/plugins/designer
#%_docdir/packages/libqt5
%files private-headers-devel
%defattr(-,root,root,755)
%{_libqt5_includedir}/QtCLucene/5.1.0
%{_libqt5_includedir}/QtDesigner/5.1.0
%{_libqt5_includedir}/QtDesignerComponents/5.1.0
%{_libqt5_includedir}/QtHelp/5.1.0
%{_libqt5_includedir}/QtUiTools/5.1.0
%files devel
%defattr(-,root,root,755)
%exclude %{_libqt5_includedir}/QtCLucene/5.1.0
%{_libqt5_includedir}/QtCLucene
%exclude %{_libqt5_includedir}/QtDesigner/5.1.0
%{_libqt5_includedir}/QtDesigner
%exclude %{_libqt5_includedir}/QtDesignerComponents/5.1.0
%{_libqt5_includedir}/QtDesignerComponents
%exclude %{_libqt5_includedir}/QtHelp/5.1.0
%{_libqt5_includedir}/QtHelp
%exclude %{_libqt5_includedir}/QtUiTools/5.1.0
%{_libqt5_includedir}/QtUiTools
%{_libqt5_libdir}/cmake/Qt5*
%{_libqt5_libdir}/libQt5*.la
%{_libqt5_libdir}/libQt5*.prl
%{_libqt5_libdir}/libQt5*.so
%{_libqt5_libdir}/libQt5*.a
%{_libqt5_libdir}/pkgconfig/Qt5*.pc
%{_libqt5_archdatadir}/mkspecs/modules/qt_lib_*.pri
%dir %_datadir/qt5
%_datadir/qt5/phrasebooks
%changelog