diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-02-23 09:30:24 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-02-23 09:32:13 +0000 |
commit | 744e338ebea45f79dceaa066d6f1a8f8861030dd (patch) | |
tree | 8862a8c91f3c99b4638e08b21237b6587247cc76 /x11-wm/awesome/awesome-9999.ebuild | |
parent | net-im/signal-desktop-bin: remove bundled libGLESv2.so, use system one (diff) | |
download | gentoo-744e338ebea45f79dceaa066d6f1a8f8861030dd.tar.gz gentoo-744e338ebea45f79dceaa066d6f1a8f8861030dd.tar.bz2 gentoo-744e338ebea45f79dceaa066d6f1a8f8861030dd.zip |
x11-wm/awesome-9999: override return values of 'usex dbus' again
...this time with a comment so that it is clear that this is intentional
rather than sloppy ebuild writing.
Closes: https://bugs.gentoo.org/771018
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'x11-wm/awesome/awesome-9999.ebuild')
-rw-r--r-- | x11-wm/awesome/awesome-9999.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11-wm/awesome/awesome-9999.ebuild b/x11-wm/awesome/awesome-9999.ebuild index 1c3583824abf..e8a8a5130ca6 100644 --- a/x11-wm/awesome/awesome-9999.ebuild +++ b/x11-wm/awesome/awesome-9999.ebuild @@ -76,11 +76,14 @@ PATCHES=( ) src_configure() { - # Compression of manpages is handled by portage + # Compression of manpages is handled by portage. + # WITH_DBUS uses AutoOption.cmake which currently does not + # understand yes/no (or indeed any values other than ON, OFF + # or AUTO). local mycmakeargs=( -DSYSCONFDIR="${EPREFIX}"/etc -DCOMPRESS_MANPAGES=OFF - -DWITH_DBUS=$(usex dbus) + -DWITH_DBUS=$(usex dbus ON OFF) -DGENERATE_DOC=$(usex doc) -DAWESOME_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF} -DLUA_INCLUDE_DIR="$(lua_get_include_dir)" |