]> git.pld-linux.org Git - packages/gdb.git/blame - gdb.spec
- outdated
[packages/gdb.git] / gdb.spec
CommitLineData
e1daef87
JR
1#
2# NOTE: Do not remove -lib package, it is required by FPC
3#
5ff7d7dd 4Summary: A GNU source-level debugger for C, C++ and Fortran
0ec45698
ER
5Summary(de.UTF-8): Symbolischer Debugger für C und andere Sprachen
6Summary(es.UTF-8): Depurador de programas C y otras lenguajes
7Summary(fr.UTF-8): Débugger symbolique pour C et d'autres langages
8Summary(pl.UTF-8): Symboliczny odpluskwiacz dla C i innych języków
9Summary(pt_BR.UTF-8): Depurador de programas C e outras linguagens
10Summary(ru.UTF-8): Символический отладчик для C и других языков
11Summary(tr.UTF-8): C ve diğer diller için sembolik hata ayıklayıcı
12Summary(uk.UTF-8): Символьний відладчик для С та інших мов
13Summary(zh_CN.UTF-8): [开发]C和其他语言的调试器
14Summary(zh_TW.UTF-8): [.-A開發]C和.$)B其.-A他語.$)B言的調試器
f8b0bb0f 15%define snap 20090311
0241102e 16Name: gdb
f5514aed 17Version: 6.8.50
f8c0e4ef 18Release: 0.%{snap}.1
d7c2fd3d 19License: GPL v3+
0241102e 20Group: Development/Debuggers
f5514aed
AM
21# Source0: http://ftp.gnu.org/gnu/gdb/%{name}-%{version}.tar.bz2
22Source0: ftp://sourceware.org/pub/gdb/snapshots/current/gdb-%{version}.%{snap}.tar.bz2
f8b0bb0f 23# Source0-md5: 911b57b37260317251b55ab3393913a5
31a43e77 24Source1: http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
feb56b14 25# Source1-md5: 2e8a48939ae282c12bbacdd54e398247
fc5a2138
JB
26Patch0: %{name}-readline.patch
27Patch1: %{name}-info.patch
28Patch2: %{name}-passflags.patch
a08563ef 29Patch5: %{name}-pretty-print-by-default.patch
097d37d7 30Patch6: %{name}-absolute-gnu_debuglink-path.patch
3a97e68e 31URL: http://www.gnu.org/software/gdb/
e92b6e8a 32BuildRequires: autoconf >= 2.53
830462ab 33BuildRequires: automake
435950f1
JB
34BuildRequires: bison
35BuildRequires: flex
72a26adc 36BuildRequires: libtool
4e6d01d3 37BuildRequires: ncurses-devel >= 5.2
f8c0e4ef 38BuildRequires: readline-devel >= 6.0
3a97e68e 39BuildRequires: texinfo >= 4.4
b4655cd1 40BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
6aa96a1b 41
42%description
92563ae4 43Gdb is a full featured, command driven debugger. Gdb allows you to
44trace the execution of programs and examine their internal state at
45any time. Gdb works for C and C++ compiled with the GNU C compiler
46gcc.
6aa96a1b 47
f01e46e5
JR
48%description -l de.UTF-8
49dem Sie die Ausführung von Programmen verfolgen und jederzeit den
50inneren Zustand überprüfen können. Er funktioniert für C und mit GNU C
92563ae4 51kompiliertes C++.
6aa96a1b 52
f01e46e5
JR
53%description -l es.UTF-8
54Este es un debugger orientado a comandos repleto de características.
55Te permite rastrear la ejecución de programas y examinar su estado
c15663f7 56interno a cualquier momento. Funciona para C y C++ compilado con el
57compilador GNU C.
58
f01e46e5
JR
59%description -l fr.UTF-8
60Débugger complet, piloté par commandes. Permet de tracer l'exécution
61des programmes et d'examiner à tout moment leur état interne.
62Fonctionne avec les binaires C et C++ compilés avec le compilateur C
92563ae4 63de GNU, gcc.
6aa96a1b 64
f01e46e5
JR
65%description -l pl.UTF-8
66Gdb jest rozbudowanym odpluskwiaczem (debuggerem), pozwalającym
67śledzić wykonywanie programu i badać jego stan wewnętrzny. Gdb
68umożliwia odpluskwianie programów napisanych w C/C++ i skompilowanych
92563ae4 69przy pomocy kompilatora GNU (gcc).
6aa96a1b 70
f01e46e5
JR
71%description -l pt_BR.UTF-8
72Este é um debugger orientado a comandos repleto de características.
73Ele permite à você rastrear a execução de programas e examinar o seu
c15663f7 74estado interno a qualquer momento. Ele funciona para para C e C++
75compilado com o compilador GNU C.
76
f01e46e5
JR
77%description -l ru.UTF-8
78Это полноценный отладчик, управляемый командами. Он позволяет
79трассировать исполнение программ и изучать их внутреннее состояние в
80любой момент времени. Работает с программами на C и C++,
81скомпилированными GNU компилятором C (gcc, egcs, pgcc).
11d14365 82
f01e46e5
JR
83%description -l tr.UTF-8
84Bir komut arayüzü üzerinden programcıya programını adım adım izleme
85(trace) ve herhangi bir anda programın durumunu inceleme olanağı
92563ae4 86verir.
6aa96a1b 87
f01e46e5
JR
88%description -l uk.UTF-8
89Це повноцінний відладчик, що керується командами. Він дозволяє
90трасувати виконання програм та вивчати їх внутрішній стан в довільний
91момент часу. Працює з програмами на C та C++, зкомпільованими
92компіляторами GNU C (gcc, egcs, pgcc).
11d14365 93
f02a934e 94%package lib
4e0c2e1e 95Summary: GDB in the form of a static library
0ec45698 96Summary(pl.UTF-8): GDB w postaci biblioteki statycznej
f02a934e 97Group: Development/Debuggers
3a97e68e 98#Requires: binutils-devel >= 2.17.50
f02a934e
JR
99
100%description lib
101GDB in the form of a static library.
102
f01e46e5 103%description lib -l pl.UTF-8
4e0c2e1e
JB
104GDB w postaci biblioteki statycznej.
105
6aa96a1b 106%prep
f5514aed 107%setup -q -n %{name}-%{version}.%{snap}
30a98da2 108%patch0 -p1
0cd7a575
AM
109%patch1 -p1
110%patch2 -p1
a08563ef 111%patch5 -p1
097d37d7 112%patch6 -p1
9164351f 113
6aa96a1b 114%build
0cd7a575
AM
115for dir in `find gdb/ -name 'configure.in'`; do
116 dir=$(dirname "$dir")
117 olddir=$(pwd)
118 cd $dir
119 rm -f aclocal.m4
120 %{__aclocal}
121 %{__autoconf}
122 cd $olddir
123done
3661d025 124cp -f /usr/share/automake/config.* .
3a97e68e 125# don't --enable-shared here, there would be libs version mismatch with binutils
62be29ad 126%configure \
fdffb271 127 --disable-gdbtk \
ebd49a3e 128 --disable-shared \
fdffb271 129 --enable-gdbcli \
b257c914 130 --enable-gdbmi \
131 --enable-multi-ice \
ebd49a3e 132 --enable-netrom \
fdffb271 133 --enable-nls \
5f8bd10e 134 --enable-tui \
fdffb271 135 --with-cpu=%{_target_cpu} \
ac43b5eb 136%ifnarch alpha
3a97e68e 137 --with-mmalloc \
ac43b5eb 138%endif
3a97e68e
JB
139 --without-included-gettext \
140 --without-included-regex \
141 --without-x
ebd49a3e 142
64683032 143%{__make}
36e61e18 144%{__make} info
6aa96a1b 145
146%install
147rm -rf $RPM_BUILD_ROOT
5ff7d7dd 148install -d $RPM_BUILD_ROOT%{_infodir}
6aa96a1b 149
ebd49a3e 150%{__make} install install-info \
f7477d2b 151 prefix=$RPM_BUILD_ROOT%{_prefix} \
ebd49a3e
AM
152 bindir=$RPM_BUILD_ROOT%{_bindir} \
153 sbindir=$RPM_BUILD_ROOT%{_sbindir} \
f7477d2b 154 infodir=$RPM_BUILD_ROOT%{_infodir} \
ebd49a3e
AM
155 includedir=$RPM_BUILD_ROOT%{_includedir} \
156 libdir=$RPM_BUILD_ROOT%{_libdir} \
5ff7d7dd 157 mandir=$RPM_BUILD_ROOT%{_mandir}
e611e157 158
8d9a5f3e 159bzip2 -dc %{SOURCE1} | tar xf - -C $RPM_BUILD_ROOT%{_mandir}
160
f02a934e
JR
161install gdb/libgdb.a $RPM_BUILD_ROOT%{_libdir}
162
b0a9ea6d
JB
163%clean
164rm -rf $RPM_BUILD_ROOT
6aa96a1b 165
1f7f0d47
ER
166%post -p /sbin/postshell
167-/usr/sbin/fix-info-dir -c %{_infodir}
6aa96a1b 168
1f7f0d47
ER
169%postun -p /sbin/postshell
170-/usr/sbin/fix-info-dir -c %{_infodir}
6aa96a1b 171
6aa96a1b 172%files
0241102e 173%defattr(644,root,root,755)
f0842f54 174%doc gdb/{ChangeLog,NEWS,PROBLEMS,README}
f7477d2b
AF
175%attr(755,root,root) %{_bindir}/*
176%{_mandir}/man1/*
8d9a5f3e 177%lang(es) %{_mandir}/es/man1/*
178%lang(fr) %{_mandir}/fr/man1/*
179%lang(hu) %{_mandir}/hu/man1/*
180%lang(ja) %{_mandir}/ja/man1/*
181%lang(pl) %{_mandir}/pl/man1/*
5ff7d7dd 182%{_infodir}/gdb*.info*
e611e157 183%{_infodir}/stabs*.info*
f02a934e
JR
184
185%files lib
186%defattr(644,root,root,755)
187%{_libdir}/libgdb.a
This page took 0.075349 seconds and 4 git commands to generate.