summaryrefslogtreecommitdiffstats
path: root/waproamd.spec.in
diff options
context:
space:
mode:
Diffstat (limited to 'waproamd.spec.in')
-rw-r--r--waproamd.spec.in47
1 files changed, 47 insertions, 0 deletions
diff --git a/waproamd.spec.in b/waproamd.spec.in
new file mode 100644
index 0000000..84ef8e1
--- /dev/null
+++ b/waproamd.spec.in
@@ -0,0 +1,47 @@
+%define debug_package %{nil}
+
+Summary: Daemon which configures 802.11b networking by scanning for available networks.
+Name: waproamd
+Version: @PACKAGE_VERSION@
+Release: 1
+URL: http://0pointer.de/lennart/projects/waproamd/
+Source: %{name}-%{version}.tar.gz
+License: GPL
+Group: Networking/Daemons
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+BuildPrereq: libdaemon-devel
+
+%description
+waproamd is a roaming daemon for wireless IEEE 802.11 NICs supporting
+the Linux wireless extensions. It is intended to configure the WEP keys
+according to the networks found.
+
+An alternative implementation of a tool like this is wlandetect.
+
+%prep
+%setup -q
+
+%build
+%configure
+make
+
+%install
+[ ! -z "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
+%makeinstall sysvinitdir="$RPM_BUILD_ROOT"/etc/rc.d/init.d
+
+%clean
+[ ! -z "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%doc LICENSE README
+%config /etc/waproamd/waproamd.conf
+%config /etc/waproamd/scripts/default
+/usr/sbin/waproamd
+/etc/rc.d/init.d/waproamd
+%{_mandir}/man5/waproamd.conf.5.gz
+%{_mandir}/man8/waproamd.8.gz
+
+%changelog
+* Fri Jan 30 2004 Sean Reifschneider <jafo-rpms@tummy.com> [0.5b-1]
+- Initial .spec creation.