2010-05-25 18:31:48 +02:00
|
|
|
#
|
2011-05-26 15:31:30 +02:00
|
|
|
# spec file for package cmake-gui
|
2010-05-25 18:31:48 +02:00
|
|
|
#
|
2014-01-29 09:47:50 +01:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2010-05-25 18:31:48 +02:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
2012-04-19 10:52:56 +02:00
|
|
|
|
2010-05-25 18:31:48 +02:00
|
|
|
Name: cmake-gui
|
2014-09-12 19:05:25 +02:00
|
|
|
Version: 3.0.2
|
2012-01-25 19:09:37 +01:00
|
|
|
Release: 0
|
2010-05-25 18:31:48 +02:00
|
|
|
Summary: CMake graphical user interface
|
2012-01-25 19:09:37 +01:00
|
|
|
License: BSD-3-Clause
|
|
|
|
Group: Development/Tools/Building
|
2014-06-21 12:43:44 +02:00
|
|
|
Url: http://www.cmake.org/
|
|
|
|
Source0: http://www.cmake.org/files/v3.0/cmake-%{version}.tar.gz
|
|
|
|
BuildRequires: curl-devel
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: fdupes
|
2014-06-21 12:43:44 +02:00
|
|
|
BuildRequires: gcc-c++
|
2012-11-02 15:31:52 +01:00
|
|
|
BuildRequires: libarchive-devel
|
|
|
|
BuildRequires: libexpat-devel
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: openssl-devel
|
2014-07-02 15:04:50 +02:00
|
|
|
BuildRequires: python-sphinx
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: update-desktop-files
|
|
|
|
BuildRequires: zlib-devel
|
2014-03-06 10:36:53 +01:00
|
|
|
BuildRequires: pkgconfig(bzip2)
|
2010-05-25 18:31:48 +02:00
|
|
|
Requires: cmake
|
2014-07-03 10:00:27 +02:00
|
|
|
Recommends: cmake-man
|
2014-06-21 12:43:44 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%if 0%{?suse_version} >= 1320
|
|
|
|
BuildRequires: pkgconfig(Qt5Widgets)
|
|
|
|
%else
|
|
|
|
BuildRequires: libqt4-devel
|
|
|
|
%endif
|
2010-05-25 18:31:48 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
This is a Graphical User Interface for CMake, a cross-platform,
|
2014-06-11 12:42:34 +02:00
|
|
|
open-source build system.
|
2010-05-25 18:31:48 +02:00
|
|
|
|
2014-07-03 10:00:27 +02:00
|
|
|
%package -n cmake-man
|
|
|
|
Summary: Cross-platform, open-source make system - manual pages
|
|
|
|
Group: Development/Tools/Building
|
|
|
|
|
|
|
|
%description -n cmake-man
|
|
|
|
Manual pages for cmake, Cross-platform, open-source make system
|
|
|
|
|
2010-05-25 18:31:48 +02:00
|
|
|
%prep
|
2014-06-21 14:59:46 +02:00
|
|
|
%setup -q -n cmake-%{version}
|
2011-05-26 15:31:30 +02:00
|
|
|
|
2010-05-25 18:31:48 +02:00
|
|
|
%build
|
|
|
|
EXTRA_FLAGS="--qt-gui"
|
2014-06-21 12:43:44 +02:00
|
|
|
export CXXFLAGS="%{optflags}"
|
2010-05-25 18:31:48 +02:00
|
|
|
export CFLAGS="$CXXFLAGS"
|
|
|
|
./configure \
|
|
|
|
--prefix=%{_prefix} \
|
|
|
|
--datadir=/share/cmake \
|
|
|
|
--docdir=/share/doc/packages/cmake \
|
|
|
|
--mandir=/share/man \
|
2014-07-02 15:04:50 +02:00
|
|
|
--sphinx-man \
|
2012-11-02 15:31:52 +01:00
|
|
|
%if 0%{?suse_version} && !0%{?sles_version}
|
2010-05-25 18:31:48 +02:00
|
|
|
--system-libs \
|
2011-04-05 12:51:42 +02:00
|
|
|
%else
|
|
|
|
--system-curl \
|
|
|
|
--system-expat \
|
|
|
|
--system-zlib \
|
|
|
|
--system-bzip2 \
|
|
|
|
--no-system-libarchive \
|
|
|
|
%endif
|
2014-06-21 12:43:44 +02:00
|
|
|
--parallel=0%{jobs} \
|
2010-05-25 18:31:48 +02:00
|
|
|
--qt-gui
|
2011-09-19 21:29:30 +02:00
|
|
|
make VERBOSE=1 %{?_smp_mflags}
|
2010-05-25 18:31:48 +02:00
|
|
|
|
|
|
|
%install
|
2014-06-21 12:43:44 +02:00
|
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
2010-05-25 18:31:48 +02:00
|
|
|
mkdir -p %{buildroot}%{_libdir}/cmake
|
|
|
|
%suse_update_desktop_file CMake Development IDE Tools Qt
|
|
|
|
# delete files that belong to the 'cmake' package
|
2014-06-21 12:43:44 +02:00
|
|
|
rm -rf %{buildroot}%{_bindir}/{cpack,cmake,ctest}
|
|
|
|
rm -rf %{buildroot}%{_datadir}/cmake
|
|
|
|
rm -rf %{buildroot}%{_datadir}/aclocal/cmake.m4
|
|
|
|
rm -rf %{buildroot}%{_docdir}/cmake
|
2010-05-25 18:31:48 +02:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/cmake-gui
|
|
|
|
%{_datadir}/applications/CMake.desktop
|
|
|
|
%{_datadir}/mime/packages/cmakecache.xml
|
|
|
|
%{_datadir}/pixmaps/CMakeSetup32.png
|
2014-07-03 10:00:27 +02:00
|
|
|
|
|
|
|
%files -n cmake-man
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_mandir}/man7/*
|
|
|
|
%{_mandir}/man1/*
|
2010-05-25 18:31:48 +02:00
|
|
|
|
|
|
|
%changelog
|