2006-08-06 12:36:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=nocatsplash
|
|
|
|
PKG_VERSION:=0.92
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=NoCatSplash-$(PKG_VERSION).tar.gz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=http://wifi.rulez.org/~josephus/
|
|
|
|
PKG_MD5SUM:=e0fcc0effe52e63bc31070d16d0b4a81
|
2006-08-06 12:36:46 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/NoCatSplash-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/nocatsplash
|
2007-09-25 18:16:27 +00:00
|
|
|
SUBMENU:=Captive Portals
|
2006-08-06 12:36:46 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-08-08 01:13:52 +00:00
|
|
|
DEPENDS:=+glib1
|
2006-08-06 12:36:46 +00:00
|
|
|
TITLE:=Open public network gateway daemon
|
|
|
|
URL:=http://nocat.net
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/nocatsplash/description
|
|
|
|
NoCatSplash is an Open Public Network Gateway Daemon.
|
|
|
|
It performs as a [captive/open/active] portal. When run on a gateway/router
|
|
|
|
on a network, all web requests are redirected until the client either logs
|
|
|
|
in or clicks "I Accept" to an AUP. The gateway daemon then changes the
|
|
|
|
firewall rules on the gateway to pass traffic for that client (based on IP
|
|
|
|
address and MAC address).
|
|
|
|
endef
|
|
|
|
|
2006-08-06 12:42:05 +00:00
|
|
|
define Package/nocatsplash/conffiles
|
|
|
|
/etc/nocat.conf
|
|
|
|
endef
|
|
|
|
|
2006-08-06 12:36:46 +00:00
|
|
|
define Build/Configure
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--with-firewall=iptables \
|
|
|
|
--with-glib-prefix="$(STAGING_DIR)/usr" \
|
|
|
|
)
|
2006-08-06 12:36:46 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/nocatsplash/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)
|
2006-08-06 12:36:46 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,nocatsplash))
|