You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.1 KiB
95 lines
2.1 KiB
9 years ago
|
# Copyright 1999-2016 Gentoo Foundation
|
||
9 years ago
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
9 years ago
|
EAPI=6
|
||
9 years ago
|
|
||
9 years ago
|
inherit cmake-utils flag-o-matic linux-info linux-mod
|
||
9 years ago
|
|
||
|
DESCRIPTION="High performance PPTP, PPPoE and L2TP server"
|
||
|
HOMEPAGE="http://accel-ppp.sourceforge.net/"
|
||
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
||
|
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE="debug doc ipoe postgres radius shaper snmp valgrind"
|
||
|
|
||
|
RDEPEND="postgres? ( dev-db/postgresql:* )
|
||
|
snmp? ( net-analyzer/net-snmp )
|
||
|
dev-libs/libpcre
|
||
|
dev-libs/openssl:0"
|
||
|
DEPEND="${RDEPEND}
|
||
|
valgrind? ( dev-util/valgrind )"
|
||
|
PDEPEND="net-dialup/ppp-scripts"
|
||
|
|
||
|
DOCS=( README )
|
||
|
|
||
|
CONFIG_CHECK="~L2TP ~PPPOE ~PPTP"
|
||
|
|
||
|
REQUIRED_USE="valgrind? ( debug )"
|
||
|
|
||
|
pkg_setup() {
|
||
|
if use ipoe; then
|
||
|
linux-mod_pkg_setup
|
||
|
set_arch_to_kernel
|
||
|
else
|
||
|
linux-info_pkg_setup
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
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'
|
||
9 years ago
|
sed -i -e '/modules_install/d' drivers/ipoe/CMakeLists.txt || die 'sed on drivers/ipoe/CMakeLists.txt failed'
|
||
9 years ago
|
|
||
9 years ago
|
# Bug #549918
|
||
|
append-ldflags -Wl,-z,lazy
|
||
|
|
||
|
cmake-utils_src_prepare
|
||
9 years ago
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
local libdir="$(get_libdir)"
|
||
|
# There must be also dev-libs/tomcrypt (TOMCRYPT) as crypto alternative to OpenSSL
|
||
|
local mycmakeargs=(
|
||
|
-DLIB_PATH_SUFFIX="${libdir#lib}"
|
||
9 years ago
|
-DBUILD_IPOE_DRIVER="$(usex ipoe)"
|
||
|
-DBUILD_PPTP_DRIVER=no
|
||
9 years ago
|
-DCRYPTO=OPENSSL
|
||
9 years ago
|
-DLOG_PGSQL="$(usex postgres)"
|
||
|
-DMEMDEBUG="$(usex debug)"
|
||
|
-DNETSNMP="$(usex snmp)"
|
||
|
-DRADIUS="$(usex radius)"
|
||
|
-DSHAPER="$(usex shaper)"
|
||
|
-DVALGRIND="$(usex valgrind)"
|
||
9 years ago
|
)
|
||
|
cmake-utils_src_configure
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
cmake-utils_src_compile
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
9 years ago
|
if use ipoe; then
|
||
|
local MODULE_NAMES="ipoe(accel-ppp:${BUILD_DIR}/drivers/ipoe/driver)"
|
||
|
linux-mod_src_install
|
||
|
fi
|
||
|
|
||
9 years ago
|
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
|
||
|
}
|