From 856094db67b1b34134370e0e60135848ffae7d86 Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 29 Jun 2021 22:06:25 +0100 Subject: app-doc/linux-kernel-in-a-nutshell: fix installation path, EAPI 8 Closes: https://bugs.gentoo.org/799278 Signed-off-by: Sam James --- .../linux-kernel-in-a-nutshell-1-r1.ebuild | 21 --------------------- .../linux-kernel-in-a-nutshell-1-r2.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 21 deletions(-) delete mode 100644 app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild create mode 100644 app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild 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-r1.ebuild deleted file mode 100644 index 8eb1f22922df..000000000000 --- a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Linux Kernel in a Nutshell: A Desktop Quick Reference" -HOMEPAGE="http://www.kroah.com/lkn/" -SRC_URI="https://www.kernel.org/pub/linux/kernel/people/gregkh/lkn/lkn_pdf.tar.bz2 - https://www.kernel.org/pub/linux/kernel/people/gregkh/lkn/lkn_xml.tar.bz2" -S="${WORKDIR}" - -LICENSE="CC-BY-SA-2.5" -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/* -} diff --git a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild new file mode 100644 index 000000000000..012e435f0455 --- /dev/null +++ b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Linux Kernel in a Nutshell: A Desktop Quick Reference" +HOMEPAGE="http://www.kroah.com/lkn/" +SRC_URI="https://www.kernel.org/pub/linux/kernel/people/gregkh/lkn/lkn_pdf.tar.bz2 + https://www.kernel.org/pub/linux/kernel/people/gregkh/lkn/lkn_xml.tar.bz2" +S="${WORKDIR}" + +LICENSE="CC-BY-SA-2.5" +SLOT="0" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" + +src_install() { + docinto pdf + dodoc -r lkn_pdf/* + + docinto xml + dodoc -r lkn_xml/* +} -- cgit v1.2.3-65-gdbad