diff options
author | Sam James <sam@gentoo.org> | 2021-03-27 15:14:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-27 15:34:46 +0000 |
commit | ff3d94796cb16ba3cc75f221eefcc9c79b46b52c (patch) | |
tree | 93c2672efe6086dfb0c223b7e3f29c5981adc08f /media-libs | |
parent | games-puzzle/numptyphysics: drop 0.3.4 (diff) | |
download | gentoo-ff3d94796cb16ba3cc75f221eefcc9c79b46b52c.tar.gz gentoo-ff3d94796cb16ba3cc75f221eefcc9c79b46b52c.tar.bz2 gentoo-ff3d94796cb16ba3cc75f221eefcc9c79b46b52c.zip |
media-libs/libtiger: port to EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild index 2e118f17e648..891f13de6bb4 100644 --- a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild +++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild @@ -1,7 +1,8 @@ -# 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 + inherit libtool multilib-minimal DESCRIPTION="A rendering library for Kate streams using Pango and Cairo" @@ -13,12 +14,16 @@ SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~sparc x86" IUSE="doc" -RDEPEND="x11-libs/pango[${MULTILIB_USEDEP}] +RDEPEND=" >=media-libs/libkate-0.2.0[${MULTILIB_USEDEP}] - x11-libs/cairo[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} + x11-libs/pango[${MULTILIB_USEDEP}] + x11-libs/cairo[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig - doc? ( app-doc/doxygen )" + doc? ( app-doc/doxygen ) +" src_prepare() { default @@ -26,7 +31,7 @@ src_prepare() { } multilib_src_configure() { - local ECONF_SOURCE=${S} + local ECONF_SOURCE="${S}" econf \ --disable-static \ $(use_enable doc) @@ -34,5 +39,6 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs + find "${ED}" -name '*.la' -delete || die } |