2006-10-30 13:51:50 +00:00
|
|
|
#
|
2006-07-30 15:51:45 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=aiccu
|
2007-01-18 14:10:56 +00:00
|
|
|
PKG_VERSION:=20070115
|
2006-07-30 15:51:45 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
2006-10-19 18:33:55 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
|
2007-01-19 00:32:10 +00:00
|
|
|
PKG_MD5SUM:=c9bcc83644ed788e22a7c3f3d4021350
|
2006-07-30 15:51:45 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/aiccu
|
2006-10-19 18:33:55 +00:00
|
|
|
SECTION:=ipv6
|
|
|
|
CATEGORY:=IPv6
|
2008-03-27 15:53:55 +00:00
|
|
|
DEPENDS:=+libpthread +ntpclient +ip +kmod-sit
|
2006-07-30 15:51:45 +00:00
|
|
|
TITLE:=SixXS Automatic IPv6 Connectivity Client Utility
|
2007-01-15 13:39:08 +00:00
|
|
|
URL:=http://www.sixxs.net/tools/aiccu/
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2007-01-15 13:39:08 +00:00
|
|
|
$(SED) "s,strip,/bin/true," $(PKG_BUILD_DIR)/unix-console/Makefile
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2008-08-10 21:06:38 +00:00
|
|
|
CC="$(TARGET_CC)" OS_NAME="Linux" OS_VERSION="$(LINUX_VERSION)" \
|
|
|
|
EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
EXTRA_LDFLAGS="$(TARGET_LDFLAGS) -pthread" \
|
2007-01-15 13:39:08 +00:00
|
|
|
DEBUG=0
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
2008-09-09 09:13:09 +00:00
|
|
|
define Package/aiccu/conffiles
|
|
|
|
/etc/aiccu.conf
|
|
|
|
endef
|
|
|
|
|
2006-07-30 15:51:45 +00:00
|
|
|
define Package/aiccu/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
2007-05-06 15:47:08 +00:00
|
|
|
$(INSTALL_CONF) ./files/aiccu.conf $(1)/etc/
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/aiccu.init $(1)/etc/init.d/aiccu
|
2008-03-27 19:43:01 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
|
|
$(INSTALL_DATA) ./files/aiccu.hotplug $(1)/etc/hotplug.d/iface/30-aiccu
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,aiccu))
|