Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/rofi: rofi-0.15.4.ebuild ChangeLog rofi-0.14.12.ebuild
Date: Thu, 30 Apr 2015 16:04:04
Message-Id: 20150430160353.D1D6E9AA@oystercatcher.gentoo.org
1 jer 15/04/30 16:03:51
2
3 Modified: ChangeLog
4 Added: rofi-0.15.4.ebuild
5 Removed: rofi-0.14.12.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.6 x11-misc/rofi/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 20 Apr 2015 04:22:28 -0000 1.5
25 +++ ChangeLog 30 Apr 2015 16:03:51 -0000 1.6
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/rofi
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v 1.5 2015/04/20 04:22:28 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v 1.6 2015/04/30 16:03:51 jer Exp $
31 +
32 +*rofi-0.15.4 (30 Apr 2015)
33 +
34 + 30 Apr 2015; Jeroen Roovers <jer@g.o> -rofi-0.14.12.ebuild,
35 + +rofi-0.15.4.ebuild, +files/rofi-0.15.4-Werror.patch:
36 + Version bump.
37
38 *rofi-0.15.2 (20 Apr 2015)
39
40
41
42
43 1.1 x11-misc/rofi/rofi-0.15.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/rofi-0.15.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/rofi-0.15.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: rofi-0.15.4.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-misc/rofi/rofi-0.15.4.ebuild,v 1.1 2015/04/30 16:03:51 jer Exp $
53
54 EAPI=5
55 inherit autotools eutils toolchain-funcs
56
57 DESCRIPTION="A window switcher, run dialog and dmenu replacement"
58 HOMEPAGE="https://davedavenport.github.io/rofi/"
59 SRC_URI="https://github.com/DaveDavenport/${PN}/releases/download/${PV}/${P}.tar.xz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="i3"
65
66 RDEPEND="
67 dev-libs/glib:2
68 media-libs/freetype
69 x11-libs/libX11
70 x11-libs/libXft
71 x11-libs/libXinerama
72 x11-libs/pango[X]
73 i3? ( x11-wm/i3 )
74 "
75 DEPEND="
76 ${RDEPEND}
77 x11-proto/xineramaproto
78 x11-proto/xproto
79 virtual/pkgconfig
80 "
81
82 src_prepare() {
83 epatch \
84 "${FILESDIR}"/${PN}-0.15.4-Werror.patch
85
86 eautoreconf
87 }
88
89 src_configure() {
90 tc-export CC
91 econf $(usex i3 '' --disable-i3support)
92 }
93
94 src_test() {
95 emake test
96 }