summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2020-12-21 16:34:49 +0000
committerMarek Szuba <marecki@gentoo.org>2020-12-21 17:05:14 +0000
commit0b0cd8a20656ac3ec9c1797062954fcbf4b97600 (patch)
tree34fe7206507edba6dd9a4a1e365d77381d29432b /dev-libs/keybinder
parentdev-db/redis: migrate to lua-single.eclass (diff)
downloadgentoo-0b0cd8a20656ac3ec9c1797062954fcbf4b97600.tar.gz
gentoo-0b0cd8a20656ac3ec9c1797062954fcbf4b97600.tar.bz2
gentoo-0b0cd8a20656ac3ec9c1797062954fcbf4b97600.zip
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>
Diffstat (limited to 'dev-libs/keybinder')
-rw-r--r--dev-libs/keybinder/keybinder-0.3.1-r201.ebuild8
1 files changed, 3 insertions, 5 deletions
diff --git a/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild b/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild
index e25af14fe258..94ce6fd1890b 100644
--- a/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild
+++ b/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild
@@ -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[@]}"
}