- Updated to latest 4.1 git develop branch ga6667bb - Translation Updates - QA: Convert input's to buttons OBS-URL: https://build.opensuse.org/request/show/1294458 OBS-URL: https://build.opensuse.org/package/show/server:monitoring/cacti-plugin-cycle?expand=0&rev=13
69 lines
2.2 KiB
RPMSpec
69 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package cacti-plugin-cycle
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
%define realname cycle
|
|
Name: cacti-plugin-cycle
|
|
Version: 4.1+git130.ga6667bb
|
|
Release: 0
|
|
Summary: View the Cacti graphs one by one after a specified time delay
|
|
License: GPL-2.0
|
|
Group: Development/Tools/Other
|
|
Url: https://github.com/Cacti/plugin_cycle
|
|
Source0: %{realname}-v%{version}.zip
|
|
Requires: cacti
|
|
BuildRequires: unzip
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
%define realname cycle
|
|
%if 0%{?suse_version} <= 1210
|
|
%define prefix %{_datadir}/cacti
|
|
%else
|
|
%define prefix /srv/www/cacti
|
|
%endif
|
|
Obsoletes: cacti-PA-cycle
|
|
Provides: cacti-PA-cycle
|
|
|
|
%description
|
|
This plugin allows you to automatically view the Cacti graphs one by one after a specified time delay. It allows you to select a tree or branch as well as specifically selected graphs.
|
|
|
|
%prep
|
|
%setup -q -n %{realname}
|
|
find . -type f -name "*.orig" -exec rm {} \;
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{prefix}/plugins/%{realname}
|
|
cp -r * %{buildroot}%{prefix}/plugins/%{realname}/.
|
|
mkdir -p %{buildroot}%{_docdir}/cacti/plugins/%{realname}
|
|
mv %{buildroot}%{prefix}/plugins/%{realname}/LICENSE %{buildroot}%{_docdir}/cacti/plugins/%{realname}/.
|
|
mv %{buildroot}%{prefix}/plugins/%{realname}/README.md %{buildroot}%{_docdir}/cacti/plugins/%{realname}/.
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{prefix}/
|
|
%dir %{_docdir}/cacti
|
|
%dir %{_docdir}/cacti/plugins
|
|
%{_docdir}/cacti/plugins/%{realname}/
|
|
|
|
%if 0%{?suse_version} >= 1210
|
|
%dir /srv/www/
|
|
%dir %{prefix}
|
|
%endif
|
|
|
|
%changelog
|