blob: 5c6a71bb2e11b6f3ab232f1000c110adf684a608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
DESCRIPTION = "Poptop is the PPTP server solution for Linux Using Poptop, \
Linux servers can now function seamlessly in a PPTP VPN environment. This \
enables administrators to leverage the considerable benefits of both \
Microsoft and Linux operating systems The current release version supports \
Windows 95/98/Me/NT/2000/XP PPTP clients and Linux PPTP clients"
HOMEPAGE = "http://www.poptop.org/"
SECTION = "network"
LICENSE = "GPL"
RDEPENDS_${PN} = "ppp"
RDEPENDS_${PN}-logwtmp-plugin = "${PN}"
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/poptop/pptpd-${PV}.tar.gz \
file://fix-plugins-install.patch;patch=1 \
file://pptpd.init"
S = "${WORKDIR}/pptpd-${PV}"
inherit autotools update-rc.d
do_install_append() {
# Install init script
install -m 0755 -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/pptpd.init ${D}${sysconfdir}/init.d/pptpd
# Install
install -d ${D}${sbindir} ${D}/${sysconfdir} ${D}/${sysconfdir}/ppp
install -m 0644 samples/options.pptpd ${D}/${sysconfdir}/ppp/
install -m 0644 samples/pptpd.conf ${D}/${sysconfdir}/
# broken
rm -f ${D}${libdir}/pptpd/pptpd-logwtmp.so
}
PACKAGES = "${PN}-dbg ${PN}-bcrelay ${PN} ${PN}-doc"
FILES_${PN}-bcrelay = "${sbindir}/bcrelay"
CONFFILES_${PN} = "${sysconfdir}/pptpd.conf \
${sysconfdir}/ppp/options.pptpd"
INITSCRIPT_NAME = "pptpd"
INITSCRIPT_PARAMS = "defaults 92 08"
|