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