]> git.pld-linux.org Git - packages/cnmonitor.git/commitdiff
- initial
authorSÅ‚awomir Paszkiewicz <paszczus@pld-linux.org>
Wed, 12 Aug 2009 06:31:20 +0000 (06:31 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cnmonitor.spec -> 1.1

cnmonitor.spec [new file with mode: 0644]

diff --git a/cnmonitor.spec b/cnmonitor.spec
new file mode 100644 (file)
index 0000000..00bc184
--- /dev/null
@@ -0,0 +1,79 @@
+
+%define                _subver 4
+Summary:       Directory Server Monitoring application
+Name:          cnmonitor
+Version:       1.0.1
+Release:       0.%{_subver}.1
+License:       GPL
+Group:         Applications/WWW
+Source0:       http://dl.sourceforge.net/project/cnmonitor/CN%3DMonitor/1.0.1/%{name}-%{version}-4.tgz
+# Source0-md5: 570ad8a6f7174be21e9c92cbf6a620dd
+URL:           http://cnmonitor.sourceforge.net/
+BuildRequires: rpmbuild(macros) >= 1.268
+Requires:      webapps
+Requires(triggerpostun):       sed >= 4.0
+Requires:      webserver(php)
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define                _webapps        /etc/webapps
+%define                _webapp         %{name}
+%define                _sysconfdir     %{_webapps}/%{_webapp}
+%define                _appdir         %{_datadir}/%{_webapp}
+
+%description
+Directory Server Monitoring application. The idea is to monitor entire
+small to large scaled deployed directory server environments.
+
+%prep
+%setup -q -n %{name}
+
+cat > lighttpd.conf <<'EOF'
+alias.url += (
+    "/%{name}" => "%{_appdir}",
+)
+EOF
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_sysconfdir}
+install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_appdir}}
+
+cp -a {bin,conf,sql,www} $RPM_BUILD_ROOT%{_appdir}
+cp -a config $RPM_BUILD_ROOT%{_sysconfdir}
+cp -a conf/httpd/cnmonitor.conf $RPM_BUILD_ROOT%{_sysconfdir}/apache.conf
+cp -a conf/httpd/cnmonitor.conf $RPM_BUILD_ROOT%{_sysconfdir}/httpd.conf
+cp -a lighttpd.conf $RPM_BUILD_ROOT%{_sysconfdir}/lighttpd.conf
+ln -s %{_sysconfdir} $RPM_BUILD_ROOT%{_appdir}/config
+
+%triggerin -- apache1 < 1.3.37-3, apache1-base
+%webapp_register apache %{_webapp}
+
+%triggerun -- apache1 < 1.3.37-3, apache1-base
+%webapp_unregister apache %{_webapp}
+
+%triggerin -- apache < 2.2.0, apache-base
+%webapp_register httpd %{_webapp}
+
+%triggerun -- apache < 2.2.0, apache-base
+%webapp_unregister httpd %{_webapp}
+
+%triggerin -- lighttpd
+%webapp_register lighttpd %{_webapp}
+
+%triggerun -- lighttpd
+%webapp_unregister lighttpd %{_webapp}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc doc/*.pdf
+%dir %attr(750,root,http) %{_sysconfdir}
+%dir %attr(750,root,http) %{_sysconfdir}/config
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.conf
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/httpd.conf
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/lighttpd.conf
+%attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/config/*.php
+%{_appdir}
This page took 0.070939 seconds and 4 git commands to generate.