blob: b9f14bca98b91ba3ce2b51295d74080ec979d1f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="howto write linux device drivers (updated for Linux 2.4)"
HOMEPAGE="http://www.oreilly.com/catalog/linuxdrive2/"
SRC_URI="http://www.xml.com/ldd/chapter/book/pdf/ldd_book_pdf.zip
ftp://ftp.oreilly.com/examples/linuxdrive2/ldd2-samples-1.0.1.tar.gz"
LICENSE="FDL-1.1"
SLOT="2"
KEYWORDS="amd64 arm hppa ~ia64 ppc ~s390 x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}
src_install() {
insinto /usr/share/doc/${PF}
doins *.pdf
insinto /usr/share/doc/${PF}/samples
doins -r ldd2-samples-*/*
}
|