diff options
author | David Seifert <soap@gentoo.org> | 2023-01-01 17:18:19 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-01-01 17:18:19 +0100 |
commit | d6968cd79081b372b07b1f095d75f1961096a194 (patch) | |
tree | 77f6ec8f1e772c016a5cd10f994096fe87c1dbac /x11-libs | |
parent | net-libs/telepathy-glib: update EAPI 7 -> 8 (diff) | |
download | gentoo-d6968cd79081b372b07b1f095d75f1961096a194.tar.gz gentoo-d6968cd79081b372b07b1f095d75f1961096a194.tar.bz2 gentoo-d6968cd79081b372b07b1f095d75f1961096a194.zip |
x11-libs/libxklavier: update EAPI 7 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libxklavier/libxklavier-5.4-r1.ebuild (renamed from x11-libs/libxklavier/libxklavier-5.4.ebuild) | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/x11-libs/libxklavier/libxklavier-5.4.ebuild b/x11-libs/libxklavier/libxklavier-5.4-r1.ebuild index b8d6e7e7ab16..b73271b1117a 100644 --- a/x11-libs/libxklavier/libxklavier-5.4.ebuild +++ b/x11-libs/libxklavier/libxklavier-5.4-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit libtool vala xdg-utils +inherit libtool vala DESCRIPTION="A library for the X Keyboard Extension (high-level API)" HOMEPAGE="https://www.freedesktop.org/wiki/Software/LibXklavier" @@ -25,7 +25,6 @@ RDEPEND=" x11-libs/libxkbfile:= >=x11-misc/xkeyboard-config-2.4.1-r3 introspection? ( >=dev-libs/gobject-introspection-1.30:= ) - vala? ( $(vala_depend) ) " DEPEND="${RDEPEND}" BDEPEND=" @@ -33,18 +32,18 @@ BDEPEND=" >=dev-util/gtk-doc-am-1.4 sys-devel/gettext virtual/pkgconfig + vala? ( $(vala_depend) ) " src_prepare() { default elibtoolize - xdg_environment_reset - use vala && vala_src_prepare } src_configure() { + use vala && vala_setup + econf \ - --disable-static \ --disable-gtk-doc \ $(use_enable introspection) \ $(use_enable vala) \ @@ -54,6 +53,5 @@ src_configure() { src_install() { default - dodoc CREDITS find "${ED}" -type f -name '*.la' -delete || die } |