pptp: drop the dependency on ip if netifd is selected
[openwrt/svn-archive/archive.git] / package / pptp / Makefile
1 #
2 # Copyright (C) 2006-2012 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:=pptp
11 PKG_VERSION:=1.7.1
12 PKG_RELEASE:=5
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/pptpclient
16 PKG_MD5SUM:=b47735ba5d6d37dfdbccb85afc044ede
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/pptp
21 SECTION:=net
22 CATEGORY:=Network
23 TITLE:=PPTP client
24 MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
25 URL:=http://pptpclient.sourceforge.net/
26 DEPENDS:=+ppp +kmod-gre +resolveip +!PACKAGE_netifd:ip
27 endef
28
29 define Package/pptp/description
30 This package contains a PPTP (Point-to-Point Tunneling Protocol) client.
31 endef
32
33 define Package/pptp/conffiles
34 /etc/ppp/options.pptp
35 endef
36
37 MAKE_FLAGS += OPTIMIZE="$(TARGET_CFLAGS)"
38
39 ifneq ($(CONFIG_PACKAGE_netifd),)
40 define Package/pptp/install
41 $(INSTALL_DIR) $(1)/usr/sbin
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/
43 $(INSTALL_DIR) $(1)/etc/ppp
44 $(INSTALL_DATA) ./files/options.pptp $(1)/etc/ppp/
45 $(INSTALL_DIR) $(1)/lib/netifd/proto/
46 $(INSTALL_BIN) ./files/pptp.sh $(1)/lib/netifd/proto/
47 endef
48 else
49 define Package/pptp/install
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/
52 $(INSTALL_DIR) $(1)/etc/ppp
53 $(INSTALL_DATA) ./files/options.pptp $(1)/etc/ppp/
54 $(INSTALL_DIR) $(1)/lib/network
55 $(INSTALL_DATA) ./files.old/pptp.sh $(1)/lib/network/
56 endef
57 endif
58
59 $(eval $(call BuildPackage,pptp))