2006-12-19 00:17:05 +01:00
|
|
|
#
|
|
|
|
# spec file for package make (Version 3.81)
|
|
|
|
#
|
2008-10-23 04:39:35 +02:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-19 00:17:05 +01:00
|
|
|
#
|
2008-10-23 04:39:35 +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-19 00:17:05 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-10-23 04:39:35 +02:00
|
|
|
|
2006-12-19 00:17:05 +01:00
|
|
|
Name: make
|
2008-10-23 04:39:35 +02:00
|
|
|
Url: http://www.gnu.org/software/make/make.html
|
|
|
|
License: GPL v2 or later
|
2006-12-19 00:17:05 +01:00
|
|
|
Group: Development/Tools/Building
|
|
|
|
Provides: gmake
|
|
|
|
PreReq: %install_info_prereq
|
2008-10-23 04:39:35 +02:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:05 +01:00
|
|
|
Version: 3.81
|
2008-10-23 04:39:35 +02:00
|
|
|
Release: 128
|
2006-12-19 00:17:05 +01:00
|
|
|
Summary: GNU make
|
|
|
|
Source: make-3.81.tar.bz2
|
|
|
|
Patch1: make-memory-hog-2.diff
|
|
|
|
Patch2: make-slowdown-parallelism.diff
|
|
|
|
Patch64: make-library-search-path.diff
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
The GNU make command with extensive documentation.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Richard Stallman
|
|
|
|
Roland McGrath
|
|
|
|
Paul Smith
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup
|
|
|
|
#%patch1 -p1
|
|
|
|
%patch2
|
|
|
|
if [ %_lib == lib64 ]; then
|
|
|
|
%patch64
|
|
|
|
fi
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS=$RPM_OPT_FLAGS \
|
|
|
|
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
|
|
|
|
make
|
|
|
|
make check
|
|
|
|
|
|
|
|
%install
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
ln -s make $RPM_BUILD_ROOT/usr/bin/gmake
|
2007-05-17 11:44:48 +02:00
|
|
|
%find_lang %name
|
2006-12-19 00:17:05 +01:00
|
|
|
|
2007-05-17 11:44:48 +02:00
|
|
|
%files -f %name.lang
|
2006-12-19 00:17:05 +01:00
|
|
|
%defattr(-,root,root)
|
|
|
|
/usr/bin/make
|
|
|
|
/usr/bin/gmake
|
|
|
|
%doc /usr/share/info/make.info-*.gz
|
|
|
|
%doc /usr/share/info/make.info.gz
|
|
|
|
%doc /usr/share/man/man1/make.1.gz
|
|
|
|
|
2008-10-23 04:39:35 +02:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2006-12-19 00:17:05 +01:00
|
|
|
%post
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2007-05-17 11:44:48 +02:00
|
|
|
%changelog
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon May 14 2007 coolo@suse.de
|
2007-05-17 11:44:48 +02:00
|
|
|
- use %%find_lang
|
2008-10-23 04:39:35 +02:00
|
|
|
* Tue Oct 31 2006 mhopf@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Reducing race probability in test case features/parallelism even more.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Jun 07 2006 mhopf@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Improving occasional build failures due to races in test cases.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon May 29 2006 mhopf@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Update to 3.81
|
|
|
|
- Bug fixes
|
|
|
|
- New functions: lastword, abspath, realpath, info, flavor, or, and
|
|
|
|
- New variables: .INCLUDE_DIRS, .FEATURES, .DEFAULT_GOAL, MAKE_RESTARTS, $|
|
|
|
|
- Some new features
|
|
|
|
- More POSIX compatibility
|
|
|
|
- memory-hog-2.diff doesn't apply any longer
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Feb 01 2006 kssingvo@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- fix for memory-hog.diff (bugzilla#147229)
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Feb 01 2006 kssingvo@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- disabled memory-hog.diff due to crashes (bugzilla#147229)
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-10-23 04:39:35 +02:00
|
|
|
* Thu Jan 19 2006 aj@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Reduce memory usage.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Fri Jan 09 2004 adrian@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- do not strip binaries during install
|
2008-10-23 04:39:35 +02:00
|
|
|
* Tue Sep 30 2003 stepan@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- fix "virtual memory exhausted" bug (backport from mainline)
|
2008-10-23 04:39:35 +02:00
|
|
|
* Thu Apr 24 2003 ro@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- fix install_info --delete call and move from preun to postun
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Apr 16 2003 coolo@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- use BuildRoot
|
2008-10-23 04:39:35 +02:00
|
|
|
* Fri Feb 07 2003 ro@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- added install_info macros
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon Dec 30 2002 aj@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Update to version 3.80:
|
|
|
|
- number of bug fixes
|
|
|
|
- new features as mentioned in the NEWS file:
|
|
|
|
* New functions $(value ...), $(eval ...)
|
|
|
|
* New feature: order-only prerequesites.
|
|
|
|
* Argument to ifdef can now be a variable.
|
|
|
|
* new option --always-make
|
2008-10-23 04:39:35 +02:00
|
|
|
* Tue Sep 17 2002 ro@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- removed bogus self-provides
|
2008-10-23 04:39:35 +02:00
|
|
|
* Thu May 23 2002 meissner@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Made %%_lib fix generic, do not use ifarch.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon Apr 22 2002 meissner@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- x86_64 needs /*/lib64 as search path too.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Fri Apr 19 2002 ke@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Update German translation from
|
|
|
|
http://www.iro.umontreal.ca/contrib/po/teams/PO/de/ [# 15851].
|
2008-10-23 04:39:35 +02:00
|
|
|
* Tue Dec 11 2001 froh@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- s390x, sparc64 and ia64: extended the 'Dynamic Library Search'
|
|
|
|
default path to search /lib64 and /usr/lib64 as well.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Nov 28 2001 fehr@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- add mo-files for translations of messages
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed May 09 2001 cstein@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- repacked source files with bzip2
|
2008-10-23 04:39:35 +02:00
|
|
|
* Fri Nov 17 2000 fehr@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- set group tag
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon Jun 26 2000 fehr@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- change to new version 3.79.1
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Apr 19 2000 fehr@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- change to new version 3.79
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon Feb 14 2000 fehr@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- add compatibility link gmake -> make, needed for oracle install
|
2008-10-23 04:39:35 +02:00
|
|
|
* Thu Jan 20 2000 fehr@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- security fix for files created in /tmp when using -j
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon Jan 17 2000 schwab@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Update to 3.78.1.
|
|
|
|
- Get rid of Makefile.Linux.
|
|
|
|
- Run testsuite.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Fri Jan 14 2000 schwab@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Fix glob problem.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Oct 13 1999 schwab@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- Fix file list.
|
|
|
|
- Add autoconf to needforbuild
|
2008-10-23 04:39:35 +02:00
|
|
|
* Mon Sep 13 1999 bs@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
2008-10-23 04:39:35 +02:00
|
|
|
* Tue Feb 23 1999 ro@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- updated to 3.77 using fixes by c. gafton
|
2008-10-23 04:39:35 +02:00
|
|
|
* Wed Sep 23 1998 ro@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- downgrade to 3.76.1 (works at least)
|
2008-10-23 04:39:35 +02:00
|
|
|
* Tue Sep 22 1998 ro@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- update to 3.77
|
2008-10-23 04:39:35 +02:00
|
|
|
* Thu Oct 09 1997 florian@suse.de
|
2006-12-19 00:17:05 +01:00
|
|
|
- prepare for autobuild
|
|
|
|
Mon Sep 2 02:48:35 MET DST 1996
|
|
|
|
update to version 3.75
|