2004-09-09 03:20:21 +00:00
|
|
|
%define tarname automake-1.4-p5
|
2004-09-09 03:20:18 +00:00
|
|
|
|
2004-09-09 03:20:06 +00:00
|
|
|
Summary: A GNU tool for automatically creating Makefiles.
|
|
|
|
Name: automake
|
2004-09-09 03:20:21 +00:00
|
|
|
Version: 1.4p5
|
2004-09-09 03:20:30 +00:00
|
|
|
Release: 2
|
2004-09-09 03:20:06 +00:00
|
|
|
Copyright: GPL
|
|
|
|
Group: Development/Tools
|
2004-09-09 03:20:18 +00:00
|
|
|
Source: ftp://ftp.gnu.org/pub/gnu/automake/%{tarname}.tar.gz
|
2004-09-09 03:20:06 +00:00
|
|
|
Patch0: automake-1.4-19980208.patch
|
2004-09-09 03:20:18 +00:00
|
|
|
Patch1: automake-1.4-libtoolize.patch
|
2004-09-09 03:20:30 +00:00
|
|
|
Patch2: automake-1.4-subdir.patch
|
|
|
|
Patch3: automake-1.4-backslash.patch
|
2004-09-09 03:20:06 +00:00
|
|
|
URL: http://sourceware.cygnus.com/automake
|
|
|
|
Requires: perl
|
|
|
|
Prereq: /sbin/install-info
|
|
|
|
BuildArchitectures: noarch
|
|
|
|
Buildroot: %{_tmppath}/%{name}-root
|
|
|
|
|
|
|
|
%description
|
|
|
|
Automake is an experimental Makefile generator. Automake was inspired
|
|
|
|
by the 4.4BSD make and include files, but aims to be portable and to
|
|
|
|
conform to the GNU standards for Makefile variables and targets.
|
|
|
|
|
|
|
|
You should install Automake if you are developing software and would
|
2004-09-09 03:20:30 +00:00
|
|
|
like to use its ability to automatically generate GNU standard
|
|
|
|
Makefiles. If you install Automake, you will also need to install
|
|
|
|
GNU's Autoconf package.
|
2004-09-09 03:20:06 +00:00
|
|
|
|
|
|
|
%prep
|
2004-09-09 03:20:18 +00:00
|
|
|
%setup -q -n %{tarname}
|
2004-09-09 03:20:06 +00:00
|
|
|
# XXX don't apply development patch from CVS.
|
|
|
|
#%patch0 -p0 -b .19980208
|
2004-09-09 03:20:18 +00:00
|
|
|
%patch1 -p0
|
2004-09-09 03:20:30 +00:00
|
|
|
%patch2 -p1 -b .subdir
|
|
|
|
%patch3 -p1 -b .backslash
|
2004-09-09 03:20:06 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
#./configure --prefix=%{_prefix}
|
|
|
|
|
|
|
|
%configure
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
#make install prefix=${RPM_BUILD_ROOT}%{_prefix}
|
|
|
|
%makeinstall
|
|
|
|
|
|
|
|
gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/automake*
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/install-info %{_infodir}/automake.info.gz %{_infodir}/dir
|
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/automake.info.gz %{_infodir}/dir
|
|
|
|
fi
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
|
|
|
|
%{_bindir}/*
|
|
|
|
%{_infodir}/*.info*
|
|
|
|
%{_datadir}/automake
|
|
|
|
%{_datadir}/aclocal
|
|
|
|
|
|
|
|
%changelog
|
2004-09-09 03:20:30 +00:00
|
|
|
* Fri Aug 24 2001 Jens Petersen <petersen@redhat.com> - 1.4p5-2
|
|
|
|
- dont raise error when there is source in a subdirectory (bug #35156).
|
|
|
|
This was preventing automake from working in binutuls/gas
|
|
|
|
[patch from HJ Lu <hjl@gnu.org>]
|
|
|
|
- format long lines of output properly with backslash + newlines as in 1.4
|
|
|
|
(bug #35259) [patch from HJ Lu <hjl@gnu.org>]
|
|
|
|
|
2004-09-09 03:20:21 +00:00
|
|
|
* Sat Jul 21 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- 1.4-p5, fixes #48788
|
|
|
|
|
2004-09-09 03:20:18 +00:00
|
|
|
* Tue Jun 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add the patch from #20559
|
|
|
|
- really update to 1.4-p4
|
|
|
|
|
|
|
|
* Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.4-p4
|
|
|
|
|
|
|
|
* Sat May 12 2001 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 1.4-p1 to work with libtool-1.4
|
|
|
|
|
2004-09-09 03:20:06 +00:00
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- FHS packaging.
|
|
|
|
|
|
|
|
* Fri Feb 04 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- fix bug #8870
|
|
|
|
|
|
|
|
* Sat Aug 21 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- revert to pristine automake-1.4.
|
|
|
|
|
|
|
|
* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
|
|
|
|
- arm netwinder patch
|
|
|
|
|
|
|
|
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
|
|
|
|
- Injected new description and group.
|
|
|
|
|
|
|
|
* Mon Feb 8 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- add patches from CVS for 6.0beta1
|
|
|
|
|
|
|
|
* Sun Jan 17 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to 1.4.
|
|
|
|
|
|
|
|
* Mon Nov 23 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to 1.3b.
|
|
|
|
- add URL.
|
|
|
|
|
|
|
|
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
|
|
|
|
- translations modified for de, fr, tr
|
|
|
|
|
|
|
|
* Tue Apr 07 1998 Erik Troan <ewt@redhat.com>
|
|
|
|
- updated to 1.3
|
|
|
|
|
|
|
|
* Tue Oct 28 1997 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- added BuildRoot; added aclocal files
|
|
|
|
|
|
|
|
* Fri Oct 24 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- made it a noarch package
|
|
|
|
|
|
|
|
* Thu Oct 16 1997 Michael Fulbright <msf@redhat.com>
|
|
|
|
- Fixed some tag lines to conform to 5.0 guidelines.
|
|
|
|
|
|
|
|
* Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- updated to 1.2
|
|
|
|
|
|
|
|
* Wed Mar 5 1997 msf@redhat.com <Michael Fulbright>
|
|
|
|
- first version (1.0)
|