summaryrefslogtreecommitdiff
blob: 1bfa5ce8fae13c86d7ac041614b51d9c36004e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit git-r3 cmake-utils

DESCRIPTION="dmenu clone for wayland"
HOMEPAGE="https://github.com/Cloudef/bemenu"
EGIT_REPO_URI="https://github.com/Cloudef/bemenu.git"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="doc"

DEPEND="
	x11-libs/cairo
	x11-libs/pango
	dev-libs/wayland
	x11-libs/libxcb
	dev-libs/wayland-protocols
	sys-libs/ncurses:0
	x11-libs/libXext
	x11-libs/libX11"
RDEPEND="${DEPEND}"
BDEPEND="doc? ( app-doc/doxygen )"

src_configure() {
	local mycmakeargs=(-DCURSES_LIBRARY=/usr/$(get_libdir)/libncursesw.so)
	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install
}