# # Copyright (C) 2009-2010 Thomas Heil # 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:=l2tpv3tun PKG_VERSION:=0.2 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://www.openl2tp.org/releases PKG_MD5SUM:=d3b4a9af652cca9f34d3eea4a7ff6041 PKG_INSTALL:=1 include $(INCLUDE_DIR)/kernel.mk include $(INCLUDE_DIR)/package.mk define Package/l2tpv3tun SECTION:=net CATEGORY:=Network DEPENDS:=+libnl-tiny +ip +kmod-l2tp +kmod-l2tp-ip +kmod-l2tp-eth TITLE:=Control utility for static L2TP v3 (Pseudowire) tunnels MAINTAINER:=Thomas Heil URL:=http://www.openl2tp.org endef define Package/l2tpv3tun/description The l2tpv3tun utility is a command line frontend for configuring static L2TP v3 pseudowire tunnels. endef MAKE_FLAGS += \ CC="$(TARGET_CC)" \ CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/usr/include/libnl-tiny/" \ LD="$(TARGET_CC)" \ LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib/ -lnl-tiny" define Package/l2tpv3tun/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/l2tpv3tun $(1)/usr/bin/ $(INSTALL_DIR) $(1)/lib/network $(INSTALL_BIN) ./files/l2tp.sh $(1)/lib/network/ endef $(eval $(call BuildPackage,l2tpv3tun))