Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Fedora Release Engineering
978799253a dist-git conversion 2010-07-29 15:12:55 +00:00
Bill Nottingham
9389f56515 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:15:23 +00:00
291fcefaef - Updated to new upstream 0.6.6 2009-06-27 15:31:13 +00:00
c83c7fb523 - Updated to new upstream 0.6.5 2009-05-19 13:08:06 +00:00
5fc5b0ccdf Initial import 2009-05-07 10:44:31 +00:00
eb6a68a57a Initialize branch F-9 for wavemon 2009-05-06 21:06:45 +00:00
5 changed files with 71 additions and 21 deletions

View file

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
wavemon-0.6.6.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: wavemon
# $Id$
NAME := wavemon
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -0,0 +1 @@
62baf843be65317fc1efb8a22e3ef604 wavemon-0.6.6.tar.bz2

69
wavemon.spec Normal file
View file

@ -0,0 +1,69 @@
Name: wavemon
Version: 0.6.6
Release: 1%{?dist}
Summary: Ncurses-based monitoring application for wireless network devices
Group: Applications/Internet
License: GPLv2+
URL: http://eden-feed.erg.abdn.ac.uk/wavemon/
Source0: http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: ncurses-devel
Requires: wireless-tools
%description
wavemon is a wireless device monitoring application that allows you to
watch all important information like device configuration, encryption,
and power management parameters and network information at once.
Adaptive level bargraphs for link quality, signal/noise strength and
signal-to-noise ratio. The customizeable "level alarm" feature that
notices the user of changes in signal level strength audibly and/or
visually. wavemon is able to list of access points in range and shows
full-screen level histogram displaying signal/noise levels and SNR.
%prep
%setup -q
%build
%configure
make CFLAGS="%{optflags}" %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot} INSTALL="install -p"
#Delete wrong placed doc files
rm -rf %{buildroot}%{_datadir}/%{name}/*
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README NEWS THANKS
%{_mandir}/man*/%{name}*.*
%{_bindir}/%{name}
%changelog
* Sat Jun 27 2009 Fabian Affolter <fabian@bernewireless.net> - 0.6.6-1
- Updated to new upstream 0.6.6
* Thu May 18 2009 Fabian Affolter <fabian@bernewireless.net> - 0.6.5-1
- Updated to new upstream 0.6.5
* Mon May 04 2009 Fabian Affolter <fabian@bernewireless.net> - 0.6-2
- Added optflags to make
* Sat May 02 2009 Fabian Affolter <fabian@bernewireless.net> - 0.6-1
- Updated install and prep section
- Updated to new upstream version 0.6
* Wed Feb 25 2009 Fabian Affolter <fabian@bernewireless.net> - 0.5-1
- Initial package for Fedora