SHA256
3
0
forked from pool/cmake
OBS User unknown 2007-07-23 17:55:10 +00:00 committed by Git OBS Bridge
parent 227a7ae585
commit c046b70858
7 changed files with 32 additions and 20 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5ca3df34e905442bca468439a1acbd5efcaca771813e1ef5dc8c1739cfdb90d
size 1933949

3
cmake-2.4.7.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0cdb921456e38973577219c8f3303c531fcb21c6e52a4e0abfb9d52cfa0b6258
size 1941082

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Jul 20 13:11:34 CEST 2007 - pcerny@suse.cz
- update to 2.4.7 - several bugfixes
(KDevelop problem among others,
see ChangeLog.manual for more details)
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 27 15:43:07 CEST 2007 - dmueller@suse.de Fri Apr 27 15:43:07 CEST 2007 - dmueller@suse.de

View File

@ -1,5 +1,5 @@
# #
# spec file for package cmake (Version 2.4.6) # spec file for package cmake (Version 2.4.7)
# #
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
@ -11,12 +11,10 @@
# norootforbuild # norootforbuild
Name: cmake Name: cmake
Version: 2.4.6 Version: 2.4.7
Release: 12 Release: 1
# License: Redistribution and use in source and binary forms, with or without
License: Other License(s), see package
Group: Development/Tools/Building Group: Development/Tools/Building
#
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if %suse_version > 1020 %if %suse_version > 1020
BuildRequires: libexpat-devel BuildRequires: libexpat-devel
@ -24,13 +22,11 @@ BuildRequires: libexpat-devel
BuildRequires: expat BuildRequires: expat
%endif %endif
BuildRequires: curl-devel expat gcc-c++ libstdc++-devel ncurses-devel BuildRequires: curl-devel expat gcc-c++ libstdc++-devel ncurses-devel
#
URL: http://www.cmake.org/ URL: http://www.cmake.org/
Source0: %{name}-%{version}.tar.bz2 Source0: %{name}-%{version}.tar.bz2
Patch: cmake-2.4.5_use_intree_xmlrpc.patch Patch0: cmake-2.4.7-use_intree_xmlrpc.patch
Patch1: use-shared-python-lib.diff Patch1: cmake-2.4.7-less_verbosity.patch
Patch2: less-verbosity.diff Patch2: cmake-2.4.7-use_shared_python_lib.patch
#
Summary: Cross-platform, open-source make system Summary: Cross-platform, open-source make system
%description %description
@ -44,22 +40,27 @@ Authors:
%prep %prep
%setup -q -n %name-%version %setup -q -n %name-%version
%patch %patch0
%patch1 %patch1
%patch2 %patch2
%build %build
export CXXFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS"
export CFLAGS=$CXXFLAGS export CFLAGS="$CXXFLAGS"
./configure --prefix=/usr --datadir=/share/%name --docdir=/share/doc/packages/%name --mandir=/share/man --system-libs ./configure \
--prefix=%{_prefix} \
--datadir=/share/%{name} \
--docdir=/share/doc/packages/%{name} \
--mandir=/share/man \
--system-libs
make VERBOSE=1 %{?jobs:-j %jobs} make VERBOSE=1 %{?jobs:-j %jobs}
%install %install
make DESTDIR=$RPM_BUILD_ROOT install make DESTDIR=%{buildroot} install
find $RPM_BUILD_ROOT/usr/share/cmake -type f -print0 | xargs -0 chmod 644 find %{buildroot}/usr/share/cmake -type f -print0 | xargs -0 chmod 644
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf %{buildroot}
%files %files
%defattr(-,root,root) %defattr(-,root,root)
@ -74,6 +75,10 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/man/man1/ctest.1.gz /usr/share/man/man1/ctest.1.gz
%changelog %changelog
* Fri Jul 20 2007 - pcerny@suse.cz
- update to 2.4.7 - several bugfixes
(KDevelop problem among others,
see ChangeLog.manual for more details)
* Fri Apr 27 2007 - dmueller@suse.de * Fri Apr 27 2007 - dmueller@suse.de
- expat -> libexpat-devel - expat -> libexpat-devel
* Thu Mar 29 2007 - dmueller@suse.de * Thu Mar 29 2007 - dmueller@suse.de