Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pam/
Date: Thu, 20 Aug 2020 15:51:30
Message-Id: 1597938686.36a5458a6b5443e55ddbd03dab1bef792a109c98.zlogene@gentoo
1 commit: 36a5458a6b5443e55ddbd03dab1bef792a109c98
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 15:50:44 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 15:51:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a5458a
7
8 sys-libs/pam: Do not install static libraries
9
10 The static-libs use flag installed statically linked
11 pam modules. In our pam stack we only provide dinamycally
12 linked shared objects therefore static modules have no
13 practical use.
14
15 Package-Manager: Portage-2.3.103, Repoman-2.3.23
16 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
17
18 sys-libs/pam/pam-1.4.0_p20200809.ebuild | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
20
21 diff --git a/sys-libs/pam/pam-1.4.0_p20200809.ebuild b/sys-libs/pam/pam-1.4.0_p20200809.ebuild
22 index e0148b3f14b..4fea18d00b1 100644
23 --- a/sys-libs/pam/pam-1.4.0_p20200809.ebuild
24 +++ b/sys-libs/pam/pam-1.4.0_p20200809.ebuild
25 @@ -15,7 +15,7 @@ SRC_URI="https://github.com/linux-pam/linux-pam/archive/${COMMIT_HASH}.tar.gz#/$
26 LICENSE="|| ( BSD GPL-2 )"
27 SLOT="0"
28 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
29 -IUSE="audit berkdb debug nis +pie selinux static-libs"
30 +IUSE="audit berkdb debug nis +pie selinux"
31
32 BDEPEND="
33 dev-libs/libxslt
34 @@ -68,6 +68,7 @@ multilib_src_configure() {
35 --disable-tally2
36 --disable-doc
37 --disable-regenerate-docu
38 + --disable-static
39 --disable-Werror
40 $(use_enable audit)
41 $(use_enable berkdb db)
42 @@ -75,7 +76,6 @@ multilib_src_configure() {
43 $(use_enable nis)
44 $(use_enable pie)
45 $(use_enable selinux)
46 - $(use_enable static-libs static)
47 --enable-isadir='.' #464016
48 )
49 ECONF_SOURCE="${S}" econf "${myconf[@]}"