summaryrefslogtreecommitdiffstats
path: root/obsolete-buildroot/make/nocat-auth.mk
blob: e56e94c47450ceaec37f954958ef6d275fe1baa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#############################################################
#
# nocatauth.c
#
# There exists a real need in the embedded community for a 
# captive portal with authentication. Till now I've been hording 
# this sweet little creation to myself.
#
# NoCatSplash is a 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 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).
#
# NoCatSplash is the successor to NoCatAuth, which was written in Perl. 
# NoCatSplash is written in multi-threaded ANSI C in order to be smaller
# and work better on embedded style devices.
#
# NoCatSplash-Auth is the successor to them all which is NoCatSplash 
# with the features found on NoCatAuth but written in ANSI C in order to
# be smaller and work better on embedded style devices.
#
#############################################################
NOCATSPLASHAUTH_SOURCE_URL:=
NOCATSPLASHAUTH_SOURCE=NoCatSplash-auth.tgz
NOCATSPLASHAUTH_BUILD_DIR=$(BUILD_DIR)/NoCatSplash-auth

$(DL_DIR)/$(NOCATSPLASHAUTH_SOURCE):
	 $(WGET) -P $(DL_DIR) $(NOCATSPLASHAUTH_SOURCE_URL)/$(NOCATSPLASHAUTH_SOURCE) 

$(NOCATSPLASHAUTH_BUILD_DIR)/.unpacked: $(DL_DIR)/$(NOCATSPLASHAUTH_SOURCE)
	zcat $(DL_DIR)/$(NOCATSPLASHAUTH_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	touch $(NOCATSPLASHAUTH_BUILD_DIR)/.unpacked

$(NOCATSPLASHAUTH_BUILD_DIR)/.configured: $(NOCATSPLASHAUTH_BUILD_DIR)/.unpacked
	# Allow patches.  Needed for openwrt for instance.
	#$(SOURCE_DIR)/patch-kernel.sh $(NOCATSPLASHAUTH_BUILD_DIR) $(SOURCE_DIR) nocatsplash-*.patch
	(cd $(NOCATSPLASHAUTH_BUILD_DIR); \
		./configure \
			--prefix=/usr \
			--disable-glibtest \
			--with-glib-prefix=$(TARGET_DIR)/usr \
			--with-mode=passive \
	)
	touch  $(NOCATSPLASHAUTH_BUILD_DIR)/.configured

$(NOCATSPLASHAUTH_BUILD_DIR)/splashd: $(NOCATSPLASHAUTH_BUILD_DIR)/.configured
	$(TARGET_CONFIGURE_OPTS) \
	$(MAKE) -C $(NOCATSPLASHAUTH_BUILD_DIR) \
		CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)"

$(TARGET_DIR)/sbin/splashd: $(NOCATSPLASHAUTH_BUILD_DIR)/splashd
	$(TARGET_CONFIGURE_OPTS) \
	$(MAKE) -C $(NOCATSPLASHAUTH_BUILD_DIR) \
		PREFIX=/usr \
		CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
		DESTDIR=$(TARGET_DIR) install
	$(STRIP) $(TARGET_DIR)/usr/bin/nocat*
	rm -rf $(TARGET_DIR)/usr/man

nocatauth: $(TARGET_DIR)/sbin/splashd

nocatauth-source: $(DL_DIR)/$(NOCATSPLASHAUTH_SOURCE)

nocatauth-clean:
	$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(NOCATSPLASHAUTH_BUILD_DIR) uninstall
	-$(MAKE) -C $(NOCATSPLASHAUTH_BUILD_DIR) clean

nocatauth-dirclean:
	rm -rf $(NOCATSPLASHAUTH_BUILD_DIR)