[packages] asterisk-1.8.x: fix chan_gtalk (#9976)
[openwrt/svn-archive/archive.git] / net / xl2tpd / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=xl2tpd
11 PKG_VERSION:=1.3.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=ftp://ftp.xelerance.com/xl2tpd/
16 PKG_MD5SUM:=28264284552c442b24cf421755a2bb48
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/xl2tpd
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=An L2TP (Layer 2 Tunneling Protocol) daemon
26 URL:=http://www.xelerance.com/software/xl2tpd/
27 SUBMENU:=VPN
28 endef
29
30 define Package/xl2tpd/description
31 l2tpd is the open source implementation of the L2TP tunneling protocol (RFC2661).
32 It does implement both LAC and LNS role in a L2TP networking architecture. The
33 main goal of this protocol is to tunnel PPP frame trough 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/xl2tpd.conf
42 /etc/xl2tpd/xl2tp-secrets
43 /etc/ppp/options.xl2tpd
44 endef
45
46 define Package/xl2tpd/install
47 $(INSTALL_DIR) $(1)/usr/sbin
48 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/local/sbin/xl2tpd $(1)/usr/sbin/
49
50 $(INSTALL_DIR) $(1)/etc/init.d
51 $(INSTALL_BIN) ./files/xl2tpd.init $(1)/etc/init.d/xl2tpd
52
53 $(INSTALL_DIR) $(1)/etc/xl2tpd
54 $(INSTALL_DATA) ./files/xl2tpd.conf $(1)/etc/xl2tpd/
55 $(INSTALL_CONF) ./files/xl2tp-secrets $(1)/etc/xl2tpd/
56
57 $(INSTALL_DIR) $(1)/etc/ppp
58 $(INSTALL_DATA) ./files/options.xl2tpd $(1)/etc/ppp/
59 endef
60
61 $(eval $(call BuildPackage,xl2tpd))