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-misc/xcompmgr/
Date: Sat, 28 Jul 2018 00:38:54
Message-Id: 1532738308.1f298106851405e8b92197e703a360f01cbff918.mattst88@gentoo
1 commit: 1f298106851405e8b92197e703a360f01cbff918
2 Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
3 AuthorDate: Fri Jul 27 23:45:19 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 00:38:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f298106
7
8 x11-misc/xcompmgr: port to EAPI 7
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 x11-misc/xcompmgr/xcompmgr-1.1.7-r1.ebuild | 49 ++++++++++++++++++++++++++++++
13 1 file changed, 49 insertions(+)
14
15 diff --git a/x11-misc/xcompmgr/xcompmgr-1.1.7-r1.ebuild b/x11-misc/xcompmgr/xcompmgr-1.1.7-r1.ebuild
16 new file mode 100644
17 index 00000000000..c271eab9415
18 --- /dev/null
19 +++ b/x11-misc/xcompmgr/xcompmgr-1.1.7-r1.ebuild
20 @@ -0,0 +1,49 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +DESCRIPTION="X Compositing manager"
27 +HOMEPAGE="https://freedesktop.org/wiki/Software/xapps"
28 +
29 +if [[ ${PV} == 9999 ]]; then
30 + EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/app/glxcompmgr.git"
31 + inherit autotools git-r3
32 + # x11-misc-util/macros only required on live ebuilds
33 + LIVE_DEPEND=">=x11-misc/util-macros-1.18"
34 +else
35 + SRC_URI="mirror://xorg/app/${P}.tar.bz2"
36 + KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +fi
38 +
39 +LICENSE="BSD"
40 +SLOT="0"
41 +IUSE=""
42 +
43 +BDEPEND="
44 + virtual/pkgconfig
45 +"
46 +RDEPEND="
47 + x11-libs/libXrender
48 + x11-libs/libXdamage
49 + x11-libs/libXfixes
50 + x11-libs/libXcomposite
51 + x11-libs/libXext
52 +"
53 +DEPEND="
54 + ${LIVE_DEPEND}
55 + ${RDEPEND}
56 +"
57 +
58 +src_prepare() {
59 + default
60 + [[ ${PV} == 9999 ]] && eautoreconf
61 +}
62 +
63 +src_configure() {
64 + local econfargs=(
65 + --disable-selective-werror
66 + )
67 +
68 + econf "${econfargs[@]}"
69 +}