pptp-linux 1.7.1: Added latest version.
authorJamie Lenehan <lenehan@twibble.org>
Sat, 9 Jun 2007 01:21:18 +0000 (01:21 +0000)
committerJamie Lenehan <lenehan@twibble.org>
Sat, 9 Jun 2007 01:21:18 +0000 (01:21 +0000)
packages/pptp-linux/pptp-linux-1.5.0/.mtn2git_empty [moved from packages/pptp-linux/pptp-linux/.mtn2git_empty with 100% similarity]
packages/pptp-linux/pptp-linux-1.5.0/makefile.patch [moved from packages/pptp-linux/pptp-linux/makefile.patch with 100% similarity]
packages/pptp-linux/pptp-linux-1.5.0/options.pptp [moved from packages/pptp-linux/pptp-linux/options.pptp with 100% similarity]
packages/pptp-linux/pptp-linux-1.7.1/.mtn2git_empty [new file with mode: 0644]
packages/pptp-linux/pptp-linux-1.7.1/options.pptp [new file with mode: 0644]
packages/pptp-linux/pptp-linux_1.7.1.bb [new file with mode: 0644]

diff --git a/packages/pptp-linux/pptp-linux-1.7.1/.mtn2git_empty b/packages/pptp-linux/pptp-linux-1.7.1/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/pptp-linux/pptp-linux-1.7.1/options.pptp b/packages/pptp-linux/pptp-linux-1.7.1/options.pptp
new file mode 100644 (file)
index 0000000..f446e22
--- /dev/null
@@ -0,0 +1,30 @@
+#
+# Lock the port
+#
+lock
+
+#
+# We don't need the tunnel server to authenticate itself
+#
+noauth
+
+#
+# Turn off transmission protocols we know won't be used
+#
+nobsdcomp
+nodeflate
+
+#
+# We want MPPE
+# (option naming specific to ppp 2.4.0 with unofficial patch)
+#
+#mppe-40
+mppe-128
+#mppe-stateless
+
+#
+# We want a sane mtu/mru 
+# (ppp 2.4.0 with unofficial patch)
+#
+#mtu 1000
+#mru 1000
diff --git a/packages/pptp-linux/pptp-linux_1.7.1.bb b/packages/pptp-linux/pptp-linux_1.7.1.bb
new file mode 100644 (file)
index 0000000..b233cef
--- /dev/null
@@ -0,0 +1,25 @@
+DESCRIPTION = "PPTP Client is a Linux, FreeBSD, NetBSD \
+and OpenBSD client for the proprietary Microsoft Point-to-Point \
+Tunneling Protocol, PPTP. Allows connection to a PPTP based \
+Virtual Private Network (VPN) as used by employers and some \
+cable and ADSL internet service providers."
+HOMEPAGE = "http://pptpclient.sourceforge.net"
+SECTION = "network"
+LICENSE = "GPL"
+RDEPENDS = "ppp"
+PR = "r0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/sourceforge/pptpclient/pptp-${PV}.tar.gz \
+           file://options.pptp"
+
+S = "${WORKDIR}/pptp-${PV}"
+
+do_compile() {
+        oe_runmake
+}
+do_install() {
+        install -d ${D}${sbindir} ${D}${sysconfdir}/ppp ${D}${mandir}/man8
+        install -m 555 pptp ${D}${sbindir}
+        install -m 644 pptp.8 ${D}${mandir}/man8
+        install -m 644 ${WORKDIR}/options.pptp ${D}${sysconfdir}/ppp
+}