mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-06 13:15:19 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
22 lines
583 B
Bash
22 lines
583 B
Bash
# 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 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
|
|
|
|
src_install() {
|
|
docinto pdf
|
|
dodoc -r lkn_pdf/*
|
|
|
|
docinto xml
|
|
dodoc -r lkn_xml/*
|
|
}
|