add miredo package
SVN-Revision: 2273
This commit is contained in:
parent
3c4edae2cd
commit
d207116e05
10 changed files with 213 additions and 0 deletions
|
@ -78,6 +78,7 @@ source "package/linux-atm/Config.in"
|
|||
source "package/maradns/Config.in"
|
||||
source "package/mini_httpd/Config.in"
|
||||
source "package/mini_sendmail/Config.in"
|
||||
source "package/miredo/Config.in"
|
||||
source "package/mtr/Config.in"
|
||||
source "package/ndisc/Config.in"
|
||||
source "package/net-snmp/Config.in"
|
||||
|
|
|
@ -109,6 +109,7 @@ package-$(BR2_PACKAGE_MICROCOM) += microcom
|
|||
package-$(BR2_PACKAGE_MICROPERL) += microperl
|
||||
package-$(BR2_COMPILE_MINI_HTTPD) += mini_httpd
|
||||
package-$(BR2_PACKAGE_MINI_SENDMAIL) += mini_sendmail
|
||||
package-$(BR2_COMPILE_MIREDO) += miredo
|
||||
package-$(BR2_COMPILE_MONIT) += monit
|
||||
package-$(BR2_PACKAGE_MPD) += mpd
|
||||
package-$(BR2_PACKAGE_MT_DAAPD) += mt-daapd
|
||||
|
@ -253,6 +254,7 @@ libvorbis-compile: libogg-compile
|
|||
libxml2-compile: zlib-compile
|
||||
libxslt-compile: libxml2-compile
|
||||
lighttpd-compile: openssl-compile pcre-compile
|
||||
miredo-compile: uclibc++-compile
|
||||
mt-daapd-compile: howl-compile libgdbm-compile libid3tag-compile
|
||||
mtr-compile: ncurses-compile
|
||||
mysql-compile: ncurses-compile zlib-compile
|
||||
|
|
48
openwrt/package/miredo/Config.in
Normal file
48
openwrt/package/miredo/Config.in
Normal file
|
@ -0,0 +1,48 @@
|
|||
config BR2_COMPILE_MIREDO
|
||||
tristate
|
||||
default n
|
||||
depends BR2_PACKAGE_MIREDO || BR2_PACKAGE_MIREDO_SERVER
|
||||
|
||||
config BR2_PACKAGE_MIREDO
|
||||
prompt "miredo - a Teredo (IPv6 tunneling over UDP through NAT) client and relay daemon"
|
||||
tristate
|
||||
default m if CONFIG_DEVEL
|
||||
select BR2_COMPILE_MIREDO
|
||||
select BR2_PACKAGE_KMOD_IPV6
|
||||
select BR2_PACKAGE_KMOD_TUN
|
||||
select BR2_PACKAGE_LIBPTHREAD
|
||||
select BR2_PACKAGE_UCLIBCXX
|
||||
help
|
||||
|
||||
A Teredo (IPv6 tunneling over UDP through NAT) client and relay daemon.
|
||||
|
||||
http://www.simphalempin.com/dev/miredo/
|
||||
|
||||
Depends:
|
||||
- kmod-ipv6
|
||||
- kmod-tun
|
||||
- libpthread
|
||||
- uClibc++
|
||||
|
||||
|
||||
config BR2_PACKAGE_MIREDO_SERVER
|
||||
prompt "miredo-server - a Teredo (IPv6 tunneling over UDP through NAT) server daemon"
|
||||
tristate
|
||||
default m if CONFIG_DEVEL
|
||||
select BR2_COMPILE_MIREDO
|
||||
select BR2_PACKAGE_KMOD_IPV6
|
||||
select BR2_PACKAGE_KMOD_TUN
|
||||
select BR2_PACKAGE_LIBPTHREAD
|
||||
select BR2_PACKAGE_UCLIBCXX
|
||||
help
|
||||
|
||||
A Teredo (IPv6 tunneling over UDP through NAT) server daemon.
|
||||
|
||||
http://www.simphalempin.com/dev/miredo/
|
||||
|
||||
Depends:
|
||||
- kmod-ipv6
|
||||
- kmod-tun
|
||||
- libpthread
|
||||
- uClibc++
|
||||
|
94
openwrt/package/miredo/Makefile
Normal file
94
openwrt/package/miredo/Makefile
Normal file
|
@ -0,0 +1,94 @@
|
|||
# $Id: Makefile 1728 2005-08-23 00:06:14Z nbd $
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=miredo
|
||||
PKG_VERSION:=0.5.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=bbbbf60db1346af0bbba6602067ed7ab
|
||||
|
||||
PKG_SOURCE_URL:=http://people.via.ecp.fr/~rem/miredo/v0.5/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_CAT:=bzcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,MIREDO,miredo,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
$(eval $(call PKG_template,MIREDO_SERVER,miredo-server,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
( cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin -fno-rtti -nostdinc++" \
|
||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||
LDFLAGS="-nodefaultlibs -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||
LIBS="-luClibc++ -lc -lm" \
|
||||
ac_cv_file__proc_self_maps=yes \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--program-prefix="" \
|
||||
--program-suffix="" \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--datadir=/usr/share \
|
||||
--includedir=/usr/include \
|
||||
--infodir=/usr/share/info \
|
||||
--libdir=/usr/lib \
|
||||
--libexecdir=/usr/lib \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/share/man \
|
||||
--sbindir=/usr/sbin \
|
||||
--sysconfdir=/etc \
|
||||
$(DISABLE_LARGEFILE) \
|
||||
$(DISABLE_NLS) \
|
||||
--disable-shared \
|
||||
--enable-static \
|
||||
--with-gnu-ld \
|
||||
--disable-rpath \
|
||||
--disable-chroot \
|
||||
--enable-teredo-client \
|
||||
--enable-teredo-relay \
|
||||
--enable-teredo-server \
|
||||
--enable-miredo-user=root \
|
||||
);
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CXXLINK="\$$(LINK)" \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
touch $@
|
||||
|
||||
$(IPKG_MIREDO):
|
||||
install -d -m0755 $(IDIR_MIREDO)/etc
|
||||
cp -fpR $(PKG_INSTALL_DIR)/etc/miredo.conf-dist $(IDIR_MIREDO)/etc/miredo.conf
|
||||
install -d -m0755 $(IDIR_MIREDO)/etc/init.d
|
||||
install -m0755 ./files/miredo.init $(IDIR_MIREDO)/etc/init.d/miredo
|
||||
install -d -m0755 $(IDIR_MIREDO)/usr/sbin
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/miredo $(IDIR_MIREDO)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_MIREDO)
|
||||
$(IPKG_BUILD) $(IDIR_MIREDO) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_MIREDO_SERVER):
|
||||
install -d -m0755 $(IDIR_MIREDO_SERVER)/etc/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/etc/miredo-server.conf-dist $(IDIR_MIREDO_SERVER)/etc/miredo-server.conf
|
||||
install -d -m0755 $(IDIR_MIREDO_SERVER)/etc/init.d
|
||||
install -m0755 ./files/miredo-server.init $(IDIR_MIREDO_SERVER)/etc/init.d/miredo-server
|
||||
install -d -m0755 $(IDIR_MIREDO_SERVER)/usr/sbin
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/miredo-server $(IDIR_MIREDO_SERVER)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_MIREDO_SERVER)
|
||||
$(IPKG_BUILD) $(IDIR_MIREDO_SERVER) $(PACKAGE_DIR)
|
||||
|
||||
mostlyclean:
|
||||
-$(MAKE) -C $(PKG_BUILD_DIR) clean
|
||||
rm -f $(PKG_BUILD_DIR)/.built
|
28
openwrt/package/miredo/files/miredo-server.init
Normal file
28
openwrt/package/miredo/files/miredo-server.init
Normal file
|
@ -0,0 +1,28 @@
|
|||
#!/bin/sh
|
||||
|
||||
BIN=miredo-server
|
||||
DEFAULT=/etc/default/$BIN
|
||||
RUN_D=/var/run
|
||||
PID_F=$RUN_D/$BIN.pid
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
[ -d $RUN_D ] || mkdir -p $RUN_D
|
||||
insmod ipv6
|
||||
insmod tun
|
||||
$BIN $OPTIONS
|
||||
;;
|
||||
stop)
|
||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 (start|stop|restart)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
28
openwrt/package/miredo/files/miredo.init
Normal file
28
openwrt/package/miredo/files/miredo.init
Normal file
|
@ -0,0 +1,28 @@
|
|||
#!/bin/sh
|
||||
|
||||
BIN=miredo
|
||||
DEFAULT=/etc/default/$BIN
|
||||
RUN_D=/var/run
|
||||
PID_F=$RUN_D/$BIN.pid
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
[ -d $RUN_D ] || mkdir -p $RUN_D
|
||||
insmod ipv6
|
||||
insmod tun
|
||||
$BIN $OPTIONS
|
||||
;;
|
||||
stop)
|
||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 (start|stop|restart)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
1
openwrt/package/miredo/ipkg/miredo-server.conffiles
Normal file
1
openwrt/package/miredo/ipkg/miredo-server.conffiles
Normal file
|
@ -0,0 +1 @@
|
|||
/etc/miredo-server.conf
|
5
openwrt/package/miredo/ipkg/miredo-server.control
Normal file
5
openwrt/package/miredo/ipkg/miredo-server.control
Normal file
|
@ -0,0 +1,5 @@
|
|||
Package: miredo-server
|
||||
Priority: optional
|
||||
Section: net
|
||||
Depends: kmod-ipv6, kmod-tun, libpthread, uclibc++
|
||||
Description: A Teredo (IPv6 tunneling over UDP through NAT) server daemon
|
1
openwrt/package/miredo/ipkg/miredo.conffiles
Normal file
1
openwrt/package/miredo/ipkg/miredo.conffiles
Normal file
|
@ -0,0 +1 @@
|
|||
/etc/miredo.conf
|
5
openwrt/package/miredo/ipkg/miredo.control
Normal file
5
openwrt/package/miredo/ipkg/miredo.control
Normal file
|
@ -0,0 +1,5 @@
|
|||
Package: miredo
|
||||
Priority: optional
|
||||
Section: net
|
||||
Depends: kmod-ipv6, kmod-tun, libpthread, uclibc++
|
||||
Description: A Teredo (IPv6 tunneling over UDP through NAT) client and relay daemon
|
Loading…
Reference in a new issue