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.
gentoo-overlay/sys-freebsd/freebsd-pam-modules/freebsd-pam-modules-10.3.eb...

49 lines
1.1 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit bsdmk freebsd multilib pam
DESCRIPTION="FreeBSD's PAM authentication modules"
SLOT="0"
IUSE="kerberos nis"
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
fi
EXTRACTONLY="lib/"
RDEPEND=">=sys-auth/openpam-20050201-r1
kerberos? ( dev-libs/openssl:0=
virtual/krb5 )"
DEPEND="${RDEPEND}
=sys-freebsd/freebsd-mk-defs-${RV}*
=sys-freebsd/freebsd-sources-${RV}*"
S=${WORKDIR}/lib/libpam/modules
PATCHES=( "${FILESDIR}"/${PN}-9.0-gentoo.patch )
pkg_setup() {
# Avoid installing pam_ssh as that has its own ebuild.
mymakeopts="${mymakeopts} WITHOUT_OPENSSH= "
use kerberos || mymakeopts="${mymakeopts} WITHOUT_KERBEROS= "
use nis || mymakeopts="${mymakeopts} WITHOUT_NIS= "
}
src_prepare() {
for module in pam_deny pam_passwdqc pam_permit pam_krb5; do
sed -i -e "s:${module}::" "${S}"/modules.inc || die
done
}
src_install() {
mkinstall "LIBDIR=/$(get_libdir)/security" || die "install failed"
dodoc "${FILESDIR}/README.pamd"
}