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: Sat, 30 Sep 2017 10:51:23
Message-Id: 1506768678.63b0a80b19fa5865c82d575fcb5b004f730db314.jer@gentoo
1 commit: 63b0a80b19fa5865c82d575fcb5b004f730db314
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 30 10:51:00 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 30 10:51:18 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b0a80b
7
8 x11-misc/rofi: Version bump.
9
10 Package-Manager: Portage-2.3.10, Repoman-2.3.3
11
12 x11-misc/rofi/Manifest | 1 +
13 x11-misc/rofi/rofi-1.4.1.ebuild | 53 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/x11-misc/rofi/Manifest b/x11-misc/rofi/Manifest
17 index f6e853dbadd..c68a588a489 100644
18 --- a/x11-misc/rofi/Manifest
19 +++ b/x11-misc/rofi/Manifest
20 @@ -1 +1,2 @@
21 DIST rofi-1.3.1.tar.xz 211732 SHA256 b52cf1170f5c7c38f6399ee44f23ebbd87ac349d6a34f32f5d169966765c87e8 SHA512 a96c53ad268883277c4ff0ee3267ff7fab4d4a93a982019ce19ea82771b65c32d56216d777494853bffd18481400af72ed777f88cce4b26d7d1b8980a997f6c6 WHIRLPOOL 47ca4050853888fda4ae9dc203c3d4a47284780d8d1506b12f4bb14cb947a8a7e96b3674203b518ada6b9bbd0e5718d49a42f89a2ecbdf26b3fdacce9d9fee6f
22 +DIST rofi-1.4.1.tar.xz 337988 SHA256 90fbca9b4b4bc4eaf55a8d5115e880611137faaa44b0d929694cb40ef9face76 SHA512 3db3642819761bcfc99e7e8c6f09dde0c85d34be84541ac376ce09032a5c20aa7d64d6e12c9e21bfbee7d2db2611d24a12539548b662df6fb061d91cca1eb808 WHIRLPOOL 09bbb4d2fe1d9b046b7684636f296fcbf4c77c4ffc3bb04c54d949886b29d7c6d9632d6132677a35575671fec7e234df096f15a4d36892e8ffea5924d01335b0
23
24 diff --git a/x11-misc/rofi/rofi-1.4.1.ebuild b/x11-misc/rofi/rofi-1.4.1.ebuild
25 new file mode 100644
26 index 00000000000..5430effcf8c
27 --- /dev/null
28 +++ b/x11-misc/rofi/rofi-1.4.1.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit autotools toolchain-funcs
35 +
36 +DESCRIPTION="A window switcher, run dialog and dmenu replacement"
37 +HOMEPAGE="https://github.com/DaveDavenport/rofi/"
38 +SRC_URI="${HOMEPAGE}/releases/download/${PV}/${P}.tar.xz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="test windowmode"
44 +
45 +RDEPEND="
46 + dev-libs/glib:2
47 + media-libs/freetype
48 + x11-libs/cairo[xcb]
49 + x11-libs/libXft
50 + x11-libs/libXinerama
51 + x11-libs/libxcb
52 + x11-libs/libxkbcommon[X]
53 + x11-libs/pango[X]
54 + x11-libs/startup-notification
55 + x11-libs/xcb-util
56 + x11-libs/xcb-util-wm
57 + x11-libs/xcb-util-xrm
58 +"
59 +DEPEND="
60 + ${RDEPEND}
61 + virtual/pkgconfig
62 + x11-proto/xineramaproto
63 + x11-proto/xproto
64 + test? ( >=dev-libs/check-0.11 )
65 +"
66 +PATCHES=(
67 + "${FILESDIR}"/${PN}-0.15.12-Werror.patch
68 +)
69 +
70 +src_prepare() {
71 + default
72 +
73 + eautoreconf
74 +}
75 +
76 +src_configure() {
77 + tc-export CC
78 +
79 + econf \
80 + $(use_enable test check) \
81 + $(use_enable windowmode)
82 +}