Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi/
Date: Tue, 27 Dec 2016 10:17:07
Message-Id: 1482833822.4a75bf0d12c8636828f3df7c9fa6bcc5abbe62b9.jer@gentoo
1 commit: 4a75bf0d12c8636828f3df7c9fa6bcc5abbe62b9
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 27 10:16:37 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 27 10:17:02 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a75bf0d
7
8 x11-misc/rofi: Version bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 x11-misc/rofi/Manifest | 1 +
13 x11-misc/rofi/rofi-1.3.0.ebuild | 54 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/x11-misc/rofi/Manifest b/x11-misc/rofi/Manifest
17 index 948ba3d..752adfb 100644
18 --- a/x11-misc/rofi/Manifest
19 +++ b/x11-misc/rofi/Manifest
20 @@ -1 +1,2 @@
21 DIST rofi-1.2.0.tar.xz 188760 SHA256 0c2b504bdd17e41ee61828671cd85698c38cff3128e1ae44841466d86f07bd77 SHA512 6afbec388fb3d0cb83011f2790f5f5a7e2d63b0436d183722b59c39852b5bc2896a46a32445decc6c36bd25c0e33a3658e31b1a307d72950e87f4838102b9838 WHIRLPOOL da483f36e92fc978f335547ec540227be3561e309bff573ab26c36829e18737e7152453eaef9f9848c1737d72980ad7c09b2411c4846f1e6dd97b378939c2480
22 +DIST rofi-1.3.0.tar.xz 210936 SHA256 164b094d03575cdbf4c0740e6e29fe54e33f62d180f11357d12a3f3f5254c5a8 SHA512 65d31f3df09d1826a816d652b372e21f278b324195d7df2304aa7d5bb6b964ac2ec6a09df9b3deaa93ee83d76a699188460c0e96f02822251567526f24e46587 WHIRLPOOL a74eee3d6549736c7836890115d4f753d92dc67c12a6354249b0b8ef724f3bce2d373fe4f7d58d4138c653e21e34d5854c6a3449cdf739dbfe282b6a5924abee
23
24 diff --git a/x11-misc/rofi/rofi-1.3.0.ebuild b/x11-misc/rofi/rofi-1.3.0.ebuild
25 new file mode 100644
26 index 00000000..7095c50
27 --- /dev/null
28 +++ b/x11-misc/rofi/rofi-1.3.0.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit autotools eutils toolchain-funcs
36 +
37 +DESCRIPTION="A window switcher, run dialog and dmenu replacement"
38 +HOMEPAGE="https://davedavenport.github.io/rofi/"
39 +SRC_URI="https://github.com/DaveDavenport/${PN}/releases/download/${PV}/${P}.tar.xz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="windowmode"
45 +
46 +RDEPEND="
47 + dev-libs/glib:2
48 + media-libs/freetype
49 + x11-libs/cairo[xcb]
50 + x11-libs/libX11
51 + x11-libs/libXft
52 + x11-libs/libXinerama
53 + x11-libs/libxcb
54 + x11-libs/libxkbcommon[X]
55 + x11-libs/pango[X]
56 + x11-libs/startup-notification
57 + x11-libs/xcb-util
58 + x11-libs/xcb-util-wm
59 + x11-libs/xcb-util-xrm
60 +"
61 +DEPEND="
62 + ${RDEPEND}
63 + virtual/pkgconfig
64 + x11-proto/xineramaproto
65 + x11-proto/xproto
66 +"
67 +
68 +src_prepare() {
69 + epatch \
70 + "${FILESDIR}"/${PN}-0.15.12-Werror.patch
71 +
72 + eautoreconf
73 +}
74 +
75 +src_configure() {
76 + tc-export CC
77 + econf \
78 + $(use_enable windowmode)
79 +}
80 +
81 +src_test() {
82 + emake test
83 +}