mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
96 lines
3.9 KiB
Makefile
96 lines
3.9 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nodog
|
|
PKG_VERSION:=2.4.2
|
|
PKG_RELEASE:=13
|
|
|
|
PKG_SOURCE:=ULib-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/stefanocasazza/ULib/archive/v2.4.2.tar.gz
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/ULib-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
STAMP_CONFIGURED:=$(STAMP_CONFIGURED)_$(call confvar, CONFIG_NODOG_DEBUG)
|
|
|
|
define Package/nodog
|
|
TITLE:=nocat enhanced
|
|
URL:=http://stefanocasazza.github.io/ULib/
|
|
DEPENDS:= +libopenssl +libstdcpp +zlib $(if $(CONFIG_NODOG_UUID),+libuuid)
|
|
## DEPENDS:= +libstdcpp +libpcre +zlib $(if $(CONFIG_NODOG_UUID),+libuuid) \
|
|
## $(if $(CONFIG_NODOG_OPENSSL),+libopenssl) $(if $(CONFIG_NODOG_CYASSL),+libcyassl) \
|
|
## +iptables-mod-ipopt +iptables-mod-nat +iptables-mod-nat-extra
|
|
endef
|
|
|
|
define Package/nodog/Description
|
|
NoDog is a web capture system. It is similar to wireless access systems used in some coffee shops and airports.
|
|
In commercial environments, web capture is used to authorise and pay for network use. Within SEPS, it's used for authentication purposes
|
|
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
|
|
|
|
define Package/nodog/config
|
|
source "$(SOURCE)/Config.in"
|
|
endef
|
|
|
|
define Package/nodog/conffiles
|
|
/etc/nodog.key
|
|
/etc/nodog.portal
|
|
/etc/uclient.conf
|
|
/etc/init.d/nodog
|
|
/usr/lib/nodog/firewall/nodog.fw
|
|
/usr/lib/nodog/firewall/tcrules.awk
|
|
endef
|
|
|
|
NODOG_OPTIONS:= --without-expat --without-magic --without-pcre \
|
|
--disable-stdcpp --disable-thread --disable-HCRS --disable-HPRS \
|
|
--disable-examples --disable-static --disable-new-ldflags --disable-zip --disable-LFS --disable-HIS \
|
|
--with-ssl --with-libz --enable-log --enable-captive-portal --enable-static-server-plugin="nodog http" \
|
|
$(if $(CONFIG_NODOG_DEBUG),--enable-debug) \
|
|
$(if $(CONFIG_NODOG_UUID),--with-libuuid,--without-libuuid) \
|
|
$(if $(CONFIG_NODOG_MEMPOOL),--enable-memory-pool,--disable-memory-pool) \
|
|
$(if $(CONFIG_NODOG_GCC_OPTIMIZED),--enable-gcc-optimized,--disable-gcc-optimized)
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--prefix=$(PKG_INSTALL_DIR)/usr \
|
|
$(NODOG_OPTIONS))
|
|
endef
|
|
|
|
## LIBS=-luClibc++
|
|
define Build/Compile
|
|
rm -rf $(PKG_INSTALL_DIR)
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" \
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
RANLIB="$(TARGET_CROSS)ranlib"
|
|
$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/examples/userver \
|
|
CC="$(TARGET_CC)" \
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
RANLIB="$(TARGET_CROSS)ranlib"
|
|
$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/examples/uclient \
|
|
CC="$(TARGET_CC)" \
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
RANLIB="$(TARGET_CROSS)ranlib"
|
|
endef
|
|
|
|
define Package/nodog/install
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/examples/userver DESTDIR="$(PKG_INSTALL_DIR)" install
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/examples/uclient DESTDIR="$(PKG_INSTALL_DIR)" install
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/examples/serialize DESTDIR="$(PKG_INSTALL_DIR)" install
|
|
$(INSTALL_DIR) $(1)/etc $(1)/usr/sbin $(1)/usr/lib $(1)/usr/lib/nodog
|
|
$(CP) -a $(PKG_INSTALL_DIR)/$(PKG_INSTALL_DIR)/usr/lib/libulib* $(1)/usr/lib/
|
|
## $(CP) -a $(PKG_INSTALL_DIR)/usr/lib/server_plugin_proxy* $(1)/usr/lib
|
|
## $(CP) -r $(PKG_BUILD_DIR)/examples/serialize/.libs/serialize $(1)/usr/sbin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/uclient $(PKG_INSTALL_DIR)/usr/bin/userver_tcp $(1)/usr/sbin/
|
|
$(CP) -r $(PKG_BUILD_DIR)/tests/examples/nocat/* $(1)/usr/lib/nodog
|
|
## $(CP) -r $(PKG_BUILD_DIR)/tests/examples/nocat/.ht* $(1)/usr/lib/nodog
|
|
$(CP) -r $(1)/usr/lib/nodog/etc $(1)/
|
|
$(RM) -rf $(1)/usr/lib/nodog/etc
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,nodog))
|