2 # Copyright (C) 2006,2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:= @SF/$(PKG_NAME)
16 PKG_MD5SUM:=abe5f7123179a0f08c493ce59fb3cb31
20 include $(INCLUDE_DIR)/package.mk
22 define Package/wifidog
23 SUBMENU:=Captive Portals
26 DEPENDS:=+iptables-mod-extra +iptables-mod-ipopt +iptables-mod-nat +iptables-mod-nat-extra +libpthread
27 TITLE:=A wireless captive portal solution
28 URL:=http://www.wifidog.org
31 define Package/wifidog/description
32 The Wifidog project is a complete and embeddable captive
33 portal solution for wireless community groups or individuals
34 who wish to open a free Hotspot while still preventing abuse
35 of their Internet connection.
38 define Package/wifidog/conffiles
43 DESTDIR="$(PKG_INSTALL_DIR)" \
46 define Package/wifidog/install
47 $(INSTALL_DIR) $(1)/usr/bin
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/scripts/init.d/wifidog $(1)/usr/bin/wifidog-init
49 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/wifidog $(1)/usr/bin/
50 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/wdctl $(1)/usr/bin/
51 $(INSTALL_DIR) $(1)/usr/lib
52 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libhttpd.so* $(1)/usr/lib/
53 $(INSTALL_DIR) $(1)/etc
54 $(INSTALL_DATA) ./files/wifidog.conf $(1)/etc/
55 $(INSTALL_DIR) $(1)/etc/init.d
56 $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/wifidog
59 $(eval $(call BuildPackage,wifidog))