add wrt-radauth package (thanks to Florian Fainelli)

SVN-Revision: 2180
This commit is contained in:
Nicolas Thill 2005-10-19 11:37:53 +00:00
parent c6274d3fa3
commit d78910fbec
5 changed files with 54 additions and 0 deletions

View File

@ -132,6 +132,7 @@ source "package/wificonf/Config.in"
source "package/wifidog/Config.in"
source "package/wiviz/Config.in"
source "package/wondershaper/Config.in"
source "package/wrt-radauth/Config.in"
comment "Libraries"
source "package/cgilib/Config.in"

View File

@ -200,6 +200,7 @@ package-$(BR2_PACKAGE_WOL) += wol
package-$(BR2_PACKAGE_WONDERSHAPER) += wondershaper
package-$(BR2_PACKAGE_WPA_SUPPLICANT) += wpa_supplicant
package-$(BR2_PACKAGE_WPUT) += wput
package-$(BR2_PACKAGE_WRT_RADAUTH) += wrt-radauth
package-$(BR2_PACKAGE_XINETD) += xinetd
package-$(BR2_PACKAGE_ZLIB) += zlib

View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_WRT_RADAUTH
tristate "wrt-radauth - a RADIUS MAC authenticator for Broadcom based access points"
default m if CONFIG_DEVEL
help
This software watches the stations associating to a broadcom based
AccessPoint (e.g. Linksys WRT54G) and sends an authentication request
to the radius-server specified in nvram.
http://www.zerfleddert.de/wrt54g/

View File

@ -0,0 +1,36 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=wrt-radauth
PKG_VERSION:=1.0
PKG_RELEASE:=1
PKG_MD5SUM:=f941e3139175dc6b87f6c89ba8848a07
PKG_SOURCE_URL:=http://www.zerfleddert.de/wrt54g/
PKG_SOURCE:=$(PKG_NAME).tar.gz
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
include $(TOPDIR)/package/rules.mk
BR2_PACKAGE_WRT_RADAUTH:=m
$(eval $(call PKG_template,WRT_RADAUTH,wrt-radauth,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) -C $(PKG_BUILD_DIR) \
CC="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
clean all
touch $@
$(IPKG_WRT_RADAUTH):
install -d -m0755 $(IDIR_WRT_RADAUTH)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/radius-client $(IDIR_WRT_RADAUTH)/usr/sbin/
install -m0755 $(PKG_BUILD_DIR)/wrt-radauth $(IDIR_WRT_RADAUTH)/usr/sbin/
$(RSTRIP) $(IDIR_WRT_RADAUTH)
$(IPKG_BUILD) $(IDIR_WRT_RADAUTH) $(PACKAGE_DIR)

View File

@ -0,0 +1,6 @@
Package: wrt-radauth
Priority: optional
Section: net
Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>, Florian Fainelli <florian@alphacore.net>
Source: buildroot internal
Description: A RADIUS MAC authenticator for Broadcom based access points.