forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Jeroen Roovers
committed
Dec 27, 2016
1 parent
84a2cab
commit 4a75bf0
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST rofi-1.2.0.tar.xz 188760 SHA256 0c2b504bdd17e41ee61828671cd85698c38cff3128e1ae44841466d86f07bd77 SHA512 6afbec388fb3d0cb83011f2790f5f5a7e2d63b0436d183722b59c39852b5bc2896a46a32445decc6c36bd25c0e33a3658e31b1a307d72950e87f4838102b9838 WHIRLPOOL da483f36e92fc978f335547ec540227be3561e309bff573ab26c36829e18737e7152453eaef9f9848c1737d72980ad7c09b2411c4846f1e6dd97b378939c2480 | ||
DIST rofi-1.3.0.tar.xz 210936 SHA256 164b094d03575cdbf4c0740e6e29fe54e33f62d180f11357d12a3f3f5254c5a8 SHA512 65d31f3df09d1826a816d652b372e21f278b324195d7df2304aa7d5bb6b964ac2ec6a09df9b3deaa93ee83d76a699188460c0e96f02822251567526f24e46587 WHIRLPOOL a74eee3d6549736c7836890115d4f753d92dc67c12a6354249b0b8ef724f3bce2d373fe4f7d58d4138c653e21e34d5854c6a3449cdf739dbfe282b6a5924abee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
inherit autotools eutils toolchain-funcs | ||
|
||
DESCRIPTION="A window switcher, run dialog and dmenu replacement" | ||
HOMEPAGE="https://davedavenport.github.io/rofi/" | ||
SRC_URI="https://github.com/DaveDavenport/${PN}/releases/download/${PV}/${P}.tar.xz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="windowmode" | ||
|
||
RDEPEND=" | ||
dev-libs/glib:2 | ||
media-libs/freetype | ||
x11-libs/cairo[xcb] | ||
x11-libs/libX11 | ||
x11-libs/libXft | ||
x11-libs/libXinerama | ||
x11-libs/libxcb | ||
x11-libs/libxkbcommon[X] | ||
x11-libs/pango[X] | ||
x11-libs/startup-notification | ||
x11-libs/xcb-util | ||
x11-libs/xcb-util-wm | ||
x11-libs/xcb-util-xrm | ||
" | ||
DEPEND=" | ||
${RDEPEND} | ||
virtual/pkgconfig | ||
x11-proto/xineramaproto | ||
x11-proto/xproto | ||
" | ||
|
||
src_prepare() { | ||
epatch \ | ||
"${FILESDIR}"/${PN}-0.15.12-Werror.patch | ||
|
||
eautoreconf | ||
} | ||
|
||
src_configure() { | ||
tc-export CC | ||
econf \ | ||
$(use_enable windowmode) | ||
} | ||
|
||
src_test() { | ||
emake test | ||
} |