diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-13 22:51:49 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-03-20 17:29:15 +0100 |
commit | 60c1f0f64d23003a19a07d6b9638542130f6641d (patch) | |
tree | 8fb2787f4c49baded97cd55e0c371fe1cffce2b6 /package/pptp | |
parent | d58a09110ccfa95f06c983fe796806f2e035c9d2 (diff) | |
parent | b3ce218b51746d3a576221ea542facf3a1703ab2 (diff) | |
download | openwrt-60c1f0f64d23003a19a07d6b9638542130f6641d.tar.gz openwrt-60c1f0f64d23003a19a07d6b9638542130f6641d.tar.bz2 openwrt-60c1f0f64d23003a19a07d6b9638542130f6641d.zip |
finally move buildroot-ng to trunk
Diffstat (limited to 'package/pptp')
-rw-r--r-- | package/pptp/Makefile | 42 | ||||
-rw-r--r-- | package/pptp/files/options.pptp | 7 | ||||
-rw-r--r-- | package/pptp/files/pptp.sh | 23 |
3 files changed, 72 insertions, 0 deletions
diff --git a/package/pptp/Makefile b/package/pptp/Makefile new file mode 100644 index 0000000000..bb0710419b --- /dev/null +++ b/package/pptp/Makefile @@ -0,0 +1,42 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +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 +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +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 -d -m0755 $(1)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/ + install -d -m0755 $(1)/etc/ppp + install -m0644 ./files/options.pptp $(1)/etc/ppp/ + install -d -m0755 $(1)/lib/network + install -m0755 ./files/pptp.sh $(1)/lib/network/ +endef + +$(eval $(call BuildPackage,pptp)) diff --git a/package/pptp/files/options.pptp b/package/pptp/files/options.pptp new file mode 100644 index 0000000000..5332445e78 --- /dev/null +++ b/package/pptp/files/options.pptp @@ -0,0 +1,7 @@ +lock +noauth +nobsdcomp +nodeflate +idle 0 +defaultroute +maxfail 0 diff --git a/package/pptp/files/pptp.sh b/package/pptp/files/pptp.sh new file mode 100644 index 0000000000..fffa625a2f --- /dev/null +++ b/package/pptp/files/pptp.sh @@ -0,0 +1,23 @@ +scan_pptp() { + scan_ppp "$@" +} + +setup_interface_pptp() { + local iface="$1" + local config="$2" + + config_get device "$config" device + + for module in slhc ppp_generic ppp_async ip_gre; do + /sbin/insmod $module 2>&- >&- + done + setup_interface "$iface" "$config" "dhcp" + + config_get mtu "$cfg" mtu + config_get server "$cfg" server + mtu=${mtu:-1452} + start_pppd "$config" \ + pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" + file /etc/ppp/options.pptp + mtu $mtu mru $mtu +} |