Code

make spec work again, now that release is in source name again
[nagiosplug.git] / nagios-plugins.spec.in
1 %{!?custom:%global custom 0}
3 %define archive nagios-plugins
5 %if %custom
6 %define name %{archive}-custom
7 %else
8 %define name %{archive}
9 %endif
11 %define version %%{VER}
12 %define release %%{REL}
13 %define source %{archive}-%{version}-%{release}
15 Name: %{name}
16 Version: %{version}
17 Release: %{release}
18 Copyright: GPL
19 Source: %{source}.tar.gz
20 BuildRoot: %{_tmppath}/%{name}-buildroot
21 Prefix: %{_prefix}/lib/nagios/plugins
22 Packager: Karl DeBisschop <kdebisschop@users.sourceforge.net>
23 Vendor: Nagios Plugin Development Group
24 %if %custom
25 Obsoletes: nagios-plugins nagios-plugins-extras
26 %else
27 Obsoletes: nagios-plugins-custom
28 %endif
29 AutoReqProv: no
30 Summary: Host/service/network monitoring program plugins for Nagios
31 Group: Applications/System
34 %description
36 Nagios is a program that will monitor hosts and services on your
37 network, and to email or page you when a problem arises or is
38 resolved. Nagios runs on a unix server as a background or daemon
39 process, intermittently running checks on various services that you
40 specify. The actual service checks are performed by separate "plugin"
41 programs which return the status of the checks to Nagios.
43 This package contains the basic plugins necessary for use with the
44 Nagios package.  This package should install cleanly on almost any
45 RPM-based system.
48 %package extras
49 Summary: Plugins which depend on the presence of other packages
50 Group: Applications/System
52 %description extras
54 Nagios is a program that will monitor hosts and services on your
55 network, and to email or page you when a problem arises or is
56 resolved. Nagios runs on a unix server as a background or daemon
57 process, intermittently running checks on various services that you
58 specify. The actual service checks are performed by separate "plugin"
59 programs which return the status of the checks to Nagios.
61 This package contains plugins which use additional libraries or system
62 calls that are not installed on all systems.  As a result, most users
63 will need to install the '--nodeps' option when invoking `rpm`
66 %prep
67 %setup -q -n %{source}
70 %build
71 CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \
72 --prefix=%{_prefix}/lib/nagios/plugins \
73 --libexecdir=%{_prefix}/lib/nagios/plugins \
74 --with-cgiurl=/nagios/cgi-bin
75 make
78 %install
79 make AM_INSTALL_PROGRAM_FLAGS="" DESTDIR=${RPM_BUILD_ROOT} install
80 install -d ${RPM_BUILD_ROOT}/etc/nagios
81 install -m 664 command.cfg ${RPM_BUILD_ROOT}/etc/nagios
83 %clean
84 rm -rf $RPM_BUILD_ROOT
87 %files
88 %defattr(-,root,root)
89 %config(missingok,noreplace) /etc/nagios/command.cfg
90 %doc INSTALL README REQUIREMENTS COPYING ChangeLog command.cfg
91 %defattr(775,root,root)
92 %dir %{_prefix}/lib/nagios/plugins
93 %if %custom
94 %{_prefix}/lib/nagios/plugins/*
95 %else
96 %{_prefix}/lib/nagios/plugins/check_by_ssh
97 %{_prefix}/lib/nagios/plugins/check_breeze
98 %{_prefix}/lib/nagios/plugins/check_dig
99 %{_prefix}/lib/nagios/plugins/check_disk
100 %{_prefix}/lib/nagios/plugins/check_disk_smb
101 %{_prefix}/lib/nagios/plugins/check_dns
102 %{_prefix}/lib/nagios/plugins/check_dummy
103 %{_prefix}/lib/nagios/plugins/check_flexlm
104 %{_prefix}/lib/nagios/plugins/check_ftp
105 %{_prefix}/lib/nagios/plugins/check_http
106 %{_prefix}/lib/nagios/plugins/check_ifoperstatus
107 %{_prefix}/lib/nagios/plugins/check_ifstatus
108 %{_prefix}/lib/nagios/plugins/check_imap
109 %{_prefix}/lib/nagios/plugins/check_ircd
110 %{_prefix}/lib/nagios/plugins/check_load
111 %{_prefix}/lib/nagios/plugins/check_log
112 %{_prefix}/lib/nagios/plugins/check_mailq
113 %{_prefix}/lib/nagios/plugins/check_mrtg
114 %{_prefix}/lib/nagios/plugins/check_mrtgtraf
115 %{_prefix}/lib/nagios/plugins/check_nagios
116 %{_prefix}/lib/nagios/plugins/check_nntp
117 %{_prefix}/lib/nagios/plugins/check_ntp
118 %{_prefix}/lib/nagios/plugins/check_nwstat
119 %{_prefix}/lib/nagios/plugins/check_oracle
120 %{_prefix}/lib/nagios/plugins/check_overcr
121 %{_prefix}/lib/nagios/plugins/check_ping
122 %{_prefix}/lib/nagios/plugins/check_pop
123 %{_prefix}/lib/nagios/plugins/check_procs
124 %{_prefix}/lib/nagios/plugins/check_real
125 %{_prefix}/lib/nagios/plugins/check_rpc
126 %{_prefix}/lib/nagios/plugins/check_sensors
127 %{_prefix}/lib/nagios/plugins/check_smtp
128 %{_prefix}/lib/nagios/plugins/check_ssh
129 %{_prefix}/lib/nagios/plugins/check_swap
130 %{_prefix}/lib/nagios/plugins/check_tcp
131 %{_prefix}/lib/nagios/plugins/check_time
132 %{_prefix}/lib/nagios/plugins/check_udp
133 %{_prefix}/lib/nagios/plugins/check_ups
134 %{_prefix}/lib/nagios/plugins/check_users
135 %{_prefix}/lib/nagios/plugins/check_vsz
136 %{_prefix}/lib/nagios/plugins/check_wave
137 %{_prefix}/lib/nagios/plugins/negate
138 %{_prefix}/lib/nagios/plugins/utils.pm
139 %{_prefix}/lib/nagios/plugins/utils.sh
140 %{_prefix}/lib/nagios/plugins/urlize
141 %endif
143 %if ! %custom
144 %files extras
145 %defattr(775,root,root)
146 %{_prefix}/lib/nagios/plugins/check_fping
147 %{_prefix}/lib/nagios/plugins/check_game
148 %{_prefix}/lib/nagios/plugins/check_ldap
149 %{_prefix}/lib/nagios/plugins/check_mysql
150 %{_prefix}/lib/nagios/plugins/check_pgsql
151 %{_prefix}/lib/nagios/plugins/check_radius
152 %{_prefix}/lib/nagios/plugins/check_snmp
153 %{_prefix}/lib/nagios/plugins/check_hpjd
155 %endif
157 %changelog
158 * Wed Jan 17 2001 Karl DeBisschop <karl@debisschop.net> (1.2.9-1)
159 - switch from /usr/libexec to /usr/lib because FHS has no libexec
160 - use 'custom' macro define to merge with nagios-plugins-custom spec
161 - add check_game to extras
163 * Mon Jun 26 2000 Karl DeBisschop <karl@debisschop.net>
164 - Release 1.2.8-4 (check_ping bug fix)
165 - use bzip2 insted of gzip for mandrake compatibility
167 * Thu Jun 22 2000 Karl DeBisschop <karl@debisschop.net>
168 - Release 1.2.8-3 (bug fixes)
169 - Add macros to spec where possible
171 * Fri Jun 16 2000 Karl DeBisschop <karl@debisschop.net>
172 - Release 1.2.8-2 (bug fixes)
174 * Fri Jun 09 2000 Karl DeBisschop <karl@debisschop.net>
175 - Release to 1.2.8
177 * Wed Jun 07 2000 Karl DeBisschop <karl@debisschop.net>
178 - Upgrade to 1.2.8pre7
180 * Sat Jun 03 2000 Karl DeBisschop <karl@debisschop.net>
181 - Upgraded to 1.2.8pre5
182 - use RPM_OPT_FALGS to set compiler options
183 - cahneg group to Applications/System
185 * Fri May 19 2000 Karl DeBisschop <karl@debisschop.net>
186 - Upgraded to 1.2.8pre3 (release-3)
188 * Mon Mar 20 2000 Karl DeBisschop <karl@debisschop.net>
189 - Upgraded to 1.2.8b2
191 * Tue Dec 14 1999 Adam Jacob <adam@cybertrails.com> (1.2.7-1cvs)
192 - Upgraded package from 1.2.6 to 1.2.7 from the latest CVS code
193 - Modified SPEC file to contain the proper build_root stuff. :)
195 * Tue Oct 19 1999 Mike McHenry <mmchen@minn.net> (1.2.6)
196 - Upgraded package from 1.2.4 to 1.2.6
197 - Resolved dependancy issue with libpq.so
198 - Added support for check_fping
200 * Fri Sep 03 1999 Mike McHenry <mmchen@minn.net> (1.2.4)
201 - Upgraded package from 1.2.2 to 1.2.4
203 * Mon Aug 16 1999 Mike McHenry <mmchen@minn.net> (1.2.2)
204 - First RPM build (1.2.2)