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-wm/page/
Date: Fri, 23 Jun 2017 16:33:28
Message-Id: 1498235599.f4794aec258635ed097502a40f52cc93f3e05be7.monsieurp@gentoo
1 commit: f4794aec258635ed097502a40f52cc93f3e05be7
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 23 16:32:13 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 23 16:33:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4794aec
7
8 x11-wm/page: add missing requirement.
9
10 Gentoo-Bug: https://bugs.gentoo.org/620884
11
12 Package-Manager: Portage-2.3.5, Repoman-2.3.1
13
14 x11-wm/page/page-1.9.8-r1.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++
15 1 file changed, 49 insertions(+)
16
17 diff --git a/x11-wm/page/page-1.9.8-r1.ebuild b/x11-wm/page/page-1.9.8-r1.ebuild
18 new file mode 100644
19 index 00000000000..05d2c406a4d
20 --- /dev/null
21 +++ b/x11-wm/page/page-1.9.8-r1.ebuild
22 @@ -0,0 +1,49 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +EAPI=5
26 +
27 +DESCRIPTION="A mouse friendly tiling window manager"
28 +HOMEPAGE="http://www.hzog.net/index.php/Main_Page"
29 +SRC_URI="http://www.hzog.net/pub/${P}.tar.gz"
30 +
31 +LICENSE="GPL-3"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +
35 +RDEPEND="
36 + x11-proto/xcb-proto
37 + x11-libs/libxcb
38 + x11-libs/xcb-util
39 + x11-libs/libXfixes
40 + x11-libs/libXdamage
41 + x11-proto/damageproto
42 + x11-proto/randrproto
43 + x11-libs/libXrandr
44 + x11-proto/xproto
45 + x11-proto/fixesproto
46 + x11-proto/compositeproto
47 + x11-libs/libXcomposite
48 + x11-proto/renderproto
49 + x11-libs/libXrender
50 + x11-libs/libXext
51 + x11-proto/xextproto
52 + x11-libs/cairo[X,xcb]
53 + x11-libs/pango
54 + dev-libs/glib:2"
55 +
56 +DEPEND="${RDEPEND}"
57 +
58 +src_install() {
59 + default
60 +
61 + # Solves file collision with dev-tcltk/tcllib, bug #574074
62 + ebegin "Changing references from 'page' to 'pagewm'"
63 + mv "${D}"usr/bin/page "${D}"usr/bin/pagewm || die "Could not rename binary!"
64 + sed -i -e "s:/usr/bin/page:/usr/bin/pagewm:" "${D}"usr/share/applications/page.desktop || die "Could not change .desktop file!"
65 + eend
66 +}
67 +
68 +pkg_postinst() {
69 + elog "page can now be launched using \"pagewm\". To find out more about this functionality,"
70 + elog "see the following bug report: https://bugs.gentoo.org/574074."
71 +}