package created using the webbuild interface [release 1.0-1mamba;Tue May 27 2014]

This commit is contained in:
Silvan Calarco 2024-01-05 17:18:41 +01:00
parent 1651c1c1e3
commit dd93373042
2 changed files with 66 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# qtmib
qtmib is an easy-to-use SNMP MIB Browser based on QT4 library. It is build as a front-end for net-snmp tools, and it allows the user to query any SNMP-enabled device. It implements SNMPv1 and SNMPv2c, and it is released under GPL v2 license.

64
qtmib.spec Normal file
View File

@ -0,0 +1,64 @@
Name: qtmib
Version: 1.0
Release: 1mamba
Summary: An easy-to-use SNMP MIB Browser based on QT4 library
Group: Graphical Desktop/Applications/Networking
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://qtmib.sourceforge.net/
Source: http://downloads.sourceforge.net/project/qtmib/qtmib/qtmib-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libqt4-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
Provides: snmpbrowser
Obsoletes: snmpbrowser
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
qtmib is an easy-to-use SNMP MIB Browser based on QT4 library. It is build as a front-end for net-snmp tools, and it allows the user to query any SNMP-enabled device. It implements SNMPv1 and SNMPv2c, and it is released under GPL v2 license.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall PREFIX=%{buildroot}%{_prefix}/
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%posttrans
update-desktop-database -q >/dev/null 2>&1
:
%files
%defattr(-,root,root)
%{_bindir}/qtmib
%{_bindir}/qtmib-discover
%{_bindir}/qtmib-report
%{_bindir}/qtmib-translate
%{_datadir}/applications/qtmib.desktop
%{_datadir}/doc/qtmib/COPYING
%{_datadir}/doc/qtmib/README
%{_datadir}/doc/qtmib/RELNOTES
%{_mandir}/man1/qtmib-discover.1*
%{_mandir}/man1/qtmib-report.1*
%{_mandir}/man1/qtmib-translate.1*
%{_mandir}/man1/qtmib.1*
%{_datadir}/pixmaps/qtmib.png
%doc COPYING
%changelog
* Tue May 27 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0-1mamba
- package created using the webbuild interface