diff options
author | Sam James <sam@gentoo.org> | 2021-06-29 22:06:25 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-29 22:16:49 +0100 |
commit | 856094db67b1b34134370e0e60135848ffae7d86 (patch) | |
tree | bf473e30cd5019f6df0e77deb1096e20f9596e10 /app-doc/linux-kernel-in-a-nutshell | |
parent | dev-util/git-delta: drop 0.8.0, 0.8.1 (diff) | |
download | gentoo-856094db67b1b34134370e0e60135848ffae7d86.tar.gz gentoo-856094db67b1b34134370e0e60135848ffae7d86.tar.bz2 gentoo-856094db67b1b34134370e0e60135848ffae7d86.zip |
app-doc/linux-kernel-in-a-nutshell: fix installation path, EAPI 8
Closes: https://bugs.gentoo.org/799278
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-doc/linux-kernel-in-a-nutshell')
-rw-r--r-- | app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild (renamed from app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild) | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild index 8eb1f22922df..012e435f0455 100644 --- a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild +++ b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Linux Kernel in a Nutshell: A Desktop Quick Reference" HOMEPAGE="http://www.kroah.com/lkn/" @@ -14,8 +14,9 @@ SLOT="0" KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" src_install() { - insinto /usr/share/doc/${PN}/pdf - doins -r lkn_pdf/* - insinto /usr/share/doc/${PN}/xml - doins -r lkn_xml/* + docinto pdf + dodoc -r lkn_pdf/* + + docinto xml + dodoc -r lkn_xml/* } |