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-libs/libXaw/
Date: Tue, 08 Sep 2020 19:25:12
Message-Id: 1599593100.485886874f7b0599dd47cc7e94463e9b39c0e89e.mattst88@gentoo
1 commit: 485886874f7b0599dd47cc7e94463e9b39c0e89e
2 Author: David Michael <fedora.dm0 <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 4 23:10:17 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 8 19:25:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48588687
7
8 x11-libs/libXaw: EAPI 7
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 x11-libs/libXaw/libXaw-1.0.13-r2.ebuild | 31 +++++++++++++++++++++++++++++++
15 1 file changed, 31 insertions(+)
16
17 diff --git a/x11-libs/libXaw/libXaw-1.0.13-r2.ebuild b/x11-libs/libXaw/libXaw-1.0.13-r2.ebuild
18 new file mode 100644
19 index 00000000000..a7fcece439b
20 --- /dev/null
21 +++ b/x11-libs/libXaw/libXaw-1.0.13-r2.ebuild
22 @@ -0,0 +1,31 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +XORG_DOC=doc
29 +XORG_MULTILIB=yes
30 +inherit xorg-3
31 +
32 +DESCRIPTION="X.Org Xaw library"
33 +
34 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
35 +IUSE="deprecated"
36 +
37 +RDEPEND="x11-base/xorg-proto
38 + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
39 + >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
40 + >=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
41 + >=x11-libs/libXpm-3.5.10-r1[${MULTILIB_USEDEP}]
42 + >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]"
43 +DEPEND="${RDEPEND}"
44 +
45 +src_configure() {
46 + local XORG_CONFIGURE_OPTIONS=(
47 + $(use_enable deprecated xaw6)
48 + $(use_enable doc specs)
49 + $(use_with doc xmlto)
50 + --without-fop
51 + )
52 + xorg-3_src_configure
53 +}