[package] move miredo from net to ipv6
git-svn-id: svn://svn.openwrt.org/openwrt/packages@16130 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -1,90 +0,0 @@
|
||||
#
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=miredo
|
||||
PKG_VERSION:=1.1.6
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_URL:=http://www.remlab.net/files/miredo/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_MD5SUM:=bf49c1ddc068746760787d0cf76e40de
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/miredo/Default
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
DEPENDS:=+libpthread +uclibcxx +kmod-ipv6 +kmod-tun
|
||||
SUBMENU:=miredo: Teredo (IPv6 tunneling over UDP through NAT)
|
||||
URL:=http://www.simphalempin.com/dev/miredo/
|
||||
endef
|
||||
|
||||
define Package/miredo-server
|
||||
$(call Package/miredo/Default)
|
||||
TITLE:=Teredo (IPv6 tunneling over UDP through NAT) server daemon
|
||||
endef
|
||||
|
||||
define Package/miredo-server/conffiles
|
||||
/etc/miredo-server.conf
|
||||
endef
|
||||
|
||||
define Package/miredo-client
|
||||
$(call Package/miredo/Default)
|
||||
TITLE:=Teredo (IPv6 tunneling over UDP through NAT) client and relay daemon
|
||||
endef
|
||||
|
||||
define Package/miredo-client/conffiles
|
||||
/etc/miredo.conf
|
||||
endef
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--disable-shared \
|
||||
--enable-static \
|
||||
--with-gnu-ld \
|
||||
--disable-rpath \
|
||||
--disable-chroot \
|
||||
--enable-teredo-client \
|
||||
--enable-teredo-relay \
|
||||
--enable-teredo-server \
|
||||
--enable-miredo-user=root \
|
||||
--without-Judy \
|
||||
|
||||
CONFIGURE_VARS += \
|
||||
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClibc++" \
|
||||
CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \
|
||||
LIBS="-nodefaultlibs -luClibc++ -lm" \
|
||||
ac_cv_file__proc_self_maps=yes\
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CXXLINK="\$$$$(LINK)" \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
endef
|
||||
|
||||
define Package/miredo-server/install
|
||||
$(INSTALL_DIR) $(1)/etc/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/share/doc/miredo/examples/miredo-server.conf $(1)/etc/miredo-server.conf
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/miredo-server.init $(1)/etc/init.d/miredo-server
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/miredo-server $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
define Package/miredo-client/install
|
||||
$(INSTALL_DIR) $(1)/etc
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/share/doc/miredo/examples/miredo.conf $(1)/etc/miredo.conf
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/miredo.init $(1)/etc/init.d/miredo
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/miredo $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,miredo-server))
|
||||
$(eval $(call BuildPackage,miredo-client))
|
@ -1,20 +0,0 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
START=50
|
||||
|
||||
BIN=miredo-server
|
||||
DEFAULT=/etc/default/$BIN
|
||||
RUN_D=/var/run
|
||||
PID_F=$RUN_D/$BIN.pid
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
[ -d $RUN_D ] || mkdir -p $RUN_D
|
||||
insmod ipv6
|
||||
insmod tun
|
||||
$BIN $OPTIONS
|
||||
}
|
||||
|
||||
stop() {
|
||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
START=50
|
||||
|
||||
BIN=miredo
|
||||
DEFAULT=/etc/default/$BIN
|
||||
RUN_D=/var/run
|
||||
PID_F=$RUN_D/$BIN.pid
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
[ -d $RUN_D ] || mkdir -p $RUN_D
|
||||
insmod ipv6
|
||||
insmod tun
|
||||
$BIN $OPTIONS
|
||||
}
|
||||
|
||||
stop() {
|
||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
diff -urN miredo-1.1.6/libteredo/maintain.c miredo-1.1.6.new/libteredo/maintain.c
|
||||
--- miredo-1.1.6/libteredo/maintain.c 2009-04-13 11:15:15.000000000 +0200
|
||||
+++ miredo-1.1.6.new/libteredo/maintain.c 2009-05-26 16:37:14.000000000 +0200
|
||||
@@ -59,7 +59,7 @@
|
||||
|
||||
static inline void gettime (struct timespec *now)
|
||||
{
|
||||
-#if (_POSIX_CLOCK_SELECTION - 0 >= 0) && (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
|
||||
+#if (_POSIX_CLOCK_SELECTION - 0 >= 0) && (_POSIX_MONOTONIC_CLOCK - 0 >= 0) && !defined(__UCLIBC__)
|
||||
if (clock_gettime (CLOCK_MONOTONIC, now) == 0)
|
||||
return;
|
||||
#else
|
Reference in New Issue
Block a user