2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
6 include $(TOPDIR
)/rules.mk
13 PKG_SOURCE_URL
:=https
://codeload.github.com
/nodogsplash
/nodogsplash
/tar.gz
/v
$(PKG_VERSION
)?
14 PKG_SOURCE
:=nodogsplash-
$(PKG_VERSION
).
tar.gz
15 PKG_HASH
:=c9712c21c2cc88724a8104fa63edd4f69d31af24db0fad84db6105fae2d65809
16 PKG_BUILD_DIR
:=$(BUILD_DIR
)/nodogsplash-
$(PKG_VERSION
)
18 PKG_MAINTAINER
:=Moritz Warning
<moritzwarning@web.de
>
22 include $(INCLUDE_DIR
)/package.mk
25 define Package
/nodogsplash
26 SUBMENU
:=Captive Portals
29 DEPENDS
:=+libpthread
+iptables-mod-ipopt
+libmicrohttpd-no-ssl
30 TITLE
:=Open public network gateway daemon
31 URL
:=https
://github.com
/nodogsplash
/nodogsplash
32 CONFLICTS
:=nodogsplash2
35 define Package
/nodogsplash
/description
36 Nodogsplash is a Captive Portal that offers a simple way to
37 provide restricted access to the Internet by showing a splash
38 page to the user before Internet access is granted.
39 It also incorporates an API that allows the creation of
40 sophisticated authentication applications.
43 define Package
/nodogsplash
/install
46 $(INSTALL_DIR
) $(1)/usr
/bin
47 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/nodogsplash
$(1)/usr
/bin
/
48 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/ndsctl
$(1)/usr
/bin
/
50 $(INSTALL_DIR
) $(1)/etc
/nodogsplash
/htdocs
/images
51 $(CP
) $(PKG_BUILD_DIR
)/resources
/splash.html
$(1)/etc
/nodogsplash
/htdocs
/
52 $(CP
) $(PKG_BUILD_DIR
)/resources
/status.html
$(1)/etc
/nodogsplash
/htdocs
/
53 $(CP
) $(PKG_BUILD_DIR
)/resources
/splash.jpg
$(1)/etc
/nodogsplash
/htdocs
/images
/
56 define Package
/nodogsplash
/postrm
58 uci delete firewall.nodogsplash
62 define Package
/nodogsplash
/conffiles
63 /etc
/config
/nodogsplash
66 $(eval
$(call BuildPackage
,nodogsplash
))