Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/i3: i3-4.10.3.ebuild ChangeLog i3-4.10.2.ebuild
Date: Thu, 30 Jul 2015 21:02:37
Message-Id: 20150730210230.9C48E10F@oystercatcher.gentoo.org
1 xarthisius 15/07/30 21:02:30
2
3 Modified: ChangeLog
4 Added: i3-4.10.3.ebuild
5 Removed: i3-4.10.2.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
10
11 Revision Changes Path
12 1.68 x11-wm/i3/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/ChangeLog?rev=1.68&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/ChangeLog?rev=1.68&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/ChangeLog?r1=1.67&r2=1.68
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v
21 retrieving revision 1.67
22 retrieving revision 1.68
23 diff -u -r1.67 -r1.68
24 --- ChangeLog 20 Apr 2015 16:06:54 -0000 1.67
25 +++ ChangeLog 30 Jul 2015 21:02:30 -0000 1.68
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-wm/i3
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.67 2015/04/20 16:06:54 xarthisius Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.68 2015/07/30 21:02:30 xarthisius Exp $
31 +
32 +*i3-4.10.3 (30 Jul 2015)
33 +
34 + 30 Jul 2015; Kacper Kowalik <xarthisius@g.o> +i3-4.10.3.ebuild,
35 + -i3-4.10.2.ebuild:
36 + Version bump, drop old
37
38 *i3-4.10.2 (20 Apr 2015)
39
40
41
42
43 1.1 x11-wm/i3/i3-4.10.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/i3-4.10.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/i3/i3-4.10.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: i3-4.10.3.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/i3-4.10.3.ebuild,v 1.1 2015/07/30 21:02:30 xarthisius Exp $
53
54 EAPI=5
55
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="An improved dynamic tiling window manager"
59 HOMEPAGE="http://i3wm.org/"
60 SRC_URI="http://i3wm.org/downloads/${P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~x86"
65 IUSE="+pango"
66
67 CDEPEND="dev-libs/libev
68 dev-libs/libpcre
69 >=dev-libs/yajl-2.0.3
70 x11-libs/libxcb[xkb]
71 x11-libs/libxkbcommon[X]
72 x11-libs/startup-notification
73 x11-libs/xcb-util
74 x11-libs/xcb-util-cursor
75 x11-libs/xcb-util-keysyms
76 x11-libs/xcb-util-wm
77 pango? (
78 >=x11-libs/pango-1.30.0[X]
79 >=x11-libs/cairo-1.12.2[X,xcb]
80 )"
81 DEPEND="${CDEPEND}
82 virtual/pkgconfig"
83 RDEPEND="${CDEPEND}
84 dev-lang/perl
85 dev-perl/AnyEvent-I3
86 dev-perl/JSON-XS"
87
88 DOCS=( RELEASE-NOTES-${PV} )
89
90 src_prepare() {
91 if ! use pango; then
92 sed -i common.mk -e '/PANGO/d' || die
93 fi
94
95 cat <<- EOF > "${T}"/i3wm
96 #!/bin/sh
97 exec /usr/bin/i3
98 EOF
99
100 epatch_user #471716
101 }
102
103 src_compile() {
104 emake V=1 CC="$(tc-getCC)" AR="$(tc-getAR)"
105 }
106
107 src_install() {
108 default
109 dohtml -r docs/*
110 doman man/*.1
111 exeinto /etc/X11/Sessions
112 doexe "${T}"/i3wm
113 }
114
115 pkg_postinst() {
116 einfo "There are several packages that you may find useful with ${PN} and"
117 einfo "their usage is suggested by the upstream maintainers, namely:"
118 einfo " x11-misc/dmenu"
119 einfo " x11-misc/i3status"
120 einfo " x11-misc/i3lock"
121 einfo "Please refer to their description for additional info."
122 }