summaryrefslogtreecommitdiff
path: root/dev-libs/keybinder
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [master] <gitlab@liguros.net>2021-01-17 23:35:33 +0000
committerLiguros - Gitlab CI/CD [master] <gitlab@liguros.net>2021-01-17 23:35:33 +0000
commit8e8120eabdd28020aa69c7a60505cce2edd20adc (patch)
tree061bf0acdc672720e0bc3a2d575f67d25aedb2d8 /dev-libs/keybinder
parentc16790af2c9b4cbc38e565d4311252193ff85484 (diff)
downloadbaldeagleos-repo-21.1.2.tar.gz
baldeagleos-repo-21.1.2.tar.xz
baldeagleos-repo-21.1.2.zip
Updating liguros repo21.1.2
Diffstat (limited to 'dev-libs/keybinder')
-rw-r--r--dev-libs/keybinder/keybinder-0.3.1-r201.ebuild8
-rw-r--r--dev-libs/keybinder/keybinder-0.3.2-r300.ebuild17
2 files changed, 11 insertions, 14 deletions
diff --git a/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild b/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild
index 02e68ac665c5..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 )"
+ 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[@]}"
}
diff --git a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
index bf14d929fcf1..dae197934270 100644
--- a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
+++ b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
@@ -1,12 +1,13 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
MY_P=${PN}-3.0-${PV}
DESCRIPTION="A library for registering global keyboard shortcuts"
HOMEPAGE="https://github.com/kupferlauncher/keybinder"
SRC_URI="https://github.com/kupferlauncher/keybinder/releases/download/${PN}-3.0-v${PV}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
LICENSE="MIT"
SLOT="3"
@@ -16,12 +17,10 @@ IUSE="+introspection"
RDEPEND="x11-libs/gtk+:3[X]
x11-libs/libX11
x11-libs/libXext
- x11-libs/libXrender
+ x11-libs/libXrender"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
introspection? ( dev-libs/gobject-introspection )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
src_configure() {
local myconf=(
@@ -39,7 +38,7 @@ src_install() {
pkg_preinst() {
# remove old symlink as otherwise the files will be installed
# in the wrong directory
- if [[ -h ${EROOT%/}/usr/share/gtk-doc/html/keybinder-3.0 ]]; then
- rm "${EROOT%/}/usr/share/gtk-doc/html/keybinder-3.0" || die
+ if [[ -h ${EROOT}/usr/share/gtk-doc/html/keybinder-3.0 ]]; then
+ rm "${EROOT}/usr/share/gtk-doc/html/keybinder-3.0" || die
fi
}