blob: d41f1916e72ee1487e98fdc8c467027e31b6bacb (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit linux-mod eutils autotools
DESCRIPTION="Point-to-Point Tunnelling Protocol Client/Server for Linux"
SRC_URI="mirror://sourceforge/accel-pptp/${P}.tar.bz2"
HOMEPAGE="http://accel-pptp.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="tcpd server"
DEPEND="server? ( !net-dialup/pptpd )
>=net-dialup/ppp-2.4.2
>=virtual/linux-sources-2.6.15
tcpd? ( sys-apps/tcp-wrappers )"
RDEPEND="virtual/modutils"
MODULE_NAMES="pptp(misc:${S}/kernel/driver)"
BUILD_TARGETS="all"
BUILD_PARAMS="KDIR=${KERNEL_DIR}"
CONFIG_CHECK="PPP PPPOE"
MODULESD_PPTP_ALIASES=("net-pf-24 pptp")
src_unpack() {
unpack ${A}
convert_to_m "${S}/kernel/driver/Makefile"
use server && cd "${S}/pptpd-1.3.3" && eautoreconf
cd "${S}/pppd_plugin" && eautoreconf
}
src_compile() {
if use server; then
cd pptpd-1.3.3
econf --with-bcrelay \
$(use_with tcpd libwrap)
emake COPTS="${CFLAGS}" || die "make failed"
fi
cd "${S}"/pppd_plugin
econf
emake COPTS="${CFLAGS}" || die "make failed"
cd "${S}/kernel/driver"
linux-mod_src_compile || die "failed to build driver"
}
src_install () {
if use server; then
cd "${S}"/pptpd-1.3.3
einstall || die "make install failed"
insinto /etc
doins samples/pptpd.conf
insinto /etc/ppp
doins samples/options.pptpd
exeinto /etc/init.d
newexe "${FILESDIR}/pptpd-init" pptpd
insinto /etc/conf.d
newins "${FILESDIR}/pptpd-confd" pptpd
fi
cd "${S}"/pppd_plugin/src/.libs
local PPPD_VER=$(best_version net-dialup/ppp)
PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR}
PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision
insinto /usr/lib/pppd/${PPPD_VER}
newins pptp.so.0.0.0 pptp.so
doman "${S}"/pppd_plugin/src/pppd-pptp.8 || die
cd "${S}"/kernel/driver
linux-mod_src_install
cd "${S}"
dodoc README
cp -R example "${D}/usr/share/doc/${P}/exmaple"
}
|