diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-14 23:44:03 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-19 10:13:37 +0200 |
commit | 498f06c8df94d4ed257324ce7cd9e33ca67679d5 (patch) | |
tree | ada619d8bdb04573b5fb39187bb5416de582b743 /sys-libs/pam_wrapper | |
parent | sci-libs/ceres-solver: drop 1.14.0 (diff) | |
download | gentoo-498f06c8df94d4ed257324ce7cd9e33ca67679d5.tar.gz gentoo-498f06c8df94d4ed257324ce7cd9e33ca67679d5.tar.bz2 gentoo-498f06c8df94d4ed257324ce7cd9e33ca67679d5.zip |
sys-libs/pam_wrapper: drop 1.1.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-libs/pam_wrapper')
-rw-r--r-- | sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild b/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild deleted file mode 100644 index 2643b37d037f..000000000000 --- a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -CMAKE_ECLASS=cmake -inherit cmake-multilib python-single-r1 - -DESCRIPTION="A tool to test PAM applications and PAM modules" -HOMEPAGE="https://cwrap.org/pam_wrapper.html" -SRC_URI="https://www.samba.org/ftp/pub/cwrap/${P}.tar.gz - https://ftp.samba.org/pub/cwrap/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - sys-libs/pam:0=[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )" - -multilib_src_configure() { - local libpam="${EPREFIX}" - multilib_is_native_abi || libpam+="/usr" - libpam+="/$(get_libdir)/libpam.so.0" - - local mycmakeargs=( - -DPAM_LIBRARY="${libpam}" - -DUNIT_TESTING=$(usex test) - -DPYTHON2_LIBRARY="/dev/null" # Disabled - -DPYTHON3_INCLUDE_DIR="$(python_get_includedir)" - -DPYTHON3_SITELIB="$(python_get_sitedir)" - ) - cmake_src_configure -} |