-
Notifications
You must be signed in to change notification settings - Fork 1
/
ccze.spec.in
69 lines (61 loc) · 2.03 KB
/
ccze.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
%define version @VERSION@
%define dist @DIST@
%define release 1
Summary: A robust log colorizer
Name: ccze
Version: %{version}
Release: %{release}
Vendor: Generic
Packager: Gergely Nagy <[email protected]>
URL: http://bonehunter.rulez.org/CCZE.html
Copyright: GPL
Group: Applications/Text
Source: ftp://bonehunter.rulez.org/pub/ccze/%{dist}/ccze-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-root
BuildPrereq: ncurses-devel >= 5.0, pcre-devel >= 3.1
%description
CCZE is a roboust and modular log colorizer, with plugins for apm,
exim, fetchmail, httpd, postfix, procmail, squid, syslog, ulogd,
vsftpd, xferlog and more.
%prep
%setup -q
%build
%configure --with-builtins=all
make
%install
%makeinstall
install -d %{buildroot}/%{_sysconfdir}
src/ccze-dump >%{buildroot}/%{_sysconfdir}/cczerc
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog ChangeLog-0.1 NEWS README THANKS FAQ
%config %{_sysconfdir}/cczerc
%{_bindir}/ccze
%{_bindir}/ccze-cssdump
%{_includedir}/ccze.h
%{_mandir}/man1/ccze.1*
%{_mandir}/man1/ccze-cssdump.1*
%{_mandir}/man7/ccze-plugin.7*
%changelog
* Sat Mar 29 2003 Gergely Nagy <[email protected]>
- Support different distributions than CCZE stable.
* Tue Feb 25 2003 Gergely Nagy <[email protected]>
- Include FAQ.
* Thu Feb 20 2003 Gergely Nagy <[email protected]>
- Use %{buildroot}, %configure and %makeinstall.
- Improved description.
* Sat Jan 25 2003 Gergely Nagy <[email protected]>
- Include %{_includedir}/ccze.h
* Mon Jan 13 2003 Gergely Nagy <[email protected]>
- Include ccze-cssdump and its manual page.
- Packager changed to myself.
* Wed Nov 20 2002 Gergely Nagy <[email protected]>
- Build all modules statically.
* Tue Nov 19 2002 Gergely Nagy <[email protected]>
- Use src/ccze-dump to generate the default configuration file.
* Tue Nov 19 2002 Gergely Nagy <[email protected]>
- Simplified and made it version-neultral.
* Sun Nov 17 2002 Andreas Brenk <[email protected]>
- Initial creation