Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xauth/
Date: Sun, 29 Jan 2017 21:26:38
Message-Id: 1485725179.ab83b5423e93976db30c31e680691a95934cde9a.mattst88@gentoo
1 commit: ab83b5423e93976db30c31e680691a95934cde9a
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 20:32:15 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 21:26:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab83b542
7
8 x11-apps/xauth: Add live ebuild.
9
10 x11-apps/xauth/xauth-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++
11 1 file changed, 34 insertions(+)
12
13 diff --git a/x11-apps/xauth/xauth-9999.ebuild b/x11-apps/xauth/xauth-9999.ebuild
14 new file mode 100644
15 index 00000000..4ec4718
16 --- /dev/null
17 +++ b/x11-apps/xauth/xauth-9999.ebuild
18 @@ -0,0 +1,34 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=5
24 +
25 +inherit autotools-utils xorg-2
26 +
27 +DESCRIPTION="X authority file utility"
28 +
29 +KEYWORDS=""
30 +IUSE="ipv6"
31 +
32 +RDEPEND="x11-libs/libX11
33 + x11-libs/libXau
34 + x11-libs/libXext
35 + x11-libs/libXmu"
36 +DEPEND="${RDEPEND}"
37 +
38 +# Tests dependend on dev-util/cmdtest awaiting keywording, bug #511202.
39 +# test? ( dev-util/cmdtest )
40 +
41 +src_configure() {
42 + XORG_CONFIGURE_OPTIONS=(
43 + $(use_enable ipv6)
44 + )
45 + xorg-2_src_configure
46 +}
47 +
48 +src_test() {
49 + # Address sandbox failure, bug #527574
50 + addwrite /proc/self/comm
51 + autotools-utils_src_test
52 +}