add submenus to several packages
[packages.git] / net / openvpn / 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:=openvpn
12 PKG_VERSION:=2.0.9
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://openvpn.net/release @SF/openvpn
17 PKG_MD5SUM:=60745008b90b7dbe25fe8337c550fec6
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/openvpn
26   SECTION:=net
27   CATEGORY:=Network
28   DEPENDS:=+kmod-tun +libopenssl +liblzo
29   TITLE:=Open source VPN solution using SSL
30   URL:=http://openvpn.net
31   SUBMENU:=vpn
32 endef
33
34 define Package/openvpn/description
35          Open source VPN solution using SSL
36 endef
37
38 define Package/openvpn-easy-rsa
39   $(call Package/openvpn)
40   DEPENDS:=openvpn +openssl-util
41   TITLE:=Simple shell scripts to manage a Certificate Authority
42 endef
43
44 define Build/Configure
45         $(call Build/Configure/Default, \
46                 --disable-pthread \
47                 --disable-debug \
48                 --disable-plugins \
49                 --enable-management \
50                 --disable-socks \
51                 --enable-password-save \
52         )
53 endef
54
55 define Build/Compile    
56         $(MAKE) -C $(PKG_BUILD_DIR) \
57                 DESTDIR="$(PKG_INSTALL_DIR)" \
58                 all install
59 endef
60
61 define Package/openvpn/install  
62         $(INSTALL_DIR) $(1)/usr/sbin
63         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/openvpn $(1)/usr/sbin/
64         $(INSTALL_DIR) $(1)/etc/init.d/
65         $(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
66         $(INSTALL_DIR) $(1)/etc/default
67         $(INSTALL_BIN) files/$(PKG_NAME).default $(1)/etc/default/$(PKG_NAME)
68 endef
69
70 define Package/openvpn-easy-rsa/install 
71         $(INSTALL_DIR) $(1)/usr/sbin
72         $(CP) $(PKG_BUILD_DIR)/easy-rsa/2.0/{build-*,clean-all,inherit-inter,list-crl,pkitool,revoke-full,sign-req,whichopensslcnf} $(1)/usr/sbin/
73         $(INSTALL_DIR) $(1)/etc/easy-rsa
74         install -m 0644 $(PKG_BUILD_DIR)/easy-rsa/2.0/openssl.cnf $(1)/etc/easy-rsa/openssl.cnf
75         install -m 0644 $(PKG_BUILD_DIR)/easy-rsa/2.0/vars $(1)/etc/easy-rsa/vars
76 endef
77
78 $(eval $(call BuildPackage,openvpn))
79 $(eval $(call BuildPackage,openvpn-easy-rsa))