update xl2tpd to 1.1.11, fix opt flags, rename ppp related config files, cleanup
[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.11
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:=ab5656eb5a3d1973f7f69b039675332e
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 endef
27
28 define Package/xl2tpd/description
29 l2tpd is the open source implementation of the L2TP tunneling protocol
30 (RFC2661). It does implement both LAC and LNS role in a L2TP networking
31 architecture. The main goal of this protocol is to tunnel PPP frame trough
32 an ip network.
33 endef
34
35 # XXX: CFLAGS are already set by Build/Compile/Default
36 MAKE_FLAGS+= \
37 OFLAGS=""
38
39 define Package/xl2tpd/conffiles
40 /etc/xl2tpd/ppp.options
41 /etc/xl2tpd/ppp.secrets
42 /etc/xl2tpd/xl2tpd.conf
43 endef
44
45 define Package/xl2tpd/install
46 $(INSTALL_DIR) $(1)/usr/sbin
47 $(INSTALL_BIN) $(PKG_BUILD_DIR)/xl2tpd $(1)/usr/sbin/
48 $(INSTALL_DIR) $(1)/etc/init.d
49 $(INSTALL_BIN) ./files/xl2tpd.init $(1)/etc/init.d/xl2tpd
50 $(INSTALL_DIR) $(1)/etc/xl2tpd
51 $(INSTALL_DATA) ./files/ppp.options $(1)/etc/xl2tpd/
52 $(INSTALL_DATA) ./files/ppp.secrets $(1)/etc/xl2tpd/
53 $(INSTALL_DATA) ./files/xl2tpd.conf $(1)/etc/xl2tpd/
54 chmod 0600 $(1)/etc/xl2tpd/ppp.secrets
55 endef
56
57 $(eval $(call BuildPackage,xl2tpd))