summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAisha Tammy <gentoo@aisha.cc>2020-12-08 06:48:45 -0500
committerAaron Bauman <bman@gentoo.org>2020-12-15 21:16:29 -0500
commitb5b7e31d037c51f707d5a48480b73783f072e5fe (patch)
tree7a1d659928df031926818f510ce55845b38c7b47 /gui-wm/hikari
parenteclass/ant-tasks: fixup documentation (diff)
downloadgentoo-b5b7e31d037c51f707d5a48480b73783f072e5fe.tar.gz
gentoo-b5b7e31d037c51f707d5a48480b73783f072e5fe.tar.bz2
gentoo-b5b7e31d037c51f707d5a48480b73783f072e5fe.zip
gui-wm/hikari: fix suid flag usage
was changed from WITH_SUID to WITHOUT_SUID Closes: https://bugs.gentoo.org/758968 Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Aisha Tammy <gentoo@aisha.cc> Closes: https://github.com/gentoo/gentoo/pull/18564 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'gui-wm/hikari')
-rw-r--r--gui-wm/hikari/hikari-2.2.2-r1.ebuild (renamed from gui-wm/hikari/hikari-2.2.2.ebuild)6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui-wm/hikari/hikari-2.2.2.ebuild b/gui-wm/hikari/hikari-2.2.2-r1.ebuild
index 2d87cfd595d1..a9bbaec4c529 100644
--- a/gui-wm/hikari/hikari-2.2.2.ebuild
+++ b/gui-wm/hikari/hikari-2.2.2-r1.ebuild
@@ -45,7 +45,6 @@ pkg_setup() {
}
src_compile() {
-
${MAKE} -j$(makeopts_jobs) VERSION="{PV}" \
CC="$(tc-getCC)" \
CFLAGS_EXTRA="${CFLAGS}" \
@@ -54,13 +53,14 @@ src_compile() {
$(usex gamma -DWITH_GAMMACONTROL "") \
$(usex layershell -DWITH_LAYERSHELL "") \
$(usex screencopy -DWITH_SCREENCOPY "") \
- $(usex suid -DWITH_SUID "") \
$(usex virtual-io -DWITH_VIRTUAL_INPUT "") \
$(usex X -DWITH_XWAYLAND "") \
all || die
}
src_install() {
- ${MAKE} DESTDIR="${D}" PREFIX=/usr ETC_PREFIX=/ install || die
+ ${MAKE} DESTDIR="${D}" PREFIX=/usr ETC_PREFIX=/ \
+ $(usex suid "" -DWITHOUT_SUID) \
+ install || die
doman share/man/man1/hikari.1
}