2020-05-08 20:14:20 +02:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-06-16 09:01:38 +02:00
|
|
|
EAPI="5"
|
2020-05-08 20:14:20 +02:00
|
|
|
|
2020-06-16 09:01:38 +02:00
|
|
|
inherit autotools-utils
|
2020-05-08 20:14:20 +02:00
|
|
|
|
|
|
|
DESCRIPTION="FreeRADIUS Client framework"
|
2020-06-16 09:01:38 +02:00
|
|
|
HOMEPAGE="http://wiki.freeradius.org/Radiusclient"
|
2020-05-08 20:14:20 +02:00
|
|
|
SRC_URI="ftp://ftp.freeradius.org/pub/freeradius/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
|
|
|
|
|
|
|
|
IUSE="scp shadow static-libs"
|
|
|
|
|
2020-06-16 09:01:38 +02:00
|
|
|
DEPEND="!net-dialup/radiusclient
|
|
|
|
!net-dialup/radiusclient-ng"
|
2020-05-08 20:14:20 +02:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
2020-06-16 09:01:38 +02:00
|
|
|
DOCS=( BUGS doc/ChangeLog doc/login.example doc/release-method.txt )
|
2020-05-08 20:14:20 +02:00
|
|
|
|
|
|
|
src_configure() {
|
2020-06-16 09:01:38 +02:00
|
|
|
local myeconfargs=(
|
|
|
|
$(use_enable scp)
|
|
|
|
$(use_enable shadow)
|
2020-05-08 20:14:20 +02:00
|
|
|
--with-secure-path
|
2020-06-16 09:01:38 +02:00
|
|
|
)
|
|
|
|
autotools-utils_src_configure
|
2020-05-08 20:14:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2020-06-16 09:01:38 +02:00
|
|
|
autotools-utils_src_install
|
2020-05-08 20:20:52 +02:00
|
|
|
dodoc README*
|
2020-06-16 09:01:38 +02:00
|
|
|
newdoc doc/README README.login.example
|
|
|
|
dohtml doc/instop.html
|
2020-05-08 20:14:20 +02:00
|
|
|
}
|