summaryrefslogtreecommitdiffstats
path: root/package/aiccu
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-04 22:12:17 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-04 22:12:17 +0000
commita20aa237203f613553e01e56484b2164e863a80a (patch)
tree675d403c2bf316e8f7fb8df0f7af51661a0e5a22 /package/aiccu
parent727a465c4f4e113e173a6e0e78b00c6f95475b36 (diff)
add aiccu, bwm, ntpclient and radvd (from Sebastian Noel)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@562 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/aiccu')
-rw-r--r--package/aiccu/Config.in8
-rw-r--r--package/aiccu/Makefile46
-rw-r--r--package/aiccu/aiccu.control7
-rwxr-xr-xpackage/aiccu/files/S51aiccu21
4 files changed, 82 insertions, 0 deletions
diff --git a/package/aiccu/Config.in b/package/aiccu/Config.in
new file mode 100644
index 000000000..541aadc36
--- /dev/null
+++ b/package/aiccu/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_AICCU
+ select BR2_PACKAGE_KMOD_IPV6
+ tristate "aiccu"
+ default m
+ help
+ SixXS Automatic IPv6 Connectivity Client Utility
+
+ For more information about SixXS check http://www.sixxs.net
diff --git a/package/aiccu/Makefile b/package/aiccu/Makefile
new file mode 100644
index 000000000..0b662d198
--- /dev/null
+++ b/package/aiccu/Makefile
@@ -0,0 +1,46 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=aiccu
+PKG_VERSION:=2005.01.31
+PKG_RELEASE:=1
+PKG_MD5SUM:=7c3da5feab3d59fb5a99a45203e0ca56
+
+PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
+PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
+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)/unix-console/$(PKG_NAME): $(PKG_BUILD_DIR)/.unpacked
+ $(SED) "s,strip,$(STRIP)," $(PKG_BUILD_DIR)/unix-console/Makefile
+ $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" DEBUG=0 -C $(PKG_BUILD_DIR)
+
+$(PKG_IPK): $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME)
+ $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
+ mkdir -p $(PKG_IPK_DIR)/usr/sbin $(PKG_IPK_DIR)/etc/init.d
+ install -m 755 $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(PKG_IPK_DIR)/usr/sbin/
+ install -m 755 ./files/S51aiccu $(PKG_IPK_DIR)/etc/init.d/
+ install -m 644 $(PKG_BUILD_DIR)/doc/aiccu.conf $(PKG_IPK_DIR)/etc/aiccu.conf
+ $(STRIP) $(PKG_IPK_DIR)/usr/sbin/*
+ 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/aiccu/aiccu.control b/package/aiccu/aiccu.control
new file mode 100644
index 000000000..158679eb6
--- /dev/null
+++ b/package/aiccu/aiccu.control
@@ -0,0 +1,7 @@
+Package: aiccu
+Priority: optional
+Section: net
+Maintainer: Sebastien NOEL <me@twolife.org>
+Source: buildroot internal
+Depends: kmod-ipv6, ip
+Description: SixXS Automatic IPv6 Connectivity Client Utility
diff --git a/package/aiccu/files/S51aiccu b/package/aiccu/files/S51aiccu
new file mode 100755
index 000000000..dabafcf3f
--- /dev/null
+++ b/package/aiccu/files/S51aiccu
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+case "$1" in
+ start)
+ aiccu start
+ ;;
+
+ stop)
+ aiccu stop
+ aiccu stop
+ ;;
+
+ restart)
+ $0 stop
+ $0 start
+ ;;
+ *)
+ echo "Usage: $0 {start|stop|restart}"
+ exit 1
+ ;;
+esac