]> git.pld-linux.org Git - packages/cacti-spine.git/blob - cacti-spine.spec
- release 6
[packages/cacti-spine.git] / cacti-spine.spec
1 Summary:        A backend data gatherer for cacti
2 Summary(pl.UTF-8):      Backend gromadzący dane dla cacti
3 Name:           cacti-spine
4 Version:        0.8.7a
5 Release:        6
6 License:        GPL
7 Group:          Applications
8 Source0:        http://www.cacti.net/downloads/spine/%{name}-%{version}.tar.gz
9 # Source0-md5:  85a32d256c056a3a4adb8bf3dff5e2dc
10 Patch0:         %{name}-paths.patch
11 URL:            http://www.cacti.net/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRequires:  mysql-devel
16 BuildRequires:  net-snmp-devel
17 BuildRequires:  openssl-devel
18 BuildRequires:  rpmbuild(macros) >= 1.502
19 BuildRequires:  zlib-devel
20 %requires_eq    net-snmp-libs
21 Requires:       cacti
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %define         _webapps        /etc/webapps
25 %define         _webapp         cacti
26 %define         _sysconfdir     %{_webapps}/%{_webapp}
27 %define         _bindir         %{_sbindir}
28
29 %description
30 A backend data gatherer for cacti. This package represents the future
31 replacement for cacti's cmd.php. It is almost 100% compatible with the
32 legacy cmd.php processor.
33
34 %description -l pl.UTF-8
35 Backend gromadzący dane dla cacti. Ten pakiet reprezentuje przyszły
36 zamiennik cmd.php z cacti. Jest prawie w 100% kompatybilny ze starym
37 procesorem cmd.php.
38
39 %prep
40 %setup -q
41 %patch0 -p1
42
43 %build
44 %{__libtoolize}
45 %{__aclocal}
46 %{__autoconf}
47 %configure \
48         --with-mysql \
49         --with-snmp=%{_prefix}
50 %{__make}
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54 install -d $RPM_BUILD_ROOT%{_sysconfdir}
55
56 %{__make} install \
57         DESTDIR=$RPM_BUILD_ROOT
58
59 install spine.conf $RPM_BUILD_ROOT%{_sysconfdir}
60 mv $RPM_BUILD_ROOT%{_sbindir}/{spine,cacti-poller-spine}
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %files
66 %defattr(644,root,root,755)
67 %doc README
68 %attr(755,root,root) %{_sbindir}/cacti-poller-spine
69 %attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/spine.conf
This page took 0.087881 seconds and 3 git commands to generate.