077fca2741e1ed919ded1986e01816e16e4bad20
[openwrt/svn-archive/archive.git] / net / xl2tpd / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=xl2tpd
12 PKG_VERSION:=1.1.12
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.xelerance.com/software/xl2tpd
17 PKG_MD5SUM:=8ace771a29139485c0edf428091cad5d
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/xl2tpd
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=An L2TP (Layer 2 Tunneling Protocol) daemon
25 URL:=http://www.xelerance.com/software/xl2tpd
26 SUBMENU:=VPN
27 endef
28
29 define Package/xl2tpd/description
30 l2tpd is the open source implementation of the L2TP tunneling protocol
31 (RFC2661). It does implement both LAC and LNS role in a L2TP networking
32 architecture. The main goal of this protocol is to tunnel PPP frame trough
33 an ip network.
34 endef
35
36 # XXX: CFLAGS are already set by Build/Compile/Default
37 MAKE_FLAGS+= \
38 OFLAGS=""
39
40 define Package/xl2tpd/conffiles
41 /etc/xl2tpd/ppp.options
42 /etc/xl2tpd/ppp.secrets
43 /etc/xl2tpd/xl2tpd.conf
44 endef
45
46 define Package/xl2tpd/install
47 $(INSTALL_DIR) $(1)/usr/sbin
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/xl2tpd $(1)/usr/sbin/
49 $(INSTALL_DIR) $(1)/etc/init.d
50 $(INSTALL_BIN) ./files/xl2tpd.init $(1)/etc/init.d/xl2tpd
51 $(INSTALL_DIR) $(1)/etc/xl2tpd
52 $(INSTALL_DATA) ./files/ppp.options $(1)/etc/xl2tpd/
53 $(INSTALL_DATA) ./files/ppp.secrets $(1)/etc/xl2tpd/
54 $(INSTALL_DATA) ./files/xl2tpd.conf $(1)/etc/xl2tpd/
55 chmod 0600 $(1)/etc/xl2tpd/ppp.secrets
56 endef
57
58 $(eval $(call BuildPackage,xl2tpd))