add vtun package
SVN-Revision: 1120
This commit is contained in:
parent
726b0f00fa
commit
86b91c403f
6 changed files with 83 additions and 0 deletions
|
@ -76,6 +76,7 @@ source "package/tor/Config.in"
|
|||
source "package/ttcp/Config.in"
|
||||
source "package/ulogd/Config.in"
|
||||
source "package/vsftpd/Config.in"
|
||||
source "package/vtun/Config.in"
|
||||
source "package/wireless-tools/Config.in"
|
||||
source "package/wol/Config.in"
|
||||
source "package/wpa_supplicant/Config.in"
|
||||
|
|
|
@ -100,6 +100,7 @@ package-$(BR2_PACKAGE_TTCP) += ttcp
|
|||
package-$(BR2_PACKAGE_UCLIBCXX) += uclibc++
|
||||
package-$(BR2_PACKAGE_ULOGD) += ulogd
|
||||
package-$(BR2_PACKAGE_USBUTILS) += usbutils
|
||||
package-$(BR2_PACKAGE_VTUN) += vtun
|
||||
package-$(BR2_PACKAGE_VSFTPD) += vsftpd
|
||||
package-$(BR2_PACKAGE_WIRELESS_TOOLS) += wireless-tools
|
||||
package-$(BR2_PACKAGE_WOL) += wol
|
||||
|
@ -142,6 +143,7 @@ siproxd-compile: libosip2-compile
|
|||
sipsak-compile: openssl-compile
|
||||
tcpdump-compile: libpcap-compile
|
||||
tinc-compile: zlib-compile openssl-compile lzo-compile
|
||||
vtun-compile: zlib-compile openssl-compile lzo-compile
|
||||
tor-compile: libevent-compile openssl-compile zlib-compile
|
||||
wpa_supplicant-compile: openssl-compile
|
||||
|
||||
|
|
10
openwrt/package/vtun/Config.in
Normal file
10
openwrt/package/vtun/Config.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
config BR2_PACKAGE_VTUN
|
||||
tristate "vtun"
|
||||
default m if CONFIG_DEVEL
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_LZO
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
help
|
||||
A VPN tunneling daemon
|
||||
|
||||
http://vtun.sourceforge.net
|
61
openwrt/package/vtun/Makefile
Normal file
61
openwrt/package/vtun/Makefile
Normal file
|
@ -0,0 +1,61 @@
|
|||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME := vtun
|
||||
PKG_VERSION := 2.6
|
||||
PKG_RELEASE := 1
|
||||
PKG_MD5SUM := 309534fd03c5d13a19c43916f61f4bbf
|
||||
|
||||
PKG_SOURCE_URL := @SF/vtun
|
||||
PKG_SOURCE := $(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
PKG_CAT := zcat
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,VTUN,vtun,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
(cd $(PKG_BUILD_DIR) ; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS) \
|
||||
-I$(STAGING_DIR)/usr/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--sbindir=/usr/sbin \
|
||||
--libexecdir=/usr/lib \
|
||||
--datadir=/usr/share \
|
||||
--infodir=/usr/share/info \
|
||||
--mandir=/usr/share/man \
|
||||
--localstatedir=/var \
|
||||
--sysconfdir=/etc \
|
||||
--with-kernel=$(LINUX_DIR) \
|
||||
--with-zlib=$(STAGING_DIR)/usr/ \
|
||||
--with-lzo-headers=$(STAGING_DIR)/usr/include \
|
||||
--with-lzo-libs=$(STAGING_DIR)/usr/lib \
|
||||
$(DISABLE_NLS) )
|
||||
touch $(PKG_BUILD_DIR)/.configured
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CC=$(TARGET_CC) \
|
||||
CFLAGS="$(TARGET_CFLAGS) \
|
||||
-I$(STAGING_DIR)/usr/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib -lssl -lz -llzo -lcrypto" \
|
||||
vtund
|
||||
touch $@
|
||||
|
||||
$(IPKG_VTUN):
|
||||
mkdir -p $(IDIR_VTUN)/usr/sbin
|
||||
cp $(PKG_BUILD_DIR)/vtund $(IDIR_VTUN)/usr/sbin/
|
||||
$(STRIP) $(IDIR_VTUN)/usr/sbin/*
|
||||
mkdir -p $(IDIR_VTUN)/etc
|
||||
cp $(PKG_BUILD_DIR)/vtund.conf $(IDIR_VTUN)/etc
|
||||
$(IPKG_BUILD) $(IDIR_VTUN) $(PACKAGE_DIR)
|
1
openwrt/package/vtun/ipkg/vtun.conffiles
Normal file
1
openwrt/package/vtun/ipkg/vtun.conffiles
Normal file
|
@ -0,0 +1 @@
|
|||
/etc/vtund.conf
|
8
openwrt/package/vtun/ipkg/vtun.control
Normal file
8
openwrt/package/vtun/ipkg/vtun.control
Normal file
|
@ -0,0 +1,8 @@
|
|||
Package: vtun
|
||||
Priority: optional
|
||||
Section: net
|
||||
Architecture: mipsel
|
||||
Maintainer: marcel@slowthinkers.net
|
||||
Source: buildroot internal
|
||||
Description: A VPN tunnel daemon
|
||||
Depends: openssl, liblzo, zlib, kmod-tun
|
Loading…
Reference in a new issue