393909
%global _use_internal_dependency_generator 0
393909
393909
%global contentdir       %{_localstatedir}/www/%{name}
393909
%global libdir           %{_localstatedir}/lib/mrtg
393909
393909
Summary:   Multi Router Traffic Grapher
393909
Name:      mrtg
393909
Version:   2.17.7
393909
Release:   10%{?dist}
393909
URL:       http://oss.oetiker.ch/mrtg/
393909
Source0:   http://oss.oetiker.ch/mrtg/pub/mrtg-%{version}.tar.gz
393909
Source1:   http://oss.oetiker.ch/mrtg/pub/mrtg-%{version}.tar.gz.md5
393909
# Source2: configuration file example
393909
Source2:   mrtg.cfg
393909
# Source3: script for filtering out false perl requires
393909
Source3:   filter-requires-mrtg.sh
393909
# Source4: configuration for Apache
393909
Source5:   mrtg-httpd.conf
393909
# Source6: script for filtering out false perl provides
393909
Source6:   filter-provides-mrtg.sh
393909
# Source7: tmpfiles rule
393909
Source7:   mrtg.tmpfiles
393909
# Source8: systemd service file
393909
Source8:   mrtg.service
393909
# Source9: systemd timer file
393909
Source9:   mrtg.timer
393909
Patch0:    mrtg-2.15.0-lib64.patch
393909
Patch1:    mrtg-2.17.2-socket6-fix.patch
393909
# Patch2: some devices return 2**32-2 on ifSpeed (e. g. IBM FibreChannel switches)
393909
Patch2:    mrtg-2.17.4-cfgmaker-ifhighspeed.patch
393909
# Patch3: fixes 'man' option in mrtg-traffic-sum, see rhbz#1612188
393909
Patch3:    mrtg-2.17.7-traffic-sum-man-option.patch
393909
License:   GPLv2+
393909
Requires(post): systemd-units
393909
Requires(preun): systemd-units
393909
Requires(postun): systemd-units
393909
Requires:  perl-Socket6 perl-IO-Socket-INET6 perl-locale
393909
Requires:  gd
393909
BuildRequires: make
393909
BuildRequires: gd-devel, libpng-devel
393909
BuildRequires: perl-generators
393909
BuildRequires: systemd-units
393909
BuildRequires: gcc
393909
393909
%global __find_requires %{SOURCE3}
393909
%global __find_provides %{SOURCE6}
393909
393909
%description
393909
The Multi Router Traffic Grapher (MRTG) is a tool to monitor the traffic
393909
load on network-links. MRTG generates HTML pages containing PNG
393909
images which provide a LIVE visual representation of this traffic.
393909
393909
%prep
393909
%setup -q
393909
%patch0 -p1 -b .lib64
393909
%patch1 -p1 -b .socket6
393909
%patch2 -p1 -b .ifhighspeed
393909
%patch3 -p1 -b .traffic-sum-man-option
393909
393909
for i in doc/mrtg-forum.1 doc/mrtg-squid.1 CHANGES; do
393909
    iconv -f iso-8859-1 -t utf-8 < "$i" > "${i}_"
393909
    mv "${i}_" "$i"
393909
done
393909
393909
# Remove contribution useful on Windows only
393909
rm -rf contrib/nt-services
393909
393909
%build
393909
%configure
393909
# Don't link rateup statically, don't link to indirect dependencies
393909
# LIBS derived from autodetected by removing -Wl,-B(static|dynamic), -lpng, -lz
393909
make LIBS='-lgd -lm'
393909
find contrib -type f -exec \
393909
    %{__perl} -e 's,^#!/\s*\S*perl\S*,#!%{__perl},gi' -p -i \{\} \;
393909
find contrib -name "*.pl" -exec %{__perl} -e 's;\015;;gi' -p -i \{\} \;
393909
find contrib -type f | xargs chmod a-x
393909
393909
%install
393909
rm -rf   $RPM_BUILD_ROOT
393909
make install DESTDIR=$RPM_BUILD_ROOT
393909
393909
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/mrtg
393909
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/mrtg
393909
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lock/mrtg
393909
mkdir -p $RPM_BUILD_ROOT%{contentdir}
393909
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d
393909
393909
install -m 644 images/*   $RPM_BUILD_ROOT%{contentdir}/
393909
sed 's,@CONTENTDIR@,%{contentdir},g; s,@LIBDIR@,%{_localstatedir}/lib/mrtg,g' \
393909
    %{SOURCE2} > $RPM_BUILD_ROOT%{_sysconfdir}/mrtg/mrtg.cfg
393909
chmod 644 $RPM_BUILD_ROOT%{_sysconfdir}/mrtg/mrtg.cfg
393909
393909
install -m 644 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/mrtg.conf
393909
393909
mkdir -p $RPM_BUILD_ROOT/%{_tmpfilesdir}
393909
install -p -D -m 644 %{SOURCE7} $RPM_BUILD_ROOT/%{_tmpfilesdir}/mrtg.conf
393909
393909
# install systemd files
393909
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
393909
install -p -m 644 %{SOURCE8} $RPM_BUILD_ROOT%{_unitdir}/mrtg.service
393909
install -p -m 644 %{SOURCE9} $RPM_BUILD_ROOT%{_unitdir}/mrtg.timer
393909
393909
# Add mrtg-traffic-sum here when upstream decides to install it
393909
for i in mrtg cfgmaker indexmaker mrtg-traffic-sum; do
393909
    sed -i 's;@@lib@@;%{_lib};g' "$RPM_BUILD_ROOT"%{_bindir}/"$i"
393909
done
393909
393909
sed -i 's;@@lib@@;%{_lib};g' "$RPM_BUILD_ROOT"%{_mandir}/man1/*.1
393909
393909
%post
393909
install -d -m 0755 -o root -g root /var/lock/mrtg
393909
restorecon /var/lock/mrtg
393909
%systemd_post mrtg.service
393909
393909
%preun
393909
if [ $1 -eq 0 ]; then
393909
  # Package removal, not upgrade
393909
  rm -rf /var/lock/mrtg
393909
fi
393909
%systemd_preun mrtg.service
393909
393909
%postun
393909
%systemd_postun_with_restart mrtg.service 
393909
393909
%files
393909
%license COPYING
393909
%doc contrib CHANGES COPYRIGHT README THANKS
393909
%dir %{_sysconfdir}/mrtg
393909
%config(noreplace) %{_sysconfdir}/mrtg/mrtg.cfg
393909
%config(noreplace) %{_sysconfdir}/httpd/conf.d/mrtg.conf
393909
%{contentdir}
393909
%{_bindir}/*
393909
%{_libdir}/mrtg2
393909
%exclude %{_libdir}/mrtg2/Pod
393909
%{_mandir}/*/*
393909
%exclude %{_datadir}/mrtg2/icons
393909
%exclude %{_datadir}/doc/mrtg2
393909
%dir %{_localstatedir}/lib/mrtg
393909
%{_tmpfilesdir}/mrtg.conf
393909
%ghost /var/lock/mrtg
393909
%{_unitdir}/mrtg.service
393909
%{_unitdir}/mrtg.timer
393909
393909
%changelog
393909
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.17.7-10
393909
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
393909
  Related: rhbz#1991688
393909
393909
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.17.7-9
393909
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
393909
393909
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.7-8
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
393909
393909
* Mon Nov 09 2020 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.7-7
393909
- Add Requires perl-locale
393909
  Resolves: #1895580
393909
393909
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.7-6
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
393909
393909
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.7-5
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
393909
393909
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.7-4
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
393909
393909
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.7-3
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
393909
393909
* Thu Oct 18 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.7-2
393909
- Fix mrtg-traffic-sum incorrectly ignores 'man' option
393909
  Resolves: #1612188
393909
393909
* Thu Aug 09 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.7-1
393909
- Use %%license
393909
- Update to mrtg-2.17.7
393909
  Resolves: #1600933
393909
393909
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.4-24
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
393909
393909
* Thu Feb 22 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-23
393909
- Add BuildRequires gcc
393909
- Remove Group tag
393909
393909
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.4-22
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
393909
393909
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.4-21
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
393909
393909
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.4-20
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
393909
393909
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.4-19
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
393909
393909
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.17.4-18
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
393909
393909
* Mon Sep 07 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-17
393909
- Fix cfgmaker uninitialized value errors
393909
  Resolves: #1260062
393909
393909
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.4-16
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
393909
393909
* Mon Jan 19 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-15
393909
- Fix packaging of tmpfiles
393909
- Fix bogus dates in the changelog
393909
393909
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.4-14
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
393909
393909
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.4-13
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
393909
393909
* Tue Jan 21 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-12
393909
- Fix wrong SELinux context of /var/lock/mrtg
393909
393909
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.4-11
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
393909
393909
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.17.4-10
393909
- Perl 5.18 rebuild
393909
393909
* Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 2.17.4-9
393909
- rebuild for new GD 2.1.0
393909
393909
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.4-8
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
393909
393909
* Mon Dec 10 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-7
393909
- Apply patch #3
393909
393909
* Thu Nov 29 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-6
393909
- Comment sources
393909
393909
* Wed Oct 31 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-5
393909
- Update mrtg-httpd.conf to work with httpd 2.4
393909
  Resolves: #871434
393909
393909
* Wed Aug 22 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-4
393909
- Use new systemd-rpm macros
393909
  Resolves: #850215
393909
393909
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.4-3
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
393909
393909
* Thu Jun 28 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-2
393909
- Fix cfgmaker don't use ifHighSpeed on IBM FibreChannel switches
393909
  (patch by Peter Bieringer)
393909
393909
* Thu Mar 01 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.4-1
393909
- Update to mrtg-2.17.4
393909
- Use unitdir macro when creating directory for systemd units
393909
393909
* Mon Jan 09 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.3-2
393909
- Fix 'undefined subroutine &SNMP_Session::inet_ntop called at
393909
  /usr/bin/../lib64/mrtg2/SNMP_Session.pm line 549.' error
393909
393909
* Wed Dec 07 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.3-1
393909
- Update to mrtg-2.17.3
393909
393909
* Mon Oct 31 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.2-6
393909
- Remove contribution useful on Windows only from documentation
393909
  Resolves: #749426
393909
393909
* Sun Oct  2 2011 Tom Callaway <spot@fedoraproject.org> - 2.17.2-5
393909
- Resolve bugzilla 732587
393909
393909
* Thu Sep  8 2011 Tom Callaway <spot@fedoraproject.org> - 2.17.2-4
393909
- add missing systemd scriptlets
393909
- drop cron.d config (systemd handles it now)
393909
393909
* Wed Aug 24 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.2-3
393909
- Ship systemd files
393909
  Resolves: #696147
393909
393909
* Thu Mar 24 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.2-2
393909
- Use %%ghost for /var/lock/mrtg
393909
  Resolves: #656629
393909
393909
* Tue Feb 22 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.2-1
393909
- Update to mrtg-2.17.2
393909
393909
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.17.0-2
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
393909
393909
* Wed Dec 15 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.17.0-1
393909
- Update to mrtg-2.17.0
393909
393909
* Mon Dec 13 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.4-4
393909
- Resurrect part of the previous patch lost by mistake
393909
393909
* Mon Dec 13 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.4-3
393909
- Import also getaddrinfo in SNMP_Session.pm
393909
  Resolves: #662116
393909
393909
* Mon Nov 22 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2.16.4-2
393909
- resolve conflict with Socket6 (see bz 438931, 442884, 652158)
393909
393909
* Mon Sep 27 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.4-1
393909
- Update to mrtg-2.16.4
393909
393909
* Wed Apr  7 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.3-1
393909
- Update to mrtg-2.16.3
393909
393909
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16.2-4
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
393909
393909
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16.2-3
393909
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
393909
393909
* Thu Dec 11 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.2-2
393909
- Merge Review and spec cleanup
393909
  Resolves: #226161
393909
393909
* Fri Jun 27 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.2-1
393909
- Update to 2.16.2
393909
- Mark /etc/crond.d/mrtg file as "noreplace" to keep current setup
393909
  during mrtg update
393909
  Related: #391261
393909
- Fix mrtg complains of undefined subroutine AF_UNSPEC
393909
  Resolves: #451783
393909
393909
* Fri Jun  6 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.1-3
393909
- Add gd graphic library to Requires
393909
  Resolves: #446533
393909
393909
* Tue Apr 22 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.16.1-2
393909
- Rebuild
393909
  Resolves: #443116
393909
393909
* Fri Apr 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.16.1-1
393909
- Update to 2.16.1
393909
- fix perl noise (bz 438931, 442884)
393909
393909
* Mon Feb 11 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.15.1-8
393909
- Fix Buildroot
393909
393909
* Fri Jan 18 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.15.1-7
393909
- Rebuild
393909
393909
* Mon Oct 15 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.15.1-6
393909
- Fix another two bad perl provides
393909
393909
* Thu Sep 20 2007 Vitezslav Crhonek <vcrhonek@redhat.com> 2.15.1-5
393909
- Fix bad provides
393909
393909
* Thu Aug 23 2007 Vitezslav Crhonek <vcrhonek@redhat.com> 2.15.1-4
393909
- fix license
393909
- rebuild
393909
393909
* Fri Jun  8 2007 Vitezslav Crhonek <vcrhonek@redhat.com> 2.15.1-3
393909
- Rebuild
393909
393909
* Thu Jun  7 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.15.1-2
393909
- Specfile update, because upstream decides to install mrtg-traffic-sum
393909
  Resolves: #243112
393909
393909
* Mon Feb 12 2007 Miloslav Trmac <mitr@redhat.com> - 2.15.1-1
393909
- Update to mrtg-2.15.1
393909
393909
* Wed Dec  6 2006 Miloslav Trmac <mitr@redhat.com> - 2.15.0-1
393909
- Update to mrtg-2.15.0
393909
- Don't use Prereq: for /sbin/service
393909
- Use (sed -i) instead of perl to make the regexps more readable
393909
393909
* Tue Oct 24 2006 Miloslav Trmac <mitr@redhat.com> - 2.14.7-1
393909
- Update to mrtg-2.14.7
393909
393909
* Wed Aug 30 2006 Miloslav Trmac <mitr@redhat.com> - 2.14.5-2
393909
- Add Requires: perl-Socket6 perl-IO-Socket-INET6 for IPv6 support
393909
393909
* Sun Jul 16 2006 Miloslav Trmac <mitr@redhat.com> - 2.14.5-1
393909
- Update to mrtg-2.14.5
393909
393909
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.14.4-1.1
393909
- rebuild
393909
393909
* Wed Jul  5 2006 Miloslav Trmac <mitr@redhat.com> - 2.14.4-1
393909
- Update to mrtg-2.14.4
393909
393909
* Mon May 15 2006 Miloslav Trmac <mitr@redhat.com> - 2.14.3-1
393909
- Update to mrtg-2.14.3
393909
393909
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 2.13.2-1
393909
- Update to mrtg-2.13.2
393909
393909
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.0-1.2
393909
- bump again for double-long bug on ppc(64)
393909
393909
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.0-1.1
393909
- rebuilt for new gcc4.1 snapshot and glibc changes
393909
393909
* Mon Jan 30 2006 Miloslav Trmac <mitr@redhat.com> - 2.13.0-1
393909
- Update to mrtg-2.13.0
393909
393909
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
393909
- rebuilt
393909
393909
* Mon Sep 12 2005 Miloslav Trmac <mitr@redhat.com> - 2.12.2-2
393909
- Add LANG and LC_ALL definition to cron script for easier copying to command
393909
  line (#167530)
393909
- Don't ship MANIFEST and a very obsolete version of 14all.cgi
393909
- Fix rewriting of perl paths to /usr/bin/perl in contrib scripts
393909
- Make contrib scripts unexecutable to avoid unnecessary rpm dependencies;
393909
  remove unnecessary entries from filter-requires-mrtg.sh
393909
393909
* Mon Jun 20 2005 Miloslav Trmac <mitr@redhat.com> - 2.12.2-1
393909
- Update to mrtg-2.12.2
393909
393909
* Wed May 25 2005 Miloslav Trmac <mitr@redhat.com> - 2.12.1-2
393909
- Remove included old version of PodParser (#158735)
393909
393909
* Tue May 17 2005 Miloslav Trmac <mitr@redhat.com> - 2.12.1-1
393909
- Update to mrtg-2.12.1
393909
- Remove unnecessary BuildRequires, Requires
393909
- Don't link rateup to libpng and libz
393909
393909
* Sun Mar 13 2005 Miloslav Trmac <mitr@redhat.com> - 2.11.1-3
393909
- Fix Timezone[] handling in html output (#149296)
393909
393909
* Fri Mar  4 2005 Miloslav Trmac <mitr@redhat.com> - 2.11.1-2
393909
- Rebuild with gcc 4
393909
393909
* Thu Jan  6 2005 Miloslav Trmac <mitr@redhat.com> - 2.11.1-1
393909
- Update to mrtg-2.11.1
393909
393909
* Mon Dec 13 2004 Miloslav Trmac <mitr@redhat.com> - 2.11.0-1
393909
- Update to mrtg-2.11.0
393909
- Don't install HTML documentation to /var/www/mrtg
393909
- Clean up %%install a bit
393909
393909
* Tue Nov 23 2004 Miloslav Trmac <mitr@redhat.com> - 2.10.15-3
393909
- Convert man pages to UTF-8
393909
393909
* Mon Nov 22 2004 Jindrich Novy <jnovy@redhat.com> 2.10.15-2
393909
- remove bogus characters from man pages to prevent
393909
  man displaying the page is in wrong encoding (#139341)
393909
393909
* Tue Aug 17 2004 Miloslav Trmac <mitr@redhat.com> - 2.10.15-1
393909
- Update to 2.10.15
393909
- Use a more generic URL
393909
- Don't link rateup statically
393909
- Move threshold and log files to /var/lib/mrtg, lock files to /var/lock/mrtg
393909
393909
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
393909
- rebuilt
393909
393909
* Tue Apr 20 2004 Joe Orton <jorton@redhat.com> 2.10.5-3
393909
- Allow/Deny by address in conf.d/mrtg.conf (#113089)
393909
393909
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
393909
- rebuilt
393909
393909
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
393909
- rebuilt
393909
393909
* Sat Oct 25 2003 Florian La Roche <Florian.LaRoche@redhat.de>
393909
- update to 2.10.5
393909
- to not set LD_RUN_PATH
393909
393909
* Sat Aug  2 2003 Joe Orton <jorton@redhat.com> 2.9.29-5
393909
- rebuild
393909
393909
* Fri Aug  1 2003 Joe Orton <jorton@redhat.com> 2.9.29-4.ent
393909
- move default output directory to /var/www/mrtg
393909
393909
* Mon Jun  9 2003 Nalin Dahyabhai <nalin@redhat.com> 2.9.28-4
393909
- disable use of RPM's internal dependency generator so that we can filter out
393909
  requirements of the contrib scripts included in the docs directory
393909
393909
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
393909
- rebuilt
393909
393909
* Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
393909
- add explicit epoch's where needed.
393909
393909
* Tue May  6 2003 Nalin Dahyabhai <nalin@redhat.com> 2.9.28-2
393909
- rebuild
393909
393909
* Wed Apr 30 2003 Nalin Dahyabhai <nalin@redhat.com> 2.9.28-1
393909
- update to 2.9.29
393909
393909
* Wed Mar  5 2003 Nalin Dahyabhai <nalin@redhat.com> 2.9.17-14
393909
- fixup lib/lib64 references (#82916)
393909
393909
* Fri Feb  7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.9.17-13
393909
- move crontab data to /etc/cron.d
393909
- add trigger to remove crontab data from /etc/crontab on removal of
393909
  older versions
393909
393909
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
393909
- rebuilt
393909
393909
* Tue Dec 17 2002 Tim Powers <timp@redhat.com> 2.9.17-11
393909
- PreReq crontabs
393909
393909
* Sat Dec 14 2002 Tim Powers <timp@redhat.com> 2.9.17-10
393909
- don't use rpms internal dep generator
393909
393909
* Thu Dec 12 2002 Tim Powers <timp@redhat.com> 2.9.17-9
393909
- rebuild on all arches
393909
393909
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
393909
- automated rebuild
393909
393909
* Wed May 29 2002 Chip Turner <cturner@redhat.com>
393909
- added filter for soft perl dependencies
393909
393909
* Sun May 26 2002 Tim Powers <timp@redhat.com>
393909
- automated rebuild
393909
393909
* Fri May 17 2002 Nalin Dahyabhai <nalin@redhat.com> 2.9.17-4
393909
- rebuild in new environment
393909
393909
* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 2.9.17-3
393909
- rebuild
393909
393909
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
393909
- automated rebuild
393909
393909
* Thu Nov  1 2001 Nalin Dahyabhai <nalin@redhat.com> 2.9.17-1
393909
- update to 2.9.17
393909
- use FHS macros
393909
- install the .gif files as well
393909
- copyright: distributable -> license: GPL
393909
393909
* Tue Jul  3 2001 Tim Powers <timp@redhat.com>
393909
- changed description to indicate that it creates PNG images and not GIF images
393909
393909
* Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
393909
- set LIBS=-lfreetype and LDFLAGS="-lgd -lpng -lfreetype -lm" to link the gd
393909
  support with freetype, which it needs
393909
- remove Packager: tag (was Packager: Tim Verhoeven <dj@sin.khk.be>)
393909
393909
* Mon May 21 2001 Tim Powers <timp@redhat.com>
393909
- rebuilt for the distro
393909
393909
* Mon Mar  5 2001 Tim Powers <timp@redhat.com>
393909
- fixed bad group
393909
393909
* Thu Dec 14 2000 Tim Powers <timp@redhat.com>
393909
- updated to 2.9.6
393909
393909
* Tue Dec 12 2000 Tim Powers <timp@redhat.com>
393909
- updated to 2.9.5
393909
393909
* Mon Nov 20 2000 Tim Powers <timp@redhat.com>
393909
- rebuilt to fix bad dir perms
393909
393909
* Mon Nov 13 2000 Tim Powers <timp@redhat.com>
393909
- using this new spec for 7.1 build
393909
393909
* Fri Oct 27 2000  Henri Gomez <hgomez@slib.fr>
393909
 [2.9.4]
393909
- compiled on Redhat 6.1 box plus updates with rpm-3.0.5
393909
393909
* Thu Oct 26 2000  Henri Gomez <hgomez@slib.fr>
393909
 [2.9.2]
393909
- clean up spec file for 2.9 release
393909
  (no .gif, cfgmaker_ip removed)
393909
- mrtg 2.9 look for .pm in /usr/lib/mrtg2, so no more need
393909
  to relocate .pm at post time.
393909
- mrtg config (mrtg.cfg) goes now in /etc/mrtg/
393909
- added manual to rpm
393909
- spec file adapted to RH 7.0
393909
393909
* Wed Feb 9 2000 Tim Verhoeven <dj@sin.khk.be>
393909
 [2.8.12]
393909
- source archiv changed back to .gz
393909
- upgraded to mrtg version 2.8.12
393909
393909
* Sat Nov 13 1999 Peter Hanecak <hanecak@megaloman.sk>
393909
 [2.8.9]
393909
- source archiv changed to .bz2
393909
393909
* Fri Aug 27 1999 Henri Gomez <gomez@slib.fr>
393909
 [2.8.8]
393909
- important release since rrd support is added
393909
  It came from Rainer Bawidamann work. If you have rrdtool RPM
393909
  installed, just add UseRRDTool: Yes in your config files.
393909
- added latest patch for mrtg-rrd.
393909
- to convert your mrtg logs to rrd format, use log2rrd.pl
393909
  you can found on rrdtool package.
393909
393909
* Mon Aug 16 1999 Henri Gomez <gomez@slib.fr>
393909
 [2.8.6]
393909
393909
* Fri Jul 23 1999 Henri Gomez <gomez@slib.fr>
393909
 [2.8.4]
393909
- mrtg could use now png instead of gif via gd1.6.1
393909
  but since gd1.6.1 remove all gif reference it could
393909
  break your dependencies, so we don't use it for now.
393909
* Tue Jun 15 1999 Henri Gomez <gomez@slib.fr>
393909
 [2.7.5]
393909
- removed gd-devel requires, RH5.x use libgd-devel and RH6 gd-devel.
393909
- removed CR from perl files in contrib.
393909
- added cfgmaker_ip in binaries.
393909
- rework modules install/de-install for RH5.x/6.0 compat
393909
393909
* Wed Jun  9 1999 Henri Gomez <gomez@slib.fr>
393909
 [2.7.4-2]
393909
- set perl path for contribs
393909
- set SNMP's perl to /usr/lib/perl5/site_perl (clean for RH5.x and RH6.0)
393909
393909
* Wed May  5 1999 Ian Macdonald <ianmacd@xs4all.nl>
393909
  [2.7.4-1]
393909
- changed Perl module installation to be version independent
393909
- changed libgd dependency to gd
393909
- changed URL
393909
- strip binaries
393909
- include contrib directory as documentation
393909
393909
* Tue Mar  2 1999 Henri Gomez <gomez@slib.fr>
393909
  [2.6.6]
393909
393909
* Wed Feb 17 1999 Henri Gomez <gomez@slib.fr>
393909
  [2.6.4]
393909
- removed mrtg-squid (specific OIDS)
393909
- cfgmaker and indexmaker now /usr/bin
393909
- libgd must be >= 1.3
393909
393909
* Fri Jan 29 1999 Henri Gomez <gomez@slib.fr>
393909
  [2.5.4c-3]
393909
- Added mrtg-squid to monitor squid (specific OIDS)
393909
393909
* Thu Jan 28 1999 Henri Gomez <gomez@slib.fr>
393909
  [2.5.4c-2]
393909
- applied squid snmp patch
393909
393909
* Wed Jan 27 1999 Henri Gomez <gomez@slib.fr>
393909
  [2.5.4c-1]
393909
- upgraded to 2.5.4c.
393909
- added require libgd-devel
393909
393909
* Mon Nov 30 1998 Arne Coucheron <arneco@online.no>
393909
  [2.5.4a-1]
393909
393909
* Thu Jun 18 1998 Arne Coucheron <arneco@online.no>
393909
  [2.5.3-1]
393909
- using %%{name} and %%{version} macros
393909
- using %%defattr macro in filelist
393909
- using install -d in various places instead of cp
393909
- added -q parameter to %%setup
393909
- removed older changelogs