From b7c1b5166f59a4753cb769555548afb63426d25e Mon Sep 17 00:00:00 2001 From: Eduardo Santiago Date: Mon, 1 Aug 2022 07:47:32 -0600 Subject: [PATCH] xosd ebuild: use explicit --disable-xinerama Even though the default is to configure with xinerama, the explicit --enable-xinerama option does not work (logic error in configure). Work around it by passing an explicit --disable option when USE=-xinerama. Signed-off-by: Eduardo Santiago --- xosd-2.2.14_p2_p1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xosd-2.2.14_p2_p1.ebuild b/xosd-2.2.14_p2_p1.ebuild index 6daf5fe..af41bbe 100644 --- a/xosd-2.2.14_p2_p1.ebuild +++ b/xosd-2.2.14_p2_p1.ebuild @@ -51,7 +51,11 @@ src_prepare() { } src_configure() { + local disable_xinerama + + use xinerama || disable_xinerama="--disable-xinerama" + econf \ - $(use_enable xinerama) \ + $disable_xinerama \ $(use_enable static-libs static) } -- 2.35.1