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
|
|
|
#
|
2011-05-26 15:31:30 +02:00
|
|
|
# Copyright (c) 2011 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2008-02-29 22:28:28 +01:00
|
|
|
|
2006-12-20 02:22:20 +01:00
|
|
|
Name: cmake
|
2011-10-14 14:45:21 +02:00
|
|
|
Version: 2.8.6
|
2011-04-04 16:49:26 +02:00
|
|
|
Release: 1
|
2009-11-27 19:17:43 +01:00
|
|
|
License: BSD3c
|
2006-12-20 02:22:20 +01:00
|
|
|
Group: Development/Tools/Building
|
2007-10-03 00:49:11 +02:00
|
|
|
Url: http://www.cmake.org/
|
2011-07-29 18:20:26 +02:00
|
|
|
Source0: http://www.cmake.org/files/v2.8/%{name}-%{version}.tar.gz
|
2008-05-07 00:25:59 +02:00
|
|
|
Patch4: cmake-disable-builtin-chrpath.diff
|
2010-09-14 14:42:51 +02:00
|
|
|
# Should appear in cmake-2.8.3
|
2006-12-20 02:22:20 +01:00
|
|
|
Summary: Cross-platform, open-source make system
|
2008-06-22 02:01:47 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-09-14 16:03:41 +02:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
BuildRequires: libexpat-devel
|
2010-07-21 14:27:51 +02:00
|
|
|
%if 0%{?suse_version} > 1110
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: fdupes
|
2010-07-21 14:27:51 +02:00
|
|
|
%endif
|
2010-09-14 16:03:41 +02:00
|
|
|
%else
|
|
|
|
BuildRequires: expat-devel
|
|
|
|
%endif
|
2010-05-25 18:31:48 +02:00
|
|
|
BuildRequires: curl-devel
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: zlib-devel
|
2011-04-05 12:51:42 +02:00
|
|
|
%if 0%{?suse_version} > 1130
|
|
|
|
BuildRequires: libarchive-devel
|
|
|
|
%endif
|
2007-12-11 13:19:30 +01:00
|
|
|
Requires: make
|
2006-12-20 02:22:20 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
CMake is a cross-platform, open-source make system
|
|
|
|
|
|
|
|
%prep
|
2011-04-04 16:49:26 +02:00
|
|
|
%setup -q
|
2008-05-07 00:25:59 +02:00
|
|
|
%patch4
|
2006-12-20 02:22:20 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
export CXXFLAGS="$RPM_OPT_FLAGS"
|
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 \
|
2011-04-05 12:51:42 +02:00
|
|
|
%if 0%{?suse_version} > 1130
|
2008-05-07 00:25:59 +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
|
2010-05-25 18:31:48 +02:00
|
|
|
--parallel=0%jobs \
|
|
|
|
--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
|
2007-07-23 19:55:10 +02:00
|
|
|
make DESTDIR=%{buildroot} install
|
2010-05-25 18:31:48 +02:00
|
|
|
mkdir -p %{buildroot}%{_libdir}/cmake
|
2007-07-23 19:55:10 +02:00
|
|
|
find %{buildroot}/usr/share/cmake -type f -print0 | xargs -0 chmod 644
|
2010-07-21 14:27:51 +02:00
|
|
|
cp ChangeLog.manual %{buildroot}/usr/share/doc/packages/%{name}/Changelog
|
|
|
|
%if 0%{?suse_version} > 1110
|
2009-03-12 15:23:49 +01:00
|
|
|
%fdupes %buildroot/usr/share/cmake
|
2010-07-21 14:27:51 +02:00
|
|
|
%endif
|
2006-12-20 02:22:20 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
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
|
2011-10-14 14:45:21 +02:00
|
|
|
%{_datadir}/aclocal/cmake.m4
|
2010-07-21 14:27:51 +02:00
|
|
|
%doc %{_datadir}/doc/packages/%{name}
|
2010-05-25 18:31:48 +02:00
|
|
|
%doc %{_mandir}/man1/cmakepolicies.1.*
|
|
|
|
%doc %{_mandir}/man1/cmake.1.*
|
|
|
|
%doc %{_mandir}/man1/ctest.1.*
|
|
|
|
%doc %{_mandir}/man1/ccmake.1.*
|
|
|
|
%doc %{_mandir}/man1/cmakecommands.1.*
|
|
|
|
%doc %{_mandir}/man1/cmakecompat.1.*
|
|
|
|
%doc %{_mandir}/man1/cmakemodules.1.*
|
|
|
|
%doc %{_mandir}/man1/cmakeprops.1.*
|
|
|
|
%doc %{_mandir}/man1/cmakevars.1.*
|
|
|
|
%doc %{_mandir}/man1/cpack.1.*
|
2007-12-11 13:19:30 +01:00
|
|
|
|
2007-03-29 12:01:34 +02:00
|
|
|
%changelog
|