]> git.pld-linux.org Git - packages/cacti-spine.git/blob - cacti-spine.spec
- unfortunately it's not a daemon, run from cron
[packages/cacti-spine.git] / cacti-spine.spec
1 Summary:        A backend data gatherer for cacti
2 Name:           cacti-cactid
3 Version:        0.8.6f
4 Release:        0.1
5 License:        GPL
6 Group:          Applications
7 Source0:        http://www.cacti.net/downloads/cactid/%{name}-%{version}.tar.gz
8 # Source0-md5:  2b102f9029ffaa4fb0e186c6640b1851
9 URL:            http://www.cacti.net/
10 BuildRequires:  automake
11 BuildRequires:  mysql-devel
12 BuildRequires:  net-snmp-devel
13 BuildRequires:  openssl-devel
14 BuildRequires:  zlib-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 A backend data gatherer for cacti. This package represents the future
19 replacement for cacti's cmd.php. It is almost 100% compatible with the
20 legacy cmd.php processor.
21
22 %prep
23 %setup -q
24
25 %build
26 install /usr/share/automake/config.* config
27 %configure \
28         --with-mysql \
29         --with-snmp=%{_prefix}
30 %{__make}
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34 install -d $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/
35
36 %{__make} install \
37         DESTDIR=$RPM_BUILD_ROOT
38
39 install cactid.conf $RPM_BUILD_ROOT%{_sysconfdir}
40
41 cat  << EOF > $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/%{name}
42 */5 * * * * nobody umask 022; /usr/bin/cactid > /dev/null 2>&1
43 EOF
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc CHANGELOG README
51 %attr(755,root,root) %{_bindir}/*
52 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cactid.conf
53 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/%{name}
This page took 0.072071 seconds and 4 git commands to generate.