summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2004-03-02 06:17:53 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2004-03-02 06:17:53 (GMT)
commite2e3017e7af883503eb42d28ba69a90274a016d2 (patch)
treef6c9013688a66e50e0b83449bbfb67c445b17abd
parent439bf19ea97fd72f058ea2124b39fd4b920fd8b2 (diff)
downloadmonitoring-plugins-e2e3017e7af883503eb42d28ba69a90274a016d2.tar.gz
make specfile into a template which can generate a generic spec plus specs suitable for various repositories
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@837 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--Makefile.am8
-rw-r--r--nagios-plugins.spec.in140
-rw-r--r--pkg/fedora/requires67
3 files changed, 101 insertions, 114 deletions
diff --git a/Makefile.am b/Makefile.am
index f427a11..2177840 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -12,14 +12,18 @@ localedir = $(datadir)/locale
12DEFS = -DLOCALEDIR=\"$(localedir)\" 12DEFS = -DLOCALEDIR=\"$(localedir)\"
13 13
14dist-hook: 14dist-hook:
15 make THANKS nagios-plugins.spec 15 make THANKS nagios-plugins.spec pkg/fedora/nagios-plugins.spec
16 16
17test: 17test:
18 cd plugins; $(MAKE) test 18 cd plugins; $(MAKE) test
19 cd plugins-scripts; $(MAKE) test 19 cd plugins-scripts; $(MAKE) test
20 20
21nagios-plugins.spec: nagios-plugins.spec.in 21nagios-plugins.spec: nagios-plugins.spec.in
22 sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;" $? > $@ 22 sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;s/^%%{requires}$$//" $? > $@
23
24pkg/fedora/nagios-plugins.spec: nagios-plugins.spec.in
25 $(top_srcdir)/mkinstalldirs pkg/fedora
26 sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;/^# Requires$$/r $(top_srcdir)/pkg/fedora/requires" $? > $@
23 27
24# Solaris pkgmk 28# Solaris pkgmk
25BUILDDIR = build-solaris 29BUILDDIR = build-solaris
diff --git a/nagios-plugins.spec.in b/nagios-plugins.spec.in
index 0fafb00..65e5c97 100644
--- a/nagios-plugins.spec.in
+++ b/nagios-plugins.spec.in
@@ -1,103 +1,65 @@
1%{!?custom:%global custom 0} 1Name: nagios-plugins
2 2Version: %%{VERSION}
3%define archive nagios-plugins 3Release: %%{RELEASE}
4 4Summary: Host/service/network monitoring program plugins for Nagios
5%if %custom
6%define name %{archive}-custom
7%else
8%define name %{archive}
9%endif
10 5
11%define version %%{VERSION} 6Group: Applications/System
12%define release %%{RELEASE} 7License: GPL
13%define source %{archive}-%{version} 8URL: http://nagiosplug.sourceforge.net/
9Source0: http://dl.sf.net/sourceforge/nagiosplug/%{name}-%{version}.tar.gz
10BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14 11
15Name: %{name}
16Version: %{version}
17Release: %{release}
18Copyright: GPL
19Source: %{source}.tar.gz
20BuildRoot: %{_tmppath}/%{name}-buildroot
21Prefix: %{_prefix}/lib/nagios/plugins 12Prefix: %{_prefix}/lib/nagios/plugins
22Packager: Karl DeBisschop <kdebisschop@users.sourceforge.net> 13Packager: Karl DeBisschop <kdebisschop@users.sourceforge.net>
23Vendor: Nagios Plugin Development Group 14Vendor: Nagios Plugin Development Group
24Provides: nagios-plugins 15Provides: nagios-plugins
25%if %custom
26Obsoletes: nagios-plugins nagios-plugins-extras
27%else
28Obsoletes: nagios-plugins-custom
29%endif
30AutoReqProv: no
31Summary: Host/service/network monitoring program plugins for Nagios
32Group: Applications/System
33
34#BuildRequires: nagios-devel
35#BuildRequires: postgresql-devel, openssl-devel, bind-devel, openldap-devel, mysql-devel
36#BuildRequires: perl(Net::SNMP), %{?rh73:, ucd-snmp-devel} %{?rh80:, net-snmp-devel} %{?rh90:, net-snmp-devel}
37#BuildRequires: fping, bind-utils, ntp, samba-client, openssh-clients, radiusclient-devel
38#BuildRequires: qstat
39
40#Requires: perl, perl(Net::SNMP), openssl
41 16
42%description 17%{!?custom:%global custom 0}
43 18Obsoletes: nagios-plugins-custom nagios-plugins-extras
44Nagios is a program that will monitor hosts and services on your
45network, and to email or page you when a problem arises or is
46resolved. Nagios runs on a unix server as a background or daemon
47process, intermittently running checks on various services that you
48specify. The actual service checks are performed by separate "plugin"
49programs which return the status of the checks to Nagios.
50 19
51This package contains the basic plugins necessary for use with the
52Nagios package. This package should install cleanly on almost any
53RPM-based system.
54 20
21# Requires
55 22
56%package extras
57Summary: Plugins which depend on the presence of other packages
58Group: Applications/System
59 23
60%description extras 24%description
61 25
62Nagios is a program that will monitor hosts and services on your 26Nagios is a program that will monitor hosts and services on your
63network, and to email or page you when a problem arises or is 27network, and to email or page you when a problem arises or is
64resolved. Nagios runs on a unix server as a background or daemon 28resolved. Nagios runs on a unix server as a background or daemon
65process, intermittently running checks on various services that you 29process, intermittently running checks on various services that you
66specify. The actual service checks are performed by separate "plugin" 30specify. The actual service checks are performed by separate "plugin"
67programs which return the status of the checks to Nagios. 31programs which return the status of the checks to Nagios. This package
68 32contains those plugins.
69This package contains plugins which use additional libraries or system
70calls that are not installed on all systems. As a result, most users
71will need to install the '--nodeps' option when invoking `rpm`
72
73#Requires: fping, openldap, mysql, postgresql-libs
74 33
75 34
76%prep 35%prep
77%setup -q -n %{source} 36%setup -q
78 37
79 38
80%build 39%build
81CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \ 40./configure \
82--prefix=%{_prefix} \ 41--prefix=%{_prefix} \
83--exec-prefix=%{_exec_prefix} \ 42--exec-prefix=%{_exec_prefix} \
84--libexecdir=%{_exec_prefix}/lib/nagios/plugins \ 43--libexecdir=%{_exec_prefix}/lib/nagios/plugins \
85--sysconfdir=%{_sysconfdir}/nagios \ 44--sysconfdir=%{_sysconfdir}/nagios \
86--datadir=%{_datadir} \ 45--datadir=%{_datadir} \
87--with-cgiurl=/nagios/cgi-bin 46--with-cgiurl=/nagios/cgi-bin
88make 47make %{?_smp_mflags}
89 48
90 49
91%install 50%install
51rm -rf $RPM_BUILD_ROOT
92make AM_INSTALL_PROGRAM_FLAGS="" DESTDIR=${RPM_BUILD_ROOT} install 52make AM_INSTALL_PROGRAM_FLAGS="" DESTDIR=${RPM_BUILD_ROOT} install
93install -d ${RPM_BUILD_ROOT}/etc/nagios 53install -d ${RPM_BUILD_ROOT}/etc/nagios
94install -m 664 command.cfg ${RPM_BUILD_ROOT}/etc/nagios 54install -m 664 command.cfg ${RPM_BUILD_ROOT}/etc/nagios
55%find_lang %{name}
56
95 57
96%clean 58%clean
97rm -rf $RPM_BUILD_ROOT 59rm -rf $RPM_BUILD_ROOT
98 60
99 61
100%files 62%files -f %{name}.lang
101%defattr(-,root,root) 63%defattr(-,root,root)
102%config(missingok,noreplace) /etc/nagios/command.cfg 64%config(missingok,noreplace) /etc/nagios/command.cfg
103%doc CODING COPYING FAQ INSTALL LEGAL README REQUIREMENTS SUPPORT THANKS 65%doc CODING COPYING FAQ INSTALL LEGAL README REQUIREMENTS SUPPORT THANKS
@@ -106,9 +68,13 @@ rm -rf $RPM_BUILD_ROOT
106%dir %{_exec_prefix}/lib/nagios/plugins 68%dir %{_exec_prefix}/lib/nagios/plugins
107%{_datadir}/locale/de/LC_MESSAGES/nagios-plugins.mo 69%{_datadir}/locale/de/LC_MESSAGES/nagios-plugins.mo
108%{_datadir}/locale/fr/LC_MESSAGES/nagios-plugins.mo 70%{_datadir}/locale/fr/LC_MESSAGES/nagios-plugins.mo
71
109%if %custom 72%if %custom
73
110%{_exec_prefix}/lib/nagios/plugins/* 74%{_exec_prefix}/lib/nagios/plugins/*
75
111%else 76%else
77
112%{_exec_prefix}/lib/nagios/plugins/check_by_ssh 78%{_exec_prefix}/lib/nagios/plugins/check_by_ssh
113%{_exec_prefix}/lib/nagios/plugins/check_breeze 79%{_exec_prefix}/lib/nagios/plugins/check_breeze
114%{_exec_prefix}/lib/nagios/plugins/check_dig 80%{_exec_prefix}/lib/nagios/plugins/check_dig
@@ -155,11 +121,6 @@ rm -rf $RPM_BUILD_ROOT
155%{_exec_prefix}/lib/nagios/plugins/utils.sh 121%{_exec_prefix}/lib/nagios/plugins/utils.sh
156%{_exec_prefix}/lib/nagios/plugins/urlize 122%{_exec_prefix}/lib/nagios/plugins/urlize
157%{_exec_prefix}/lib/nagios/plugins/check_file_age 123%{_exec_prefix}/lib/nagios/plugins/check_file_age
158%endif
159
160%if ! %custom
161%files extras
162%defattr(775,root,root)
163%{_exec_prefix}/lib/nagios/plugins/check_fping 124%{_exec_prefix}/lib/nagios/plugins/check_fping
164%{_exec_prefix}/lib/nagios/plugins/check_game 125%{_exec_prefix}/lib/nagios/plugins/check_game
165%{_exec_prefix}/lib/nagios/plugins/check_ldap 126%{_exec_prefix}/lib/nagios/plugins/check_ldap
@@ -172,50 +133,5 @@ rm -rf $RPM_BUILD_ROOT
172%endif 133%endif
173 134
174%changelog 135%changelog
175* Wed Jan 17 2001 Karl DeBisschop <karl@debisschop.net> (1.2.9-1) 136* Tue Mar 04 2004 Karl DeBisschop <karl[AT]debisschop.net> - 1.4.0alpha1
176- switch from /usr/libexec to /usr/lib because FHS has no libexec 137- extensive rewrite to facilitate processing into various distro-compatible specs
177- use 'custom' macro define to merge with nagios-plugins-custom spec
178- add check_game to extras
179
180* Mon Jun 26 2000 Karl DeBisschop <karl@debisschop.net>
181- Release 1.2.8-4 (check_ping bug fix)
182- use bzip2 insted of gzip for mandrake compatibility
183
184* Thu Jun 22 2000 Karl DeBisschop <karl@debisschop.net>
185- Release 1.2.8-3 (bug fixes)
186- Add macros to spec where possible
187
188* Fri Jun 16 2000 Karl DeBisschop <karl@debisschop.net>
189- Release 1.2.8-2 (bug fixes)
190
191* Fri Jun 09 2000 Karl DeBisschop <karl@debisschop.net>
192- Release to 1.2.8
193
194* Wed Jun 07 2000 Karl DeBisschop <karl@debisschop.net>
195- Upgrade to 1.2.8pre7
196
197* Sat Jun 03 2000 Karl DeBisschop <karl@debisschop.net>
198- Upgraded to 1.2.8pre5
199- use RPM_OPT_FALGS to set compiler options
200- cahneg group to Applications/System
201
202* Fri May 19 2000 Karl DeBisschop <karl@debisschop.net>
203- Upgraded to 1.2.8pre3 (release-3)
204
205* Mon Mar 20 2000 Karl DeBisschop <karl@debisschop.net>
206- Upgraded to 1.2.8b2
207
208* Tue Dec 14 1999 Adam Jacob <adam@cybertrails.com> (1.2.7-1cvs)
209- Upgraded package from 1.2.6 to 1.2.7 from the latest CVS code
210- Modified SPEC file to contain the proper build_root stuff. :)
211
212* Tue Oct 19 1999 Mike McHenry <mmchen@minn.net> (1.2.6)
213- Upgraded package from 1.2.4 to 1.2.6
214- Resolved dependancy issue with libpq.so
215- Added support for check_fping
216
217* Fri Sep 03 1999 Mike McHenry <mmchen@minn.net> (1.2.4)
218- Upgraded package from 1.2.2 to 1.2.4
219
220* Mon Aug 16 1999 Mike McHenry <mmchen@minn.net> (1.2.2)
221- First RPM build (1.2.2)
diff --git a/pkg/fedora/requires b/pkg/fedora/requires
new file mode 100644
index 0000000..9d20014
--- /dev/null
+++ b/pkg/fedora/requires
@@ -0,0 +1,67 @@
1Requires: fileutils
2Requires: gawk
3Requires: grep
4Requires: db4
5Requires: openldap
6Requires: mysql
7Requires: openssl
8Requires: postgresql-libs
9Requires: cyrus-sasl
10Requires: net-snmp
11Requires: ntp
12Requires: pam
13Requires: perl
14Requires: python
15Requires: samba-client
16Requires: shadow-utils
17Requires: textutils
18Requires: traceroute
19Requires: net-snmp-utils
20Requires: zlib
21Requires: /usr/bin/dig
22Requires: /usr/bin/mailq
23Requires: /usr/bin/ssh
24Requires: /usr/bin/snmpgetnext
25Requires: /usr/bin/snmpget
26Requires: /usr/bin/who
27Requires: /usr/bin/smbclient
28Requires: /usr/sbin/ntpq
29Requires: /usr/sbin/ntpdc
30Requires: /usr/sbin/ntpdate
31Requires: /usr/sbin/rpcinfo
32Requires: /usr/bin/uptime
33Requires: /usr/bin/host
34Requires: /usr/bin/nslookup
35Requires: /bin/ping
36Requires: /bin/ps
37BuildRequires: automake
38BuildRequires: autoconf
39BuildRequires: /bin/hostname
40BuildRequires: /bin/basename
41BuildRequires: db4-devel
42BuildRequires: openldap-devel
43BuildRequires: mysql-devel
44BuildRequires: openssl-devel
45BuildRequires: openssl
46BuildRequires: cyrus-sasl-devel
47BuildRequires: net-snmp-devel
48BuildRequires: postgresql-devel
49BuildRequires: zlib-devel
50BuildRequires: pam-devel
51BuildRequires: krb5-devel
52BuildRequires: /usr/bin/dig
53BuildRequires: /usr/bin/mailq
54BuildRequires: /usr/bin/ssh
55BuildRequires: /usr/bin/snmpgetnext
56BuildRequires: /usr/bin/snmpget
57BuildRequires: /usr/bin/who
58BuildRequires: /usr/bin/smbclient
59BuildRequires: /usr/sbin/ntpq
60BuildRequires: /usr/sbin/ntpdc
61BuildRequires: /usr/sbin/ntpdate
62BuildRequires: /usr/sbin/rpcinfo
63BuildRequires: /usr/bin/uptime
64BuildRequires: /usr/bin/host
65BuildRequires: /usr/bin/nslookup
66BuildRequires: /bin/ping
67BuildRequires: /bin/ps