diff options
Diffstat (limited to 'meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.9.0.bb')
-rw-r--r-- | meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.9.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.9.0.bb b/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.9.0.bb new file mode 100644 index 0000000000..10c9170fb1 --- /dev/null +++ b/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.9.0.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "Client for Microsoft PPTP VPNs" | ||
2 | DESCRIPTION = "PPTP Client is a Linux, FreeBSD, NetBSD \ | ||
3 | and OpenBSD client for the proprietary Microsoft Point-to-Point \ | ||
4 | Tunneling Protocol, PPTP. Allows connection to a PPTP based \ | ||
5 | Virtual Private Network (VPN) as used by employers and some \ | ||
6 | cable and ADSL internet service providers." | ||
7 | HOMEPAGE = "http://pptpclient.sourceforge.net" | ||
8 | SECTION = "net" | ||
9 | LICENSE = "GPLv2+" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
11 | |||
12 | SRC_URI = "${SOURCEFORGE_MIRROR}/sourceforge/pptpclient/pptp-${PV}.tar.gz \ | ||
13 | file://options.pptp \ | ||
14 | file://0001-include-missing-sys-types.h.patch \ | ||
15 | " | ||
16 | |||
17 | SRC_URI[md5sum] = "b2117b377f65294a9786f80f0235d308" | ||
18 | SRC_URI[sha256sum] = "0b1e8cbfc578d3f5ab12ee87c5c2c60419abfe9cc445690a8a19c320b11c9201" | ||
19 | |||
20 | S = "${WORKDIR}/pptp-${PV}" | ||
21 | |||
22 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
23 | |||
24 | do_install() { | ||
25 | install -d ${D}${sbindir} ${D}${sysconfdir}/ppp ${D}${mandir}/man8 | ||
26 | install -m 555 pptp ${D}${sbindir} | ||
27 | install -m 644 pptp.8 ${D}${mandir}/man8 | ||
28 | install -m 644 ${WORKDIR}/options.pptp ${D}${sysconfdir}/ppp | ||
29 | } | ||
30 | |||
31 | RDEPENDS_${PN} = "ppp" | ||