diff options
Diffstat (limited to 'x11-misc/rofi/rofi-0.15.7.ebuild')
-rw-r--r-- | x11-misc/rofi/rofi-0.15.7.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/x11-misc/rofi/rofi-0.15.7.ebuild b/x11-misc/rofi/rofi-0.15.7.ebuild new file mode 100644 index 000000000000..6de1ac970986 --- /dev/null +++ b/x11-misc/rofi/rofi-0.15.7.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 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="i3" + +RDEPEND=" + dev-libs/glib:2 + media-libs/freetype + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXinerama + x11-libs/pango[X] + i3? ( x11-wm/i3 ) +" +DEPEND=" + ${RDEPEND} + x11-proto/xineramaproto + x11-proto/xproto + virtual/pkgconfig +" + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-0.15.4-Werror.patch + + eautoreconf +} + +src_configure() { + tc-export CC + econf $(usex i3 '' --disable-i3support) +} + +src_test() { + emake test +} |