Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/openpam/
Date: Thu, 23 Nov 2017 22:16:34
Message-Id: 1511475383.cff219fdc918fb056d1a52b1481729880193fcd6.monsieurp@gentoo
1 commit: cff219fdc918fb056d1a52b1481729880193fcd6
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 23 22:09:03 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 23 22:16:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cff219fd
7
8 sys-auth/openpam: mask app-vim/pam-syntax for removal.
9
10 Bug: https://bugs.gentoo.org/578278
11 Package-Manager: Portage-2.3.8, Repoman-2.3.3
12
13 sys-auth/openpam/openpam-20140912-r1.ebuild | 52 +++++++++++++++++++++++++++++
14 1 file changed, 52 insertions(+)
15
16 diff --git a/sys-auth/openpam/openpam-20140912-r1.ebuild b/sys-auth/openpam/openpam-20140912-r1.ebuild
17 new file mode 100644
18 index 00000000000..9a8583315e1
19 --- /dev/null
20 +++ b/sys-auth/openpam/openpam-20140912-r1.ebuild
21 @@ -0,0 +1,52 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI="5"
26 +
27 +AUTOTOOLS_AUTORECONF=1
28 +AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
29 +
30 +inherit multilib autotools-multilib
31 +
32 +DESCRIPTION="Open source PAM library"
33 +HOMEPAGE="http://www.openpam.org/"
34 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="BSD"
37 +SLOT="0"
38 +KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
39 +IUSE="debug vim-syntax"
40 +
41 +RDEPEND="!sys-libs/pam"
42 +DEPEND="
43 + sys-devel/make
44 + dev-lang/perl"
45 +
46 +PDEPEND="
47 + sys-auth/pambase
48 + vim-syntax? ( app-vim/pam-syntax )"
49 +
50 +PATCHES=(
51 + "${FILESDIR}/${PN}-20130907-gentoo.patch"
52 + "${FILESDIR}/${PN}-20130907-nbsd.patch"
53 + "${FILESDIR}/${PN}-20130907-module-dir.patch"
54 +)
55 +
56 +DOCS=( CREDITS HISTORY RELNOTES README )
57 +
58 +src_prepare() {
59 + sed -i -e 's:-Werror::' "${S}/configure.ac"
60 +
61 + autotools-multilib_src_prepare
62 +}
63 +
64 +my_configure() {
65 + local myeconfargs=(
66 + --with-modules-dir=/$(get_libdir)/security
67 + )
68 + autotools-utils_src_configure
69 +}
70 +
71 +src_configure() {
72 + multilib_parallel_foreach_abi my_configure
73 +}