]> git.pld-linux.org Git - packages/strace.git/blob - strace.spec
- 4.4.92, updated getdents64 patch
[packages/strace.git] / strace.spec
1 Summary:        prints system call strace of a running process
2 Summary(de):    druckt ein Protokoll der Systemaufrufe eines laufenden Prozesses
3 Summary(fr):    affiche l'appel système strace d'un processus en exécution
4 Summary(pl):    strace wy¶wietla funkcje systemowe wywo³ywane przez uruchomiony proces
5 Summary(tr):    Çalýþan bir sürecin yaptýðý sistem çaðrýlarýný listeler
6 Name:           strace
7 Version:        4.4.92
8 Release:        1
9 License:        distributable
10 Group:          Development/Debuggers
11 Source0:        ftp://ftp.sourceforge.net/pub/sourceforge/strace/%{name}_%{version}-1.tar.gz
12 Source1:        %{name}.1.pl
13 Patch0:         %{name}-newsysc.patch
14 Patch1:         %{name}-getdents64.patch
15 URL:            http://www.liacs.nl/~wichert/strace/
16 BuildRequires:  autoconf >= 2.54
17 BuildRequires:  automake
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 Strace prints a record of each system call another program makes,
22 including all of the arguments passed to it and the system call's
23 return value.
24
25 %description -l de
26 Strace druckt ein Protokoll aller von einem anderen Programm
27 ausgegebenen Systemaufrufe, einschließlich aller weitergeleiteten
28 Argumente und dem Ausgabewert des Systemaufrufs.
29
30 %description -l fr
31 strace affiche l'enregistrement de chaque appel système que fait un
32 programme ainsi que tous les arguments qui lui ont été passés et la
33 valeur de retour de l'appel.
34
35 %description -l pl
36 Strace wy¶wietla informacje o ka¿dym wywo³aniu funkcji systemowych
37 przez uruchamiany program, w tym równie¿ wszystkie argumenty wywo³ania
38 i zwrócon± warto¶æ.
39
40 %description -l tr
41 strace bir programýn çalýþtýðý sürece yaptýðý bütün sistem
42 çaðrýlarýný, gönderdiði parametreler ve geri dönüþ deðerleriyle
43 birlikte döker.
44
45 %prep
46 %setup -q
47 %patch0 -p1
48 %patch1 -p1
49
50 %build
51 rm -f missing
52 %{__aclocal}
53 %{__autoconf}
54 %{__autoheader}
55 %{__automake}
56 %configure
57 %{__make}
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/{man1,pl/man1}}
62
63 %{__make} install \
64         prefix=$RPM_BUILD_ROOT%{_prefix} \
65         mandir=$RPM_BUILD_ROOT%{_mandir} \
66         bindir=$RPM_BUILD_ROOT%{_bindir}
67
68 install %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/pl/man1
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %files
74 %defattr(644,root,root,755)
75 %doc ChangeLog README-linux
76 %attr(755,root,root) %{_bindir}/strace*
77 %{_mandir}/man1/*
78 %lang(pl) %{_mandir}/pl/man1/*
This page took 0.23036 seconds and 4 git commands to generate.