From d78910fbeca85bccd911d4ca2664d6e6e0f74c6f Mon Sep 17 00:00:00 2001
From: Nicolas Thill <nico@openwrt.org>
Date: Wed, 19 Oct 2005 11:37:53 +0000
Subject: [PATCH] add wrt-radauth package (thanks to Florian Fainelli)

SVN-Revision: 2180
---
 openwrt/package/Config.in                     |  1 +
 openwrt/package/Makefile                      |  1 +
 openwrt/package/wrt-radauth/Config.in         | 10 ++++++
 openwrt/package/wrt-radauth/Makefile          | 36 +++++++++++++++++++
 .../wrt-radauth/ipkg/wrt-radauth.control      |  6 ++++
 5 files changed, 54 insertions(+)
 create mode 100644 openwrt/package/wrt-radauth/Config.in
 create mode 100644 openwrt/package/wrt-radauth/Makefile
 create mode 100644 openwrt/package/wrt-radauth/ipkg/wrt-radauth.control

diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in
index 245ddbb69a..eeb6d53e53 100644
--- a/openwrt/package/Config.in
+++ b/openwrt/package/Config.in
@@ -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"
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile
index ab95cab6c5..4aa9b3a747 100644
--- a/openwrt/package/Makefile
+++ b/openwrt/package/Makefile
@@ -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
 
diff --git a/openwrt/package/wrt-radauth/Config.in b/openwrt/package/wrt-radauth/Config.in
new file mode 100644
index 0000000000..b21c5fc8ba
--- /dev/null
+++ b/openwrt/package/wrt-radauth/Config.in
@@ -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/
+	  
diff --git a/openwrt/package/wrt-radauth/Makefile b/openwrt/package/wrt-radauth/Makefile
new file mode 100644
index 0000000000..952a4d03fd
--- /dev/null
+++ b/openwrt/package/wrt-radauth/Makefile
@@ -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)
diff --git a/openwrt/package/wrt-radauth/ipkg/wrt-radauth.control b/openwrt/package/wrt-radauth/ipkg/wrt-radauth.control
new file mode 100644
index 0000000000..7d2e82c92e
--- /dev/null
+++ b/openwrt/package/wrt-radauth/ipkg/wrt-radauth.control
@@ -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.
-- 
GitLab