blob: a442264183003b6d9f86f3e50217178d28d62263 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
MY_PV="r${PV}"
DESCRIPTION="A fast desktop replacement for i3-dmenu-desktop"
HOMEPAGE="https://github.com/enkore/j4-dmenu-desktop"
SRC_URI="https://github.com/enkore/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+dmenu test"
RESTRICT="!test? ( test )"
BDEPEND="test? ( dev-cpp/catch:0 )"
DEPEND="
dev-libs/libfmt:=
dev-libs/spdlog:=
"
RDEPEND="
${DEPEND}
dmenu? ( x11-misc/dmenu )
"
src_prepare() {
cmake_src_prepare
# Respect users CFLAGS
sed -i -e "s/-pedantic -O2//" CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
-DNO_DOWNLOAD="ON"
-DWITH_GIT_CATCH="no"
-DWITH_TESTS="$(usex test)"
)
cmake_src_configure
}
src_install() {
cmake_src_install
doman j4-dmenu-desktop.1
}
pkg_postinst() {
if ! use dmenu; then
elog "As you have disabled the 'dmenu' use flag,"
elog "x11-misc/dmenu won't be installed by default."
elog ""
elog "Since x11-misc/j4-dmenu-desktop uses x11-misc/dmenu as default,"
elog "you must configure your own replacement with --dmenu=<command>,"
elog "as otherwise it won't work."
fi
}
|