Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/wmctrl/
Date: Wed, 04 Jan 2017 23:27:11
Message-Id: 1483572280.f78a0385d0bded071201e19a89f8d0c4a4ba1d16.monsieurp@gentoo
1 commit: f78a0385d0bded071201e19a89f8d0c4a4ba1d16
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 4 22:23:41 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 4 23:24:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f78a0385
7
8 x11-misc/wmctrl: EAPI 6 bump.
9
10 Package-Manager: portage-2.3.0
11
12 x11-misc/wmctrl/wmctrl-1.07-r2.ebuild | 34 ++++++++++++++++++++++++++++++++++
13 1 file changed, 34 insertions(+)
14
15 diff --git a/x11-misc/wmctrl/wmctrl-1.07-r2.ebuild b/x11-misc/wmctrl/wmctrl-1.07-r2.ebuild
16 new file mode 100644
17 index 00000000..c9f0e25
18 --- /dev/null
19 +++ b/x11-misc/wmctrl/wmctrl-1.07-r2.ebuild
20 @@ -0,0 +1,34 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="command line tool to interact with an EWMH/NetWM compatible X Window Manager"
28 +HOMEPAGE="http://tomas.styblo.name/wmctrl/"
29 +SRC_URI="http://tomas.styblo.name/${PN}/dist/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux"
34 +IUSE=""
35 +
36 +RDEPEND="
37 + >=dev-libs/glib-2:2
38 + x11-libs/libX11
39 + x11-libs/libXt
40 + x11-libs/libXmu"
41 +
42 +DEPEND="
43 + ${RDEPEND}
44 + virtual/pkgconfig
45 + x11-proto/xproto"
46 +
47 +PATCHES=( "${FILESDIR}/amd64-Xlib.patch" )
48 +
49 +DOCS=( AUTHORS ChangeLog NEWS README )
50 +
51 +src_install () {
52 + emake DESTDIR="${D}" install
53 + einstalldocs
54 +}