]> git.pld-linux.org Git - packages/cacti-plugin-npc.git/blob - cacti-plugin-npc.spec
- clean
[packages/cacti-plugin-npc.git] / cacti-plugin-npc.spec
1 # TODO
2 # -  Edit the MySQL options on line 143 of /cacti/plugins/npc/neb/inserter.c
3 %define         namesrc npc
4 %include        /usr/lib/rpm/macros.perl
5 Summary:        Plugin for Cacti - NPC
6 Summary(pl):    Wtyczka do Cacti - NPC
7 Name:           cacti-plugin-npc
8 Version:        0.1.1a
9 Release:        0.1
10 License:        GPL v2
11 Group:          Applications/WWW
12 Source0:        http://www.divagater.com/npc/%{namesrc}-%{version}.tar.gz
13 # Source0-md5:  325f2e49070420346b55b7b4e2994d34
14 Patch0:         %{name}-path_headers.patch
15 URL:            http://www.divagater.com/npc/
16 BuildRequires:  rpm-perlprov
17 BuildRequires:  nagios-devel
18 BuildRequires:  mysql-devel >= 4.1.0
19 Requires:       cacti >= 0.8.6h
20 # with plugin-architecture
21 Requires:       nagios >= 2.0b4
22 ### compiled with --enable-event-broker
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %define         webcactipluginroot /usr/share/cacti/plugins/%{namesrc}
26 %define         pathtonagiosmodules     /path/to/nagios/modules
27
28 %description
29 Plugin for Cacti - A UI replacement for Nagios integrated into Cacti.
30
31 %description -l pl
32 Wtyczka do Cacti - zamiennik interfejsu u¿ytkownika dla Nagiosa
33 zintegrowany z Cacti.
34
35 %prep
36 %setup -q -n %{namesrc}
37 %patch0 -p1
38
39 %build
40 cd ./neb
41 %{__make}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45 install -d $RPM_BUILD_ROOT%{webcactipluginroot}
46 install -d $RPM_BUILD_ROOT%{pathtonagiosmodules}
47 install ./neb/inserter.o $RPM_BUILD_ROOT%{pathtonagiosmodules}
48 rm -fr ./neb
49 cp -aRf * $RPM_BUILD_ROOT%{webcactipluginroot}
50
51 # Edit nagios.cfg and set:
52 #
53 #        retain_state_information=0
54 #        event_broker_options=-1
55 #        broker_module=%{pathtonagiosmodules}/inserter.o
56
57 # Setting retain_state_information=0 causes all hosts and services to
58 # go to a pending state until rechecked by Nagios. Without this setting
59 # the inserter module will never update any data in NPC. Its a minor
60 # inconvenience that I will try to fix in the inserter module.
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %files
66 %defattr(644,root,root,755)
67 %doc TODO README 
68 %{webcactipluginroot}
69 %{pathtonagiosmodules}/inserter.o
This page took 0.07526 seconds and 4 git commands to generate.