summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-19 11:37:53 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-19 11:37:53 +0000
commit935badd4ea23611c20212ecae03abf6379063f0a (patch)
tree5d6ae35e1ae776eeb4b00aa4b9093f4381b8c7b5
parent3ec0253d2031c80bb7d0d4b6369dfcf7388d829f (diff)
add wrt-radauth package (thanks to Florian Fainelli)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2180 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/Config.in1
-rw-r--r--package/Makefile1
-rw-r--r--package/wrt-radauth/Config.in10
-rw-r--r--package/wrt-radauth/Makefile36
-rw-r--r--package/wrt-radauth/ipkg/wrt-radauth.control6
5 files changed, 54 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 245ddbb69..eeb6d53e5 100644
--- a/package/Config.in
+++ b/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/package/Makefile b/package/Makefile
index ab95cab6c..4aa9b3a74 100644
--- a/package/Makefile
+++ b/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/package/wrt-radauth/Config.in b/package/wrt-radauth/Config.in
new file mode 100644
index 000000000..b21c5fc8b
--- /dev/null
+++ b/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/package/wrt-radauth/Makefile b/package/wrt-radauth/Makefile
new file mode 100644
index 000000000..952a4d03f
--- /dev/null
+++ b/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/package/wrt-radauth/ipkg/wrt-radauth.control b/package/wrt-radauth/ipkg/wrt-radauth.control
new file mode 100644
index 000000000..7d2e82c92
--- /dev/null
+++ b/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.