nuke $Id$ in /packages as well
[openwrt/svn-archive/archive.git] / net / l2tpd / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=l2tpd
11 PKG_VERSION:=0.70pre
12 PKG_UPSTREAM_VERSION:=0.70-pre20031121
13 PKG_RELEASE:=4.1
14
15 PKG_SOURCE:=$(PKG_NAME)_$(PKG_UPSTREAM_VERSION).orig.tar.gz
16 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/l2tpd
17 PKG_MD5SUM:=3f2707b6e16a8cb72e7bf64f574202fa
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_UPSTREAM_VERSION).orig
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/l2tpd
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=An L2TP (Layer 2 Tunneling Protocol) daemon
27 URL:=http://l2tpd.sourceforge.net/
28 SUBMENU:=VPN
29 endef
30
31 define Package/l2tpd/description
32 l2tpd is the open source implementation of the L2TP tunneling
33 protocol (RFC2661). It does implement both LAC and LNS role
34 in a L2TP networking architecture. The main goal of this protocol is
35 to tunnel PPP frame trough an ip network.
36 endef
37
38 define Package/l2tpd/conffiles
39 /etc/l2tpd/l2tpd.conf
40 /etc/ppp/options.l2tpd
41 endef
42
43 define Build/Compile
44 $(call Build/Compile/Default, \
45 CFLAGS="$(TARGET_CFLAGS) -I. -DLINUX -DSANITY -DIP_ALLOCATION" \
46 )
47 endef
48
49 define Package/l2tpd/install
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
52 $(INSTALL_DIR) $(1)/etc/l2tpd
53 $(INSTALL_DATA) ./files/l2tpd.conf $(1)/etc/l2tpd/
54 $(INSTALL_DIR) $(1)/etc/ppp
55 $(INSTALL_DATA) ./files/options.l2tpd $(1)/etc/ppp/
56 $(INSTALL_DIR) $(1)/etc/init.d
57 $(INSTALL_BIN) ./files/l2tpd.init $(1)/etc/init.d/l2tpd
58 endef
59
60 $(eval $(call BuildPackage,l2tpd))
61