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.
51 lines
1.1 KiB
51 lines
1.1 KiB
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils pam toolchain-funcs
|
|
|
|
DESCRIPTION="PAM RADIUS authentication module"
|
|
HOMEPAGE="http://www.freeradius.org/pam_radius_auth/"
|
|
SRC_URI="ftp://ftp.freeradius.org/pub/radius/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="virtual/pam"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-gentoo.patch
|
|
}
|
|
|
|
doecho() {
|
|
echo "$@"
|
|
"$@" || die
|
|
}
|
|
|
|
src_compile() {
|
|
# using the Makefile would require patching it to work properly, so
|
|
# rather simply re-create it here.
|
|
|
|
pammod_hide_symbols
|
|
doecho $(tc-getCC) ${CFLAGS} -shared -fPIC ${LDFLAGS} *.c -lpam -o pam_radius_auth.so
|
|
}
|
|
|
|
src_install() {
|
|
dopammod pam_radius_auth.so
|
|
|
|
insopts -m600
|
|
insinto /etc/raddb
|
|
doins "${FILESDIR}"/server
|
|
|
|
dodoc README Changelog USAGE
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "Before you can use this you'll have to add RADIUS servers to /etc/raddb/server."
|
|
elog "The usage of pam_radius_auth module is explained in /usr/share/doc/${PF}/USAGE."
|
|
}
|