Changes of Revision 2
[-] | Added | cacti-cactid.spec |
x 1
2 +Summary: Threaded poller for Cacti written in C 3 +Name: cacti-cactid 4 +Version: 0.8.6i 5 +Release: 1 6 +License: GPL 7 +Group: Application/System 8 +Source0: cacti-cactid-%{version}.tar.gz 9 +URL: http://www.cacti.net/cactid_info.php 10 +BuildRoot: %{_tmppath}/%{name}-root 11 +Requires: cacti, mysql, net-snmp, rrdtool 12 +BuildRequires: mysql-devel, net-snmp-devel, openssl, openssl-devel 13 + 14 +%description 15 +Cactid is a supplemental poller for Cacti that makes use of pthreads to achieve 16 +excellent performance. 17 + 18 +%prep 19 + 20 +%setup 21 + 22 +%build 23 + 24 +%configure 25 +%{__make} %{?_smp_mflags} 26 + 27 +%install 28 +rm -rf %{buildroot} 29 +%{__install} -D -m0644 cactid.conf %{buildroot}%{_sysconfdir}/cactid.conf 30 + 31 +%makeinstall 32 + 33 +%clean 34 +rm -rf %{buildroot} 35 + 36 +%files 37 +%defattr(-, root, root, 0755) 38 +%doc AUTHORS CHANGELOG COPYING INSTALL NEWS 39 +%doc LICENSE LICENSE.LGPL README README-WINDOWS 40 +%config %{_sysconfdir}/cactid.conf 41 +%{_bindir}/* 42 +%exclude %{_includedir}/* 43 + 44 +%changelog 45 +* Mon Dec 11 2006 Mauricio Teixeira <mteixeira@webset.net> 0.8.6i 46 +- upgrade from 0.8.6g to 0.8.6i 47 + 48 +* Thu Oct 02 2006 Mauricio Teixeira <mteixeira@webset.net> 0.8.6g 49 +- Requires 'cacti'. 50 + 51 +* Thu Aug 31 2006 Mauricio Teixeira <mteixeira@webset.net> 0.8.6g 52 +- Added openssl and openssl-devel to build requires 53 +- Ported into Build Service 54 |