From 6fc6d689b3a754c1f3f26ea0b9d6ff048c9faa90 Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 3 Apr 2005 11:37:43 +0000 Subject: add arpwatch and nocatsplash git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@539 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/nocatsplash/Config.in | 10 +++++ package/nocatsplash/Makefile | 71 +++++++++++++++++++++++++++++++++ package/nocatsplash/nocatsplash.control | 11 +++++ 3 files changed, 92 insertions(+) create mode 100644 package/nocatsplash/Config.in create mode 100644 package/nocatsplash/Makefile create mode 100644 package/nocatsplash/nocatsplash.control (limited to 'package/nocatsplash') diff --git a/package/nocatsplash/Config.in b/package/nocatsplash/Config.in new file mode 100644 index 000000000..87954826d --- /dev/null +++ b/package/nocatsplash/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_NOCATSPLASH + tristate "NoCatSplash" + default m + help + NoCatSplash is an 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 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). diff --git a/package/nocatsplash/Makefile b/package/nocatsplash/Makefile new file mode 100644 index 000000000..d5d6b3653 --- /dev/null +++ b/package/nocatsplash/Makefile @@ -0,0 +1,71 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=nocatsplash +PKG_VERSION:=0.92 +PKG_RELEASE:=1 +PKG_MD5SUM:=e0fcc0effe52e63bc31070d16d0b4a81 + +PKG_SOURCE_URL:=http://wifi.rulez.org/~josephus/ +PKG_SOURCE:=NoCatSplash-$(PKG_VERSION).tar.gz +PKG_BUILD_DIR:=$(BUILD_DIR)/NoCatSplash-$(PKG_VERSION) +PKG_CAT:=zcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +$(DL_DIR)/$(PKG_SOURCE): + $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) + +$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) + $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + touch $(PKG_BUILD_DIR)/.unpacked + +$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.unpacked + (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + $(DISABLE_NLS) \ + $(DISABLE_LARGEFILE) \ + ); + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/src/splashd: $(PKG_BUILD_DIR)/.configured + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) \ + GLIB_CFLAGS="-I$(STAGING_DIR)/usr/include/glib-1.2 -I$(STAGING_DIR)/usr/lib/glib/include" \ + GLIB_LIBS="-L$(STAGING_DIR)/usr/lib -lglib" \ + LIBS="-L$(STAGING_DIR)/usr/lib -lglib" + +$(PKG_IPK): $(PKG_BUILD_DIR)/src/splashd + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR=$(PKG_IPK_DIR) install + $(STRIP) $(PKG_IPK_DIR)/usr/sbin/splashd + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.unpacked +compile: $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list + +clean: + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) diff --git a/package/nocatsplash/nocatsplash.control b/package/nocatsplash/nocatsplash.control new file mode 100644 index 000000000..4bbcb4e35 --- /dev/null +++ b/package/nocatsplash/nocatsplash.control @@ -0,0 +1,11 @@ +Package: nocatsplash +Priority: optional +Section: net +Maintainer: Felix Fietkau +Source: buildroot internal +Description: NoCatSplash is an 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 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). -- cgit v1.2.3