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