2010-10-07 18:21:18 +03:00
|
|
|
#
|
2008-05-03 15:11:35 +03:00
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 10:12:49 +02:00
|
|
|
|
2005-03-15 12:34:22 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=pptp
|
[backfire] merge ppp, pppoe, pptp and 3g fixes
r21283, r21284, r21285, r21287, r21302, r21303, r21341,
r21361, r21379, r21383, r21386, r21387, r21388, r21389,
r21390, r21391, r21392, r21393, r21426, r21556, r21563
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@21564 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-24 20:06:58 +03:00
|
|
|
PKG_VERSION:=1.7.1
|
2010-05-28 03:48:52 +03:00
|
|
|
PKG_RELEASE:=3
|
2005-03-21 10:12:49 +02:00
|
|
|
|
2005-03-15 12:34:22 +02:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-05-10 22:06:22 +03:00
|
|
|
PKG_SOURCE_URL:=@SF/pptpclient
|
[backfire] merge ppp, pppoe, pptp and 3g fixes
r21283, r21284, r21285, r21287, r21302, r21303, r21341,
r21361, r21379, r21383, r21386, r21387, r21388, r21389,
r21390, r21391, r21392, r21393, r21426, r21556, r21563
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@21564 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-24 20:06:58 +03:00
|
|
|
PKG_MD5SUM:=b47735ba5d6d37dfdbccb85afc044ede
|
2005-03-15 12:34:22 +02:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-05-19 02:42:09 +03:00
|
|
|
|
2006-05-10 22:06:22 +03:00
|
|
|
define Package/pptp
|
2006-09-23 16:29:15 +03:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=PPTP client
|
|
|
|
URL:=http://pptpclient.sourceforge.net/
|
2008-05-03 15:11:35 +03:00
|
|
|
DEPENDS:=+ppp +kmod-gre
|
2006-05-10 22:06:22 +03:00
|
|
|
endef
|
2005-03-15 12:34:22 +02:00
|
|
|
|
2010-10-07 18:21:18 +03:00
|
|
|
define Package/pptp/description
|
2007-09-07 11:34:51 +03:00
|
|
|
This package contains a PPTP (Point-to-Point Tunneling Protocol) client.
|
|
|
|
endef
|
|
|
|
|
2010-10-07 18:21:18 +03:00
|
|
|
define Package/pptp/conffiles
|
|
|
|
/etc/ppp/options.pptp
|
|
|
|
endef
|
|
|
|
|
2006-05-10 22:06:22 +03:00
|
|
|
define Package/pptp/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/ppp
|
|
|
|
$(INSTALL_DATA) ./files/options.pptp $(1)/etc/ppp/
|
|
|
|
$(INSTALL_DIR) $(1)/lib/network
|
|
|
|
$(INSTALL_BIN) ./files/pptp.sh $(1)/lib/network/
|
2006-05-10 22:06:22 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,pptp))
|