Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/linux-kernel-in-a-nutshell/
Date: Fri, 11 Aug 2017 20:40:30
Message-Id: 1502483903.8e098339141458a57e63c13359653d4b42de6a24.amynka@gentoo
1 commit: 8e098339141458a57e63c13359653d4b42de6a24
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 11 20:36:26 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 20:38:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e098339
7
8 app-doc/linux-kernel-in-a-nutshell: EAPI 6 bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 .../linux-kernel-in-a-nutshell-1-r1.ebuild | 28 ++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 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
16 new file mode 100644
17 index 00000000000..15609e8321d
18 --- /dev/null
19 +++ b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit eutils
27 +
28 +DESCRIPTION="Linux Kernel in a Nutshell: A Desktop Quick Reference"
29 +HOMEPAGE="http://www.kroah.com/lkn/"
30 +SRC_URI="mirror://kernel/linux/kernel/people/gregkh/lkn/lkn_pdf.tar.bz2
31 + mirror://kernel/linux/kernel/people/gregkh/lkn/lkn_xml.tar.bz2"
32 +
33 +LICENSE="CC-BY-SA-2.5"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND=""
39 +DEPEND="${RDEPEND}"
40 +
41 +S="${WORKDIR}"
42 +
43 +src_install() {
44 + insinto /usr/share/doc/${PN}/pdf
45 + doins -r lkn_pdf/*
46 + insinto /usr/share/doc/${PN}/xml
47 + doins -r lkn_xml/*
48 +}