303 lines
9.7 KiB
RPMSpec
303 lines
9.7 KiB
RPMSpec
%define cvsversion 5.1.90_20020404
|
||
|
||
Summary: A GNU source-level debugger for C, C++ and other languages.
|
||
Name: gdb
|
||
Version: 5.1.90CVS
|
||
Release: 4
|
||
License: GPL
|
||
Group: Development/Debuggers
|
||
#Source: ftp://sources.redhat.com/pub/gdb/gdb-%{version}.tar.bz2
|
||
Source: ftp://sources.redhat.com/pub/gdb/snapshots/branch/gdb+dejagnu-%{cvsversion}.tar.bz2
|
||
Patch1: gdb-5.1-threadfpufix.patch
|
||
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
||
URL: http://sources.redhat.com/gdb/
|
||
BuildRequires: ncurses-devel glibc-devel gcc make gzip texinfo
|
||
Prereq: info
|
||
|
||
%description
|
||
GDB, the GNU debugger, allows you to debug programs written in C, C++,
|
||
and other languages, by executing them in a controlled fashion and
|
||
printing their data.
|
||
|
||
%prep
|
||
%setup -q -n gdb+dejagnu-%{cvsversion}
|
||
rm -fr gdb/gdbserver
|
||
#patch1 -p1 -b .threadfpupatch
|
||
|
||
cat > gdb/version.in << _FOO
|
||
Red Hat Linux (%{version}-%{release})
|
||
_FOO
|
||
|
||
|
||
%build
|
||
|
||
export CFLAGS="$RPM_OPT_FLAGS"
|
||
|
||
rm -fr dejagnu tcl expect
|
||
./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man --infodir=/usr/share/info \
|
||
%{_arch}-redhat-linux
|
||
|
||
make
|
||
make info
|
||
cp gdb/NEWS .
|
||
|
||
%install
|
||
rm -rf $RPM_BUILD_ROOT
|
||
|
||
%makeinstall infodir=$RPM_BUILD_ROOT/${_infodir} prefix=$RPM_BUILD_ROOT/usr
|
||
|
||
# The above is broken, do this for now:
|
||
mkdir -p $RPM_BUILD_ROOT/%{_infodir}
|
||
cp `find -name "*.info*"` $RPM_BUILD_ROOT/%{_infodir}
|
||
|
||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir $RPM_BUILD_ROOT%{_infodir}/dir.info*
|
||
|
||
#These are part of binutils
|
||
|
||
rm -f $RPM_BUILD_ROOT%{_infodir}/bfd* $RPM_BUILD_ROOT%{_infodir}/standard*
|
||
rm -rf $RPM_BUILD_ROOT/usr/include/ $RPM_BUILD_ROOT/usr/lib/lib{bfd*,opcodes*}
|
||
|
||
%clean
|
||
rm -rf $RPM_BUILD_ROOT
|
||
|
||
%post
|
||
[ -f %{_infodir}/gdb.info ] && /sbin/install-info %{_infodir}/gdb.info %{_infodir}/dir || :
|
||
[ -f %{_infodir}/gdb.info.gz ] && /sbin/install-info %{_infodir}/gdb.info.gz %{_infodir}/dir || :
|
||
[ -f %{_infodir}/mmalloc.info ] && /sbin/install-info %{_infodir}/mmalloc.info %{_infodir}/dir || :
|
||
[ -f %{_infodir}/mmalloc.info.gz ] && /sbin/install-info %{_infodir}/mmalloc.info.gz %{_infodir}/dir || :
|
||
[ -f %{_infodir}/stabs.info ] && /sbin/install-info %{_infodir}/stabs.info %{_infodir}/dir || :
|
||
[ -f %{_infodir}/stabs.info.gz ] && /sbin/install-info %{_infodir}/stabs.info.gz %{_infodir}/dir || :
|
||
|
||
%preun
|
||
if [ $1 = 0 ]; then
|
||
[ -f %{_infodir}/gdb.info ] && /sbin/install-info --delete %{_infodir}/gdb.info %{_infodir}/dir || :
|
||
[ -f %{_infodir}/gdb.info.gz ] && /sbin/install-info --delete %{_infodir}/gdb.info.gz %{_infodir}/dir || :
|
||
[ -f %{_infodir}/mmalloc.info ] && /sbin/install-info --delete %{_infodir}/mmalloc.info %{_infodir}/dir || :
|
||
[ -f %{_infodir}/mmalloc.info.gz ] && /sbin/install-info --delete %{_infodir}/mmalloc.info.gz %{_infodir}/dir || :
|
||
[ -f %{_infodir}/stabs.info ] && /sbin/install-info --delete %{_infodir}/stabs.info %{_infodir}/dir || :
|
||
[ -f %{_infodir}/stabs.info.gz ] && /sbin/install-info --delete %{_infodir}/stabs.info.gz %{_infodir}/dir || :
|
||
fi
|
||
|
||
%files
|
||
%defattr(-,root,root)
|
||
%doc COPYING COPYING.LIB README NEWS
|
||
/usr/bin/*
|
||
%{_mandir}/*/*
|
||
%{_infodir}/gdb.info*
|
||
%{_infodir}/stabs.info*
|
||
%{_infodir}/mmalloc.info*
|
||
|
||
# don't include the files in include, they are part of binutils
|
||
|
||
%changelog
|
||
* Thu Mar 28 2002 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1.90CVS-4
|
||
- Update to current
|
||
|
||
* Thu Mar 28 2002 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1.90CVS-3
|
||
- Update to current
|
||
|
||
* Wed Mar 20 2002 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1.90CVS-2
|
||
- Update to current
|
||
|
||
* Wed Mar 13 2002 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1.90CVS-1
|
||
- Update to current 5.2 branch
|
||
|
||
* Thu Jan 24 2002 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1.1-1
|
||
- 5.1.1
|
||
- add URL
|
||
|
||
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||
- automated rebuild
|
||
|
||
* Mon Dec 10 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1-2
|
||
- Fix some thread+fpu problems
|
||
|
||
* Mon Nov 26 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.1-1
|
||
- 5.1
|
||
|
||
* Mon Nov 19 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0.94-0.71
|
||
- 5.0.94. Almost there....
|
||
|
||
* Mon Nov 12 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0.93-2
|
||
- Add patch from jakub@redhat.com to improve handling of DWARF
|
||
|
||
* Mon Nov 12 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0.93-1
|
||
- 5.0.93
|
||
- handle missing info pages in post/pre scripts
|
||
|
||
* Wed Oct 31 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0.92-1
|
||
- 5.0.92
|
||
|
||
* Fri Oct 26 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0.91rh-1
|
||
- New snapshot
|
||
- Use the 5.0.91 versioning from the snapshot
|
||
|
||
* Wed Oct 17 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0rh-17
|
||
- New snapshot
|
||
|
||
* Thu Sep 27 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot
|
||
|
||
* Wed Sep 12 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0rh-16
|
||
- New snapshot
|
||
|
||
* Mon Aug 13 2001 Trond Eivind Glomsr<73>d <teg@redhat.com> 5.0rh-15
|
||
- Don't buildrequire compat-glibc (#51690)
|
||
|
||
* Thu Aug 9 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot, from the stable branch eventually leading to gdb 5.1
|
||
|
||
* Mon Jul 30 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- s/Copyright/License/
|
||
- Add texinfo to BuildRequires
|
||
|
||
* Mon Jun 25 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot
|
||
|
||
* Fri Jun 15 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot
|
||
- Add ncurses-devel to buildprereq
|
||
- Remove perl from buildprereq, as gdb changed the way
|
||
version strings are generated
|
||
|
||
* Thu Jun 14 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot
|
||
|
||
* Wed May 16 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot - this had thread fixes for curing #39070
|
||
- New way of specifying version
|
||
|
||
* Tue May 1 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New tarball
|
||
- Kevin's patch is now part of gdb
|
||
|
||
* Mon Apr 9 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- Add patch from kevinb@redhat.com to fix floating point + thread
|
||
problem (#24310)
|
||
- remove old workarounds
|
||
- new snapshot
|
||
|
||
* Thu Apr 5 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- New snapshot
|
||
|
||
* Sat Mar 17 2001 Bill Nottingham <notting@redhat.com>
|
||
- on ia64, there are no old headers :)
|
||
|
||
* Fri Mar 16 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- build with old headers, new compiler
|
||
|
||
* Wed Mar 16 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new snapshot
|
||
|
||
* Mon Feb 26 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new snapshot which should fix some more IA64 problems (#29151)
|
||
- remove IA64 patch, it's now integrated
|
||
|
||
* Wed Feb 21 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- add IA64 and Alpha patches from Kevin Buettner <kevinb@redhat.com>
|
||
- use perl instead of patch for fixing the version string
|
||
|
||
* Tue Feb 20 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- don't use kgcc anymore
|
||
- mark it as our own version
|
||
- new snapshot
|
||
|
||
* Mon Jan 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
|
||
- Link with ncurses 5.x even though we're using kgcc.
|
||
No need to drag in requirements on ncurses4 (Bug #24445)
|
||
|
||
* Fri Jan 19 2001 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new snapshot
|
||
|
||
* Thu Dec 20 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new snapshot
|
||
|
||
* Mon Dec 04 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new snapshot
|
||
- new alpha patch - it now compiles everywhere. Finally.
|
||
|
||
* Fri Dec 01 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new snapshot
|
||
|
||
* Mon Nov 20 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- new CVS snapshot
|
||
- disable the patches
|
||
- don't use %%configure, as it confuses the autoconf script
|
||
- enable SPARC, disable Alpha
|
||
|
||
|
||
* Wed Aug 09 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- added patch from GDB team for C++ symbol handling
|
||
|
||
* Mon Jul 25 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- upgrade to CVS snapshot
|
||
- excludearch SPARC, build on IA61
|
||
|
||
* Wed Jul 19 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- rebuild
|
||
|
||
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
||
- automatic rebuild
|
||
|
||
* Sun Jul 02 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- rebuild
|
||
|
||
* Fri Jun 08 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- use %%configure, %%makeinstall, %%{_infodir}, %%{_mandir},
|
||
and %%{_tmppath}
|
||
- the install scripts for info are broken(they don't care about
|
||
you specify in the installstep), work around that.
|
||
- don't build for IA64
|
||
|
||
* Mon May 22 2000 Trond Eivind Glomsr<73>d <teg@redhat.com>
|
||
- upgraded to 5.0 - dump all patches. Reapply later if needed.
|
||
- added the NEWS file to the %%doc files
|
||
- don't delete files which doesn't get installed (readline, texinfo)
|
||
- let build system handle stripping and gzipping
|
||
- don't delete libmmalloc
|
||
- apply patch from jakub@redhat.com to make it build on SPARC
|
||
|
||
* Fri Apr 28 2000 Matt Wilson <msw@redhat.com>
|
||
- rebuilt against new ncurses
|
||
|
||
* Tue Mar 7 2000 Jeff Johnson <jbj@redhat.com>
|
||
- rebuild for sparc baud rates > 38400.
|
||
|
||
* Tue Feb 8 2000 Jakub Jelinek <jakub@redhat.com>
|
||
- fix core file handling on i386 with glibc 2.1.3 headers
|
||
|
||
* Fri Jan 14 2000 Jakub Jelinek <jakub@redhat.com>
|
||
- fix reading registers from core on sparc.
|
||
- hack around build problems on i386 with glibc 2.1.3 headers
|
||
|
||
* Thu Oct 7 1999 Jim Kingdon
|
||
- List files to install in /usr/info specifically (so we don't pick up
|
||
things like info.info from GDB snapshots).
|
||
|
||
* Thu Oct 7 1999 Jim Kingdon
|
||
- Update GDB to 19991004 snapshot. This eliminates the need for the
|
||
sigtramp, sparc, xref, and threads patches. Update sparcmin patch.
|
||
|
||
* Mon Aug 23 1999 Jim Kingdon
|
||
- Omit readline manpage.
|
||
|
||
* Tue Aug 7 1999 Jim Kingdon
|
||
- Remove H.J. Lu's patches (they had been commented out).
|
||
- Add sigtramp patch (from gdb.cygnus.com) and threads patch (adapted
|
||
from code fusion CD-ROM).
|
||
|
||
* Wed Apr 14 1999 Jeff Johnson <jbj@redhat.com>
|
||
- merge H.J. Lu's patches into 4.18.
|
||
|
||
* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
|
||
- updated the kern22 patch with stuff from davem
|
||
|
||
* Thu Apr 1 1999 Jeff Johnson <jbj@redhat.com>
|
||
- sparc with 2.2 kernels no longer uses sunos ptrace (davem)
|
||
|
||
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||
- auto rebuild in the new build environment (release 3)
|
||
|
||
* Mon Mar 8 1999 Jeff Johnson <jbj@redhat.com>
|
||
- Sparc fiddles for Red Hat 6.0.
|