]> git.pld-linux.org Git - packages/eventlog.git/blame_incremental - eventlog.spec
- rel 2
[packages/eventlog.git] / eventlog.spec
... / ...
CommitLineData
1Summary: EventLog library - a replacement of the simple syslog() API
2Summary(pl.UTF-8): Biblioteka EventLog - zamiennik prostego API syslog()
3Name: eventlog
4Version: 0.2.5
5Release: 2
6License: BSD-like
7Group: Libraries
8Source0: http://www.balabit.com/downloads/syslog-ng/2.0/src/%{name}-%{version}.tar.gz
9# Source0-md5: a6bdba91f88540cc69b398fd138d86cd
10URL: http://www.balabit.com/products/syslog_ng/
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14The EventLog library aims to be a replacement of the simple syslog()
15API provided on UNIX systems. The major difference between EventLog
16and syslog is that EventLog tries to add structure to messages.
17
18Where you had a simple non-structrured string in syslog() you have a
19combination of description and tag/value pairs.
20
21EventLog provides an interface to build, format and output an event
22record. The exact format and output method can be customized by the
23administrator via a configuration file.
24
25%description -l pl.UTF-8
26Celem biblioteki EventLog jest zastąpienie prostego API syslog()
27dostępnego w systemach uniksowych. Główną różnicą między EventLogiem a
28syslogiem jest to, że EventLog próbuje dodać do komunikatów strukturę.
29
30Tam, gdzie w API syslog() był prosty łańcuch bez struktury, mamy
31połączenie opisu i par znacznik/wartość.
32
33EvengLog udostępnia interfejs do tworzenia, formatowania i
34wyprowadzania rekordu zdarzenia. Dokładny format i metoda wyjściowa
35może być dostosowana przez administratora poprzez plik konfiguracyjny.
36
37%package devel
38Summary: Header files for eventlog
39Summary(pl.UTF-8): Pliki nagłówkowe biblioteki eventlog
40Group: Development/Libraries
41Requires: %{name} = %{version}-%{release}
42
43%description devel
44Header files for eventlog.
45
46%description devel -l pl.UTF-8
47Pliki nagłówkowe biblioteki eventlog.
48
49%package static
50Summary: Static eventlog library
51Summary(pl.UTF-8): Biblioteka statyczna eventlog
52Group: Development/Libraries
53Requires: %{name}-devel = %{version}-%{release}
54
55%description static
56Static eventlog library.
57
58%description static -l pl.UTF-8
59Biblioteka statyczna eventlog.
60
61%prep
62%setup -q
63
64%build
65%configure
66
67%{__make}
68
69%install
70rm -rf $RPM_BUILD_ROOT
71
72%{__make} install \
73 DESTDIR=$RPM_BUILD_ROOT
74
75%clean
76rm -rf $RPM_BUILD_ROOT
77
78%post -p /sbin/ldconfig
79%postun -p /sbin/ldconfig
80
81%files
82%defattr(644,root,root,755)
83%doc doc/configuration.txt AUTHORS COPYING CREDITS NEWS PORTS README ChangeLog
84%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
85
86%files devel
87%defattr(644,root,root,755)
88%doc doc/{API,DESIGN}.txt
89%attr(755,root,root) %{_libdir}/lib*.so
90%{_libdir}/lib*.la
91%dir %{_includedir}/eventlog
92%{_includedir}/eventlog/*
93%{_pkgconfigdir}/*
94
95%files static
96%defattr(644,root,root,755)
97%{_libdir}/lib*.a
This page took 0.108677 seconds and 4 git commands to generate.