blob: abbee94b7872514170427b8960e298b734fe1624 [file] [log] [blame]
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1 flag-o-matic
MY_PN="PyPAM"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python Bindings for PAM (Pluggable Authentication Modules)"
HOMEPAGE="http://www.pangalactic.org/PyPAM"
SRC_URI="http://www.pangalactic.org/PyPAM/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE=""
DEPEND=">=sys-libs/pam-0.64"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
DOCS=( AUTHORS examples/pamtest.py )
PATCHES=(
# Pull patches from fedora.
"${FILESDIR}/PyPAM-${PV}-dealloc.patch"
"${FILESDIR}/PyPAM-${PV}-nofree.patch"
"${FILESDIR}/PyPAM-${PV}-memory-errors.patch"
"${FILESDIR}/PyPAM-${PV}-return-value.patch"
"${FILESDIR}/PyPAM-python3-support.patch"
# Fix a missing include.
"${FILESDIR}/${P}-stricter.patch"
)
src_compile() {
append-cflags -fno-strict-aliasing
distutils-r1_src_compile
}
python_test() {
"${PYTHON}" tests/PamTest.py
}