Category reorganization
[packages.git] / net / rp-l2tp / 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:=rp-l2tp
12 PKG_VERSION:=0.4
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/rp-l2tp
17 PKG_MD5SUM:=0e45d11cb4fa6c56cce6b1d119733ed9
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/rp-l2tpd/Default
26   SECTION:=net
27   CATEGORY:=Network
28   TITLE:=Roaring Penguin L2TP
29   DESCRIPTION:=\
30         Roaring Penguin L2TP (Layer 2 Tunneling Protocol) implementation.
31   URL:=http://sourceforge.net/projects/rp-l2tp/
32 endef
33
34 define Package/rp-l2tpd
35   $(call Package/rp-l2tpd/Default)
36 #       DEPENDS:=+rp-l2tpd-mod-cmd +rp-l2tpd-mod-ppp
37   TITLE+= daemon
38 #  MENU:=1
39 endef
40
41 #define Package/rp-l2tpd-mod-cmd
42 #  $(call Package/rp-l2tpd/Default)
43 #  TITLE:=Simple command handler for the RR L2TP daemon
44 #endef
45
46 #define Package/rp-l2tpd-mod-ppp
47 #  $(call Package/rp-l2tpd/Default)
48 #  TITLE:=PPP handler for the RR L2TP daeomon
49 #endef
50
51 # uses GNU configure
52 MAKE_FLAGS += \
53         DESTDIR="$(PKG_INSTALL_DIR)" \
54         all install
55
56 TARGET_CFLAGS := -I$(PKG_BUILD_DIR)/libevent $(TARGET_CFLAGS)
57
58 define Package/rp-l2tpd/install 
59         $(INSTALL_DIR) $(1)/etc
60         $(CP) $(PKG_INSTALL_DIR)/etc/l2tp.conf.example $(1)/etc/l2tp.conf
61         $(INSTALL_DIR) $(1)/usr/lib/l2tp
62         $(INSTALL_DIR) $(1)/usr/sbin
63         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/l2tpd $(1)/usr/sbin/
64         $(INSTALL_DIR) $(1)/etc/init.d
65         $(INSTALL_BIN) ./files/rp-l2tpd.init $(1)/etc/init.d/rp-l2tpd
66         $(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tp/cmd.so $(1)/usr/lib/l2tp/
67         $(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tp/sync-pppd.so $(1)/usr/lib/l2tp/
68         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/l2tp-control $(1)/usr/sbin/
69 endef
70
71 #define Package/rp-l2tpd-mod-cmd/install        
72 #       $(INSTALL_DIR) $(1)/usr/lib/l2tp
73 #       $(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tp/cmd.so $(1)/usr/lib/l2tp/
74 #       $(INSTALL_DIR) $(1)/usr/sbin
75 #       $(CP) $(PKG_INSTALL_DIR)/usr/sbin/l2tp-control $(1)/usr/sbin/
76 #endef
77
78 #define Package/rp-l2tpd-mod-ppp/install
79 #       $(INSTALL_DIR) $(1)/usr/lib/l2tp
80 #       $(CP) $(PKG_INSTALL_DIR)/usr/lib/l2tp/sync-pppd.so $(1)/usr/lib/l2tp/
81 #endef
82
83 $(eval $(call BuildPackage,rp-l2tpd))
84 #$(eval $(call BuildPackage,rp-l2tpd-mod-cmd))
85 #$(eval $(call BuildPackage,rp-l2tpd-mod-ppp))