b4a56caa9c
git-svn-id: svn://svn.openwrt.org/openwrt/packages@29056 3c298f89-4303-0410-b956-a3cf2f4a3e73
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2010-2011 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:=chaosvpn
|
|
PKG_VERSION:=2.0
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=${PKG_NAME}-${PKG_VERSION}.tar.gz
|
|
PKG_SOURCE_URL:=http://github.com/downloads/ryd/chaosvpn/
|
|
PKG_MD5SUM:=4263202d65bf4ab0d1356b149d7c53af
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/chaosvpn
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Config generator for chaos vpn
|
|
SUBMENU:=VPN
|
|
DEPENDS:=+ip +tinc +kmod-tun +libopenssl
|
|
URL:=https://wiki.hamburg.ccc.de/index.php/ChaosVPN::DebianHowto
|
|
MAINTAINER:=Christopher J. Pilkington <cjp@0x1.net>
|
|
endef
|
|
|
|
define Package/chaosvpn/description
|
|
Configure tincd for the chaosvpn network
|
|
endef
|
|
|
|
MAKE_FLAGS += \
|
|
COPT="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(TARGET_LDFLAGS)"
|
|
|
|
define Package/chaosvpn/install
|
|
$(INSTALL_DIR) $(1)/etc/tinc/chaos/ $(1)/usr/sbin/ $(1)/etc/init.d/ $(1)/etc/hotplug.d/iface/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/chaosvpn $(1)/usr/sbin/
|
|
#$(INSTALL_DATA) $(PKG_BUILD_DIR)/chaosvpn.conf $(1)/etc/tinc/
|
|
sed -e 's/"\/sbin\/ip /"\/usr\/sbin\/ip /' <$(PKG_BUILD_DIR)/chaosvpn.conf >$(1)/etc/tinc/chaosvpn.conf
|
|
$(INSTALL_BIN) ./files/chaosvpn_config.sh $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/chaosvpn.init $(1)/etc/init.d/chaosvpn
|
|
$(INSTALL_BIN) ./files/chaosvpn.hotplug $(1)/etc/hotplug.d/iface/40-chaosvpn
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,chaosvpn))
|
|
|