# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: Makefile 6582 2007-03-16 20:21:39Z nbd $

include $(TOPDIR)/rules.mk

PKG_NAME:=pptp
PKG_VERSION:=1.6.0
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/pptpclient
PKG_MD5SUM:=9a706327fb9827541d7c86d48ceb9631

include $(INCLUDE_DIR)/package.mk

define Package/pptp
  SECTION:=net
  CATEGORY:=Network
  TITLE:=PPTP client
  DESCRIPTION:=\
	This package contains a PPTP (Point-to-Point Tunneling Protocol) client.
  URL:=http://pptpclient.sourceforge.net/
endef

define Package/pptp/install
	$(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/
	$(INSTALL_DIR) $(1)/etc/config
	$(INSTALL_DIR) $(1)/etc/init.d
ifneq ($(CONFIG_PACKAGE_V300B),y)
	$(INSTALL_CONF) ./files/pptp_l2l_dout.conf $(1)/etc/config/pptp_l2l_dout
	$(INSTALL_CONF) ./files/pptp_l2l_din.conf $(1)/etc/config/pptp_l2l_din
	$(INSTALL_BIN) ./files/pptp_l2l_dout.init $(1)/etc/init.d/pptp_l2l_dout
	$(INSTALL_BIN) ./files/pptp_l2l_din.init $(1)/etc/init.d/pptp_l2l_din
endif	
endef

$(eval $(call BuildPackage,pptp))
