dev-db/kyotocabinet: fix DeprecatedInsinto

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-03-04 07:56:53 +00:00
parent acdb9f34dd
commit d7773cd73f

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=7
inherit autotools toolchain-funcs
@@ -57,13 +57,12 @@ src_install() {
find "${ED}" -name '*.a' -delete || die
fi
if use examples; then
insinto /usr/share/${PF}/example
doins example/*
if use doc; then
dodoc -r doc/*
fi
if use doc; then
insinto /usr/share/doc/${PF}
doins -r doc/*
if use examples; then
docinto example
dodoc example/*
fi
}