2010-11-15 17:50:50 +01:00
|
|
|
#
|
2011-05-26 15:31:30 +02:00
|
|
|
# spec file for package cmake
|
2006-12-20 02:22:20 +01:00
|
|
|
#
|
2015-01-12 10:34:31 +01:00
|
|
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-20 02:22:20 +01:00
|
|
|
#
|
2008-08-06 01:42:15 +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.
|
|
|
|
|
2006-12-20 02:22:20 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-04-19 10:52:56 +02:00
|
|
|
|
2006-12-20 02:22:20 +01:00
|
|
|
Name: cmake
|
2015-01-23 09:27:27 +01:00
|
|
|
Version: 3.1.1
|
2012-01-25 19:09:37 +01:00
|
|
|
Release: 0
|
2014-12-18 07:29:46 +01:00
|
|
|
%define rversion %{version}
|
2014-06-21 12:43:44 +02:00
|
|
|
Summary: Cross-platform, open-source make system
|
|
|
|
License: BSD-3-Clause
|
|
|
|
Group: Development/Tools/Building
|
2007-10-03 00:49:11 +02:00
|
|
|
Url: http://www.cmake.org/
|
2014-10-29 08:53:39 +01:00
|
|
|
Source0: http://www.cmake.org/files/v3.1/%{name}-%{rversion}.tar.gz
|
2013-08-16 11:35:44 +02:00
|
|
|
Source1: cmake.macros
|
|
|
|
Source2: opensuse_rules.cmake
|
2012-08-14 12:26:12 +02:00
|
|
|
Patch2: cmake-fix-ruby-test.patch
|
2015-01-12 10:34:31 +01:00
|
|
|
# PATCH-FIX-OPENSUSE: bnc#874885 contain the python swig namespace
|
|
|
|
Patch3: cmake-prefix-swig.patch
|
2014-08-18 10:21:42 +02:00
|
|
|
BuildRequires: curl-devel
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: gcc-c++
|
2014-06-21 12:43:44 +02:00
|
|
|
BuildRequires: libexpat-devel
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: zlib-devel
|
2014-10-29 08:53:39 +01:00
|
|
|
BuildRequires: pkgconfig(liblzma)
|
2007-12-11 13:19:30 +01:00
|
|
|
Requires: make
|
2014-07-03 10:00:27 +02:00
|
|
|
Recommends: cmake-mans
|
2014-06-21 12:43:44 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%if 0%{?suse_version} > 1110
|
2014-12-11 17:18:12 +01:00
|
|
|
BuildRequires: libarchive-devel >= 3.0.2
|
2014-06-21 12:43:44 +02:00
|
|
|
BuildRequires: libbz2-devel
|
|
|
|
%endif
|
2006-12-20 02:22:20 +01:00
|
|
|
|
|
|
|
%description
|
2014-06-11 12:42:34 +02:00
|
|
|
CMake is a cross-platform, open-source build system
|
2006-12-20 02:22:20 +01:00
|
|
|
|
|
|
|
%prep
|
2014-10-29 08:53:39 +01:00
|
|
|
%setup -q -n %{name}-%{rversion}
|
2014-03-06 10:36:53 +01:00
|
|
|
%patch2 -p1
|
2015-01-12 10:34:31 +01:00
|
|
|
%patch3 -p1
|
2006-12-20 02:22:20 +01:00
|
|
|
|
|
|
|
%build
|
2014-06-21 12:43:44 +02:00
|
|
|
export CXXFLAGS="%{optflags}"
|
2007-07-23 19:55:10 +02:00
|
|
|
export CFLAGS="$CXXFLAGS"
|
|
|
|
./configure \
|
|
|
|
--prefix=%{_prefix} \
|
|
|
|
--datadir=/share/%{name} \
|
|
|
|
--docdir=/share/doc/packages/%{name} \
|
|
|
|
--mandir=/share/man \
|
2008-05-07 00:25:59 +02:00
|
|
|
--system-libs \
|
2014-04-24 12:29:47 +02:00
|
|
|
%if 0%{?suse_version} <= 1110
|
2011-04-05 12:51:42 +02:00
|
|
|
--no-system-libarchive \
|
|
|
|
%endif
|
2014-06-21 12:43:44 +02:00
|
|
|
--parallel=0%{jobs} \
|
2014-04-24 12:29:47 +02:00
|
|
|
--verbose \
|
2010-05-25 18:31:48 +02:00
|
|
|
--no-qt-gui
|
2011-09-19 21:29:30 +02:00
|
|
|
make VERBOSE=1 %{?_smp_mflags}
|
2006-12-20 02:22:20 +01: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
|
2014-06-21 12:43:44 +02:00
|
|
|
find %{buildroot}%{_datadir}/cmake -type f -print0 | xargs -0 chmod 644
|
2013-08-16 11:35:44 +02:00
|
|
|
# rpm macros
|
|
|
|
install -m644 %{SOURCE1} -D %{buildroot}%{_sysconfdir}/rpm/macros.cmake
|
|
|
|
# buildrules
|
|
|
|
install -m644 %{SOURCE2} -D %{buildroot}%{_datadir}/cmake/Modules/opensuse_rules.cmake
|
|
|
|
sed -i \
|
|
|
|
-e 's:OPTFLAGS:%{optflags}:g' \
|
|
|
|
%{buildroot}%{_datadir}/cmake/Modules/opensuse_rules.cmake
|
2012-11-02 15:31:52 +01:00
|
|
|
|
2014-06-21 12:43:44 +02:00
|
|
|
%fdupes %{buildroot}%{_datadir}/cmake
|
2006-12-20 02:22:20 +01:00
|
|
|
|
2014-08-18 10:21:42 +02:00
|
|
|
%check
|
2014-10-17 14:21:45 +02:00
|
|
|
%if 0%{?suse_version} <= 1140
|
|
|
|
# http://public.kitware.com/Bug/view.php?id=13237
|
|
|
|
# 0013237: 25 - FindPackageTest (Failed)
|
|
|
|
# Our 11.4 and older have . in PATH, as a result check fails.
|
|
|
|
# Having '.' in PATH is not needed anyway, so remove it here.
|
|
|
|
oIFS=$IFS
|
|
|
|
IFS=:
|
|
|
|
NPATH=
|
|
|
|
for path in $PATH
|
|
|
|
do
|
|
|
|
if test "$path" = "."
|
|
|
|
then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if test -n "$NPATH"
|
|
|
|
then
|
|
|
|
NPATH="$NPATH:$path"
|
|
|
|
else
|
|
|
|
NPATH="$path"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
IFS=$oIFS
|
|
|
|
export PATH=$NPATH
|
|
|
|
%endif
|
2014-08-18 10:21:42 +02:00
|
|
|
# Excluded tests:
|
|
|
|
# TestUpload: uses internet connection
|
|
|
|
# SimpleInstall: seems to fail due to RPATH strictness
|
|
|
|
# if any other app installs then this test is bogus
|
|
|
|
./bin/ctest --force-new-ctest-process --output-on-failure %{?_smp_mflags} \
|
|
|
|
-E "(TestUpload|SimpleInstall|SimpleInstall-Stage2)"
|
|
|
|
|
2006-12-20 02:22:20 +01:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2014-08-18 10:21:42 +02:00
|
|
|
%config %{_sysconfdir}/rpm/macros.cmake
|
2010-05-25 18:31:48 +02:00
|
|
|
%{_bindir}/cpack
|
|
|
|
%{_bindir}/cmake
|
|
|
|
%{_bindir}/ctest
|
|
|
|
%{_bindir}/ccmake
|
|
|
|
%{_datadir}/cmake
|
2010-07-21 14:27:51 +02:00
|
|
|
%{_libdir}/cmake
|
2014-04-24 12:29:47 +02:00
|
|
|
%dir %{_datadir}/aclocal
|
2011-10-14 14:45:21 +02:00
|
|
|
%{_datadir}/aclocal/cmake.m4
|
2014-06-21 12:43:44 +02:00
|
|
|
%doc %{_docdir}/%{name}
|
2007-12-11 13:19:30 +01:00
|
|
|
|
2007-03-29 12:01:34 +02:00
|
|
|
%changelog
|