2010-02-18 13:10:21 +00:00
|
|
|
#
|
2012-05-28 15:45:55 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-07-21 09:04:10 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-20 17:54:51 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=chillispot
|
2006-10-09 13:57:31 +00:00
|
|
|
PKG_VERSION:=1.1.0
|
2012-05-28 15:45:55 +00:00
|
|
|
PKG_RELEASE:=4
|
2006-06-20 17:54:51 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2009-05-22 18:39:10 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.chillispot.info/download
|
2006-10-28 22:43:08 +00:00
|
|
|
PKG_MD5SUM:=9d2597756af3fa14d7331b4a3651fc9b
|
2006-06-20 17:54:51 +00:00
|
|
|
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
2006-06-20 17:54:51 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-20 17:54:51 +00:00
|
|
|
|
|
|
|
define Package/chillispot
|
2007-09-25 18:16:27 +00:00
|
|
|
SUBMENU:=Captive Portals
|
2006-06-20 17:54:51 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-11-09 13:22:01 +00:00
|
|
|
DEPENDS:=+kmod-tun
|
2006-06-20 17:54:51 +00:00
|
|
|
TITLE:=Wireless LAN HotSpot controller
|
2009-06-13 17:01:55 +00:00
|
|
|
URL:=http://www.chillispot.info/
|
2006-06-20 17:54:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/chillispot/description
|
2014-03-27 07:06:15 +00:00
|
|
|
ChilliSpot is an open source captive portal or wireless LAN
|
|
|
|
access point controller. It is used for authenticating users
|
|
|
|
of a wireless LAN. It supports web based login which is today's
|
|
|
|
standard for public HotSpots and it supports Wireless Protected
|
|
|
|
Access (WPA) which is the standard of the future. Authentication,
|
|
|
|
authorization and accounting (AAA) is handled by your favorite
|
2007-10-14 04:32:56 +00:00
|
|
|
radius server.
|
|
|
|
endef
|
|
|
|
|
2006-06-20 17:54:51 +00:00
|
|
|
define Package/chillispot/conffiles
|
|
|
|
/etc/chilli.conf
|
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
# uses GNU configure
|
2006-06-20 17:54:51 +00:00
|
|
|
|
|
|
|
define Package/chillispot/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/chilli
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/doc/chilli.conf $(1)/etc/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/chilli $(1)/usr/sbin/
|
2006-06-20 17:54:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,chillispot))
|