diff options
author | Sam James <sam@gentoo.org> | 2021-04-01 00:31:40 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-01 00:43:23 +0000 |
commit | 5b5a1e70d27fd95601a9f9cc854c51e3603d97cc (patch) | |
tree | f5557bd7242549ffd3b7f492282cead928193d2c /dev-libs/mimetic | |
parent | dev-libs/libvterm: port to EAPI 7 for old, respect CC (diff) | |
download | gentoo-5b5a1e70d27fd95601a9f9cc854c51e3603d97cc.tar.gz gentoo-5b5a1e70d27fd95601a9f9cc854c51e3603d97cc.tar.bz2 gentoo-5b5a1e70d27fd95601a9f9cc854c51e3603d97cc.zip |
dev-libs/mimetic: port to EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/mimetic')
-rw-r--r-- | dev-libs/mimetic/mimetic-0.9.8.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-libs/mimetic/mimetic-0.9.8.ebuild b/dev-libs/mimetic/mimetic-0.9.8.ebuild index 3f54ec09712e..b47e8e697339 100644 --- a/dev-libs/mimetic/mimetic-0.9.8.ebuild +++ b/dev-libs/mimetic/mimetic-0.9.8.ebuild @@ -1,7 +1,7 @@ -# 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 autotools @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="amd64 ~ppc64 x86" IUSE="doc examples" -DEPEND="doc? ( app-doc/doxygen )" +BDEPEND="doc? ( app-doc/doxygen )" PATCHES=( "${FILESDIR}/signed-char.patch" ) @@ -46,5 +46,5 @@ src_install() { dodoc examples/{README,TODO,test.msg,*.cxx,*.h} fi - rm "${D}"/usr/$(get_libdir)/libmimetic.la || die + rm "${ED}"/usr/$(get_libdir)/libmimetic.la || die } |