X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=ipv6%2Faiccu%2FMakefile;h=b6f3fa3a376b9a475ed1b603fea5e00fdade86b4;hb=12a118c5afd62ada804c3b1c0de923e80b9b1507;hp=a70a4a61e720840d1b69f88dd9d6616d18f7453d;hpb=5cb332fb355cda50c0cfc952cee0778e5148781c;p=packages.git diff --git a/ipv6/aiccu/Makefile b/ipv6/aiccu/Makefile index a70a4a61e..b6f3fa3a3 100644 --- a/ipv6/aiccu/Makefile +++ b/ipv6/aiccu/Makefile @@ -1,21 +1,19 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2012 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 -PKG_VERSION:=2005.01.31 -PKG_RELEASE:=1 +PKG_VERSION:=20070115 +PKG_RELEASE:=10 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix -PKG_MD5SUM:=7c3da5feab3d59fb5a99a45203e0ca56 -PKG_CAT:=zcat +PKG_MD5SUM:=c9bcc83644ed788e22a7c3f3d4021350 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) @@ -24,26 +22,30 @@ include $(INCLUDE_DIR)/package.mk define Package/aiccu SECTION:=ipv6 CATEGORY:=IPv6 + DEPENDS:=+libpthread +ip +kmod-sit +kmod-tun TITLE:=SixXS Automatic IPv6 Connectivity Client Utility - URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix + URL:=http://www.sixxs.net/tools/aiccu/ endef define Build/Configure - $(SED) "s,strip,$(STRIP)," $(PKG_BUILD_DIR)/unix-console/Makefile + $(SED) "s,strip,/bin/true," $(PKG_BUILD_DIR)/unix-console/Makefile endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ - CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" LDFLAGS="-lpthread" DEBUG=0 + CC="$(TARGET_CC)" OS_NAME="Linux" OS_VERSION="$(LINUX_VERSION)" \ + EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ + EXTRA_LDFLAGS="$(TARGET_LDFLAGS) -pthread" \ + DEBUG=0 +endef + +define Package/aiccu/conffiles +/etc/config/aiccu endef define Package/aiccu/install - install -d -m0755 $(1)/usr/sbin - install -m 755 $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/ - install -d -m0755 $(1)/etc - install -m 644 $(PKG_BUILD_DIR)/doc/aiccu.conf $(1)/etc/ - install -d -m0755 $(1)/etc/init.d - install -m 755 ./files/aiccu.init $(1)/etc/init.d/aiccu + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/ endef $(eval $(call BuildPackage,aiccu))