blob: ba56fe6f82e58d1183fb442d7045035ec88e64e9 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/accel-ppp/accel-ppp-1.7.9999.ebuild,v 1.2 2014/06/03 07:34:22 pinkbyte Exp $
EAPI=5
EGIT_REPO_URI="git://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp"
EGIT_BRANCH="1.7"
inherit cmake-utils git-2 linux-info
DESCRIPTION="High performance PPTP, PPPoE and L2TP server"
HOMEPAGE="http://accel-ppp.sourceforge.net/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug doc postgres radius shaper snmp valgrind"
RDEPEND="postgres? ( dev-db/postgresql-base )
snmp? ( net-analyzer/net-snmp )
dev-libs/libpcre
dev-libs/openssl:0"
DEPEND="${RDEPEND}
valgrind? ( dev-util/valgrind )"
DOCS=( README )
CONFIG_CHECK="~L2TP ~PPPOE ~PPTP"
src_prepare() {
sed -i -e "/mkdir/d" \
-e "/echo/d" \
-e "s: RENAME accel-ppp.conf.dist::" accel-pppd/CMakeLists.txt || die 'sed on accel-pppd/CMakeLists.txt failed'
epatch_user
}
src_configure() {
# There must be also dev-libs/tomcrypt (TOMCRYPT) as crypto alternative to OpenSSL
local mycmakeargs=(
-DBUILD_DRIVER=FALSE
-DCRYPTO=OPENSSL
$(cmake-utils_use debug MEMDEBUG)
$(cmake-utils_use postgres LOG_PGSQL)
$(cmake-utils_use radius RADIUS)
$(cmake-utils_use shaper SHAPER)
$(cmake-utils_use snmp NETSNMP)
$(cmake-utils_use valgrind VALGRIND)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
use doc && dodoc -r rfc
if use snmp; then
insinto /usr/share/snmp/mibs
doins accel-pppd/extra/net-snmp/ACCEL-PPP-MIB.txt
fi
newinitd "${FILESDIR}"/${PN}.initd ${PN}d
newconfd "${FILESDIR}"/${PN}.confd ${PN}d
dodir /var/log/accel-ppp
}
|