Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/tevent/
Date: Thu, 01 Mar 2018 13:33:40
Message-Id: 1519911209.393f79544ba53364614e1ba41295180ea3412eef.mgorny@gentoo
1 commit: 393f79544ba53364614e1ba41295180ea3412eef
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 13:31:08 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 13:33:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393f7954
7
8 sys-libs/tevent: Make glibc dep conditional to elibc_glibc
9
10 sys-libs/tevent/tevent-0.9.36.ebuild | 12 +++++++-----
11 1 file changed, 7 insertions(+), 5 deletions(-)
12
13 diff --git a/sys-libs/tevent/tevent-0.9.36.ebuild b/sys-libs/tevent/tevent-0.9.36.ebuild
14 index 05ed9a03d3d..f646f6bbe18 100644
15 --- a/sys-libs/tevent/tevent-0.9.36.ebuild
16 +++ b/sys-libs/tevent/tevent-0.9.36.ebuild
17 @@ -14,17 +14,19 @@ SRC_URI="https://www.samba.org/ftp/tevent/${P}.tar.gz"
18 LICENSE="GPL-3"
19 SLOT="0"
20 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
21 -IUSE="python"
22 +IUSE="elibc_glibc python"
23
24 RDEPEND=">=sys-libs/talloc-2.1.11[${MULTILIB_USEDEP}]
25 python? ( ${PYTHON_DEPS} )"
26
27 DEPEND="${RDEPEND}
28 - net-libs/libtirpc[${MULTILIB_USEDEP}]
29 >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
30 - || (
31 - net-libs/rpcsvc-proto
32 - <sys-libs/glibc-2.26[rpc(+)]
33 + elibc_glibc? (
34 + net-libs/libtirpc[${MULTILIB_USEDEP}]
35 + || (
36 + net-libs/rpcsvc-proto
37 + <sys-libs/glibc-2.26[rpc(+)]
38 + )
39 )
40 ${PYTHON_DEPS}
41 "