f0ecb94680883c88d9a337561072827ea1431018
[openwrt/svn-archive/archive.git] / net / l2tpns / 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:=l2tpns
12 PKG_VERSION:=2.1.14
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/l2tpns
17 PKG_MD5SUM:=2a0ee2a3678160c335f1d68c17c4f871
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/l2tpns
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libcli
28 TITLE:=An L2TP enhanced server
29 URL:=http://sourceforge.net/projects/l2tpns
30 endef
31
32 define Package/l2tpns/description
33 l2tpns is a layer 2 tunneling protocol network server (LNS).
34 it supports up to 65535 concurrent sessions per server/cluster
35 plus ISP features such as rate limiting, walled garden, usage
36 accounting, and more.
37 endef
38
39 define Package/l2tpns/conffiles
40 /etc/l2tpns/ip_pool
41 /etc/l2tpns/startup-config
42 /etc/l2tpns/users
43 endef
44
45 define Build/Compile
46 $(call Build/Compile/Default, \
47 LD="$(TARGET_CC)" \
48 OPTIM="$(TARGET_CFLAGS)" \
49 STAGING_DIR="$(STAGING_DIR)" \
50 DESTDIR="$(PKG_INSTALL_DIR)" \
51 all install \
52 )
53 endef
54
55 define Package/l2tpns/install
56 $(INSTALL_DIR) $(1)/etc/l2tpns
57 $(CP) $(PKG_INSTALL_DIR)/etc/l2tpns/* $(1)/etc/l2tpns/
58 $(INSTALL_DIR) $(1)/usr/lib/l2tpns
59 $(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tpns/* $(1)/usr/lib/l2tpns/
60 $(INSTALL_DIR) $(1)/usr/sbin
61 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
62 endef
63
64 $(eval $(call BuildPackage,l2tpns))