Gentoo Archives: gentoo-commits

From: Daniel Campbell <zlg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/page/
Date: Thu, 03 Mar 2016 19:37:12
Message-Id: 1457033816.0fe26d576d2b2093942ce6cc4a1b065c24847876.zlg@gentoo
1 commit: 0fe26d576d2b2093942ce6cc4a1b065c24847876
2 Author: Daniel Campbell <zlg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 19:33:56 2016 +0000
4 Commit: Daniel Campbell <zlg <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 19:36:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fe26d57
7
8 x11-wm/page: Revbump, fix file collision
9
10 Gentoo-Bug: 574074
11 Gentoo-Bug-URL: https://bugs.gentoo.org/574074
12
13 Package-Manager: portage-2.2.27
14
15 x11-wm/page/page-1.9.6-r5.ebuild | 50 ++++++++++++++++++++++++++++++++++++++++
16 1 file changed, 50 insertions(+)
17
18 diff --git a/x11-wm/page/page-1.9.6-r5.ebuild b/x11-wm/page/page-1.9.6-r5.ebuild
19 new file mode 100644
20 index 0000000..04c3b75
21 --- /dev/null
22 +++ b/x11-wm/page/page-1.9.6-r5.ebuild
23 @@ -0,0 +1,50 @@
24 +# Copyright 1999-2016 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +# $Id$
27 +
28 +EAPI="5"
29 +
30 +DESCRIPTION="A mouse friendly tiling window manager"
31 +HOMEPAGE="http://www.hzog.net/index.php/Main_Page"
32 +SRC_URI="http://www.hzog.net/pub/${P}.tar.gz"
33 +
34 +LICENSE="GPL-3"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +
38 +RDEPEND="
39 + x11-proto/xcb-proto
40 + x11-libs/libxcb
41 + x11-libs/xcb-util
42 + x11-libs/libXfixes
43 + x11-libs/libXdamage
44 + x11-proto/damageproto
45 + x11-proto/randrproto
46 + x11-libs/libXrandr
47 + x11-proto/xproto
48 + x11-proto/fixesproto
49 + x11-proto/compositeproto
50 + x11-libs/libXcomposite
51 + x11-proto/renderproto
52 + x11-libs/libXrender
53 + x11-libs/libXext
54 + x11-proto/xextproto
55 + x11-libs/cairo[xcb]
56 + x11-libs/pango
57 + dev-libs/glib:2"
58 +
59 +DEPEND="${RDEPEND}"
60 +
61 +src_install() {
62 + default
63 + # Solves file collision with dev-tcltk/tcllib, bug #574074
64 + ebegin "Changing references from 'page' to 'pagewm'"
65 + mv "${D}"usr/bin/page "${D}"usr/bin/pagewm || die "Could not rename binary!"
66 + sed -i -e "s:/usr/bin/page:/usr/bin/pagewm:" "${D}"usr/share/applications/page.desktop || die "Could not change .desktop file!"
67 + eend
68 +}
69 +
70 +pkg_postinst() {
71 + elog "page can now be launched using "pagewm". For information on why, please see"
72 + elog "https://bugs.gentoo.org/574074."
73 +}