c4a7ff69021205fc9cf5811a6841217a19cde108
[openwrt/svn-archive/archive.git] / net / nocatauth / Makefile
1 #
2 # Copyright (C) 2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=nocatauth
12 PKG_VERSION:=nightly
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=NoCatAuth-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=http://nocat.net/downloads/NoCatAuth/
17 PKG_MD5SUM:=b3a5f8d62b322a9409806037ab8d374e
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/NoCatAuth-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/nocatauth
24 SUBMENU:=Captive Portals
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+perl +perlbase-essential +perlbase-posix +perlbase-autoloader +perlbase-xsloader +perlbase-fcntl +perlbase-tie +perlbase-getopt +perlbase-findbin +perlbase-cwd +perlbase-config +perlbase-file +perlbase-sigtrap +perlbase-io +perlbase-symbol +perlbase-selectsaver +perlbase-socket +perlbase-errno +kmod-ipt-ipopt +kmod-ipt-nat-extra +iptables-mod-ipopt +iptables-mod-nat-extra
28 TITLE:=Open public network perl-based gateway daemon
29 URL:=http://nocat.net
30 endef
31
32 define Package/nocatauth/description
33 NoCatAuth is the original "catch and release" captive portal
34 implementation. It provides a simple splash screen web page for
35 clients on your network, as well as a variety of authenticated
36 modes. It is written in Perl.
37 endef
38
39 define Build/Configure
40 endef
41
42 define Build/Compile
43 mkdir -p $(PKG_INSTALL_DIR)
44 $(MAKE) -C $(PKG_BUILD_DIR) \
45 PREFIX="$(PKG_INSTALL_DIR)" \
46 gateway
47 endef
48
49 define Package/nocatauth/install
50 $(INSTALL_DIR) $(1)
51 $(INSTALL_DIR) $(1)/www
52 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/htdocs/{status,splash}.html $(1)/www
53 $(INSTALL_DIR) $(1)/www/images
54 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/htdocs/images/auth_logo.gif $(1)/www/images
55 $(INSTALL_DIR) $(1)/usr/nocatauth/lib
56 $(CP) $(PKG_INSTALL_DIR)/lib/* $(1)/usr/nocatauth/lib
57 $(INSTALL_DIR) $(1)/usr/nocatauth/bin
58 $(CP) $(PKG_INSTALL_DIR)/bin/* $(1)/usr/nocatauth/bin
59 $(INSTALL_DIR) $(1)/etc
60 $(INSTALL_CONF) $(PKG_INSTALL_DIR)/nocat.conf $(1)/etc/
61 $(INSTALL_DIR) $(1)/etc/init.d
62 $(INSTALL_BIN) ./files/nocatauth-gateway $(1)/etc/init.d/nocatauth-gateway
63 endef
64
65 $(eval $(call BuildPackage,nocatauth))