]> git.pld-linux.org Git - packages/strace.git/blob - strace.spec
- up to 3.9
[packages/strace.git] / strace.spec
1 Summary:        prints system call strace of a running process
2 Summary(de.UTF-8):      druckt ein Protokoll der Systemaufrufe eines laufenden Prozesses
3 Summary(es.UTF-8):      Enseña las llamadas de sistema de un proceso en ejecución
4 Summary(fr.UTF-8):      affiche l'appel système strace d'un processus en exécution
5 Summary(pl.UTF-8):      strace wyświetla funkcje systemowe wywoływane przez uruchomiony proces
6 Summary(pt_BR.UTF-8):   Mostra as chamadas de sistema de um processo rodando
7 Summary(ru.UTF-8):      Отслеживает и показывает системные вызовы, связанные с запущенным процессом
8 Summary(tr.UTF-8):      Çalışan bir sürecin yaptığı sistem çağrılarını listeler
9 Summary(uk.UTF-8):      Відслідковує та показує системні виклики, пов'язані із запущеним процесом
10 Name:           strace
11 Version:        4.9
12 Release:        1
13 License:        BSD-like
14 Group:          Development/Debuggers
15 Source0:        http://downloads.sourceforge.net/strace/%{name}-%{version}.tar.xz
16 # Source0-md5:  885eafadb10f6c60464a266d3929a2a4
17 Source1:        %{name}.1.pl
18 URL:            http://sourceforge.net/projects/strace/
19 # acl and libaio for headers only
20 BuildRequires:  acl-devel
21 BuildRequires:  libaio-devel
22 BuildRequires:  tar >= 1:1.22
23 BuildRequires:  xz
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 Strace prints a record of each system call another program makes,
28 including all of the arguments passed to it and the system call's
29 return value.
30
31 %description -l de.UTF-8
32 Strace druckt ein Protokoll aller von einem anderen Programm
33 ausgegebenen Systemaufrufe, einschließlich aller weitergeleiteten
34 Argumente und dem Ausgabewert des Systemaufrufs.
35
36 %description -l es.UTF-8
37 Strace imprime una "grabación" de cada llamada de sistema que el
38 programa hace, incluyendo todos los argumentos pasados para él, si la
39 vuelta de cada llamada de sistema es verdadera, o si hay creado error.
40
41 %description -l fr.UTF-8
42 strace affiche l'enregistrement de chaque appel système que fait un
43 programme ainsi que tous les arguments qui lui ont été passés et la
44 valeur de retour de l'appel.
45
46 %description -l pl.UTF-8
47 Strace wyświetla informacje o każdym wywołaniu funkcji systemowych
48 przez uruchamiany program, w tym również wszystkie argumenty wywołania
49 i zwróconą wartość.
50
51 %description -l pt_BR.UTF-8
52 Strace imprime uma "gravação" de cada chamada de sistema que o
53 programa faz, incluindo todos os argumentos passados para ele e se o
54 retorno de cada chamada de sistema é verdadeiro ou gerou erro.
55
56 %description -l ru.UTF-8
57 Программа strace перехватывает и регистрирует системные вызовы,
58 произведенные и полученные исполняющимся процессом. Strace может
59 вывести список всех системных вызовов, их аргументов и возвращаемые
60 ими значения. Strace полезна для диагностики проблем и отладки.
61
62 %description -l tr.UTF-8
63 strace bir programın çalıştığı sürece yaptığı bütün sistem
64 çağrılarını, gönderdiği parametreler ve geri dönüş değerleriyle
65 birlikte döker.
66
67 %description -l uk.UTF-8
68 Програма strace перехоплює та регіструє системні визови, зроблені та
69 отримані процесом, який виконується. Strace може вивести список усіх
70 системних визовів, їх аргументів та значень, які вони повернули.
71 Strace корисний для діагностики проблем та відладки.
72
73 %package graph
74 Summary:        strace graph
75 Summary(pl.UTF-8):      Graf strace
76 Group:          Development/Debuggers
77 # NOTE: doesn't require directly strace binary.
78
79 %description graph
80 strace-graph script processes strace -f output. It displays a graph of
81 invoked subprocesses, and is useful for finding out what complex
82 commands do.
83
84 The script can also handle the output with strace -t, -tt, or -ttt. It
85 will add elapsed time for each process in that case.
86
87 %description graph -l pl.UTF-8
88 Skrypt strace-graph przetwarza wynik strace -f i wyświetla graf
89 wywoływanych podprocesów. Jest przydatny do sprawdzania co robią
90 złożone polecenia.
91
92 Skrypt jest w stanie obsłużyć także wyjście ze strace -t, -tt i -ttt.
93 Doda wtedy upływający czas dla każdego procesu.
94
95 %prep
96 %setup -q
97
98 %build
99 %configure
100 %{__make}
101
102 %install
103 rm -rf $RPM_BUILD_ROOT
104
105 %{__make} install \
106         DESTDIR=$RPM_BUILD_ROOT
107
108 install -D %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/pl/man1/strace.1
109
110 %clean
111 rm -rf $RPM_BUILD_ROOT
112
113 %files
114 %defattr(644,root,root,755)
115 %doc COPYING CREDITS ChangeLog NEWS README-linux
116 %attr(755,root,root) %{_bindir}/strace
117 %attr(755,root,root) %{_bindir}/strace-log-merge
118 %{_mandir}/man1/strace.1*
119 %lang(pl) %{_mandir}/pl/man1/strace.1*
120
121 %files graph
122 %defattr(644,root,root,755)
123 %attr(755,root,root) %{_bindir}/strace-graph
This page took 0.130918 seconds and 4 git commands to generate.