dev-libs/keybinder-0.3.1-r201: drop IUSE=lua support

An ancient version only kept in the tree because it's a dependency
of lxde-base/lxpanel, newer versions do not bundle Lua bindings any
more. No point in migrating this to Lua eclasses.

Committed with maintainer's permission obtained on IRC.

Closes: https://bugs.gentoo.org/752585
Signed-off-by: Marek Szuba <marecki@gentoo.org>
This commit is contained in:
Marek Szuba
2020-12-21 16:34:49 +00:00
parent b0e7332cce
commit 0b0cd8a206

View File

@@ -10,14 +10,13 @@ SRC_URI="https://github.com/kupferlauncher/keybinder/releases/download/v${PV}/${
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86"
IUSE="+introspection lua"
IUSE="+introspection"
RDEPEND=">=x11-libs/gtk+-2.20:2
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
introspection? ( dev-libs/gobject-introspection )
lua? ( >=dev-lang/lua-5.1:0= )"
introspection? ( dev-libs/gobject-introspection )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
@@ -25,9 +24,8 @@ src_configure() {
local myconf=(
$(use_enable introspection)
--disable-python
--disable-lua
)
# upstream failed at AC_ARG_ENABLE
use lua || myconf+=( --disable-lua )
econf "${myconf[@]}"
}