strongswan: add missing config files for plugins
[openwrt/svn-archive/archive.git] / net / pptpd / Makefile
1 #
2 # Copyright (C) 2006-2010 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:=pptpd
11 PKG_VERSION:=1.3.4
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/poptop
16 PKG_MD5SUM:=b38df9c431041922c997c1148bedf591
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/pptpd
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=+kmod-ppp +kmod-gre +ppp
26 TITLE:=PopTop pptp server
27 URL:=http://www.poptop.org/
28 SUBMENU:=VPN
29 endef
30
31 CONFIGURE_ARGS += \
32 --enable-bcrelay \
33
34 CONFIGURE_VARS += \
35 ac_cv_header_libintl_h=no \
36
37 MAKE_FLAGS += \
38 COPTS="$(TARGET_CFLAGS)" \
39 INSTALL="install" \
40
41 define Package/pptpd/conffiles
42 /etc/pptpd.conf
43 /etc/ppp/options.pptpd
44 endef
45
46 define Package/pptpd/install
47 $(INSTALL_DIR) $(1)/usr/sbin
48 $(CP) \
49 $(PKG_INSTALL_DIR)/usr/sbin/bcrelay \
50 $(PKG_INSTALL_DIR)/usr/sbin/pptpctrl \
51 $(PKG_INSTALL_DIR)/usr/sbin/pptpd \
52 $(1)/usr/sbin/
53 $(INSTALL_DIR) $(1)/usr/lib/pptpd
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pptpd/* $(1)/usr/lib/pptpd/
55 $(INSTALL_DIR) $(1)/etc
56 $(INSTALL_DATA) ./files/pptpd.conf $(1)/etc/
57 $(INSTALL_DIR) $(1)/etc/init.d
58 $(INSTALL_BIN) ./files/pptpd.init $(1)/etc/init.d/pptpd
59 $(INSTALL_DIR) $(1)/etc/ppp
60 $(INSTALL_DATA) ./files/options.pptpd $(1)/etc/ppp/
61 endef
62
63 $(eval $(call BuildPackage,pptpd))