summaryrefslogtreecommitdiff
blob: 38effcf91210adaeeda755737f6a0ecf70f642df (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="The Linux Documentation Project HOWTOs"
HOMEPAGE="http://www.tldp.org"

MY_SRC="http://www.ibiblio.org/pub/Linux/docs/HOWTO"
SRC_URI="
	html? ( ${MY_SRC}/other-formats/html/Linux-html-HOWTOs-${PV}.tar.bz2 )
	htmlsingle? ( ${MY_SRC}/other-formats/html_single/Linux-html-single-HOWTOs-${PV}.tar.bz2 )
	pdf? ( ${MY_SRC}/other-formats/pdf/Linux-pdf-HOWTOs-${PV}.tar.bz2 )
	text? ( ${MY_SRC}/Linux-HOWTOs-${PV}.tar.bz2 )"

LICENSE="FDL-1.2"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86"
IUSE="+html htmlsingle pdf text"
REQUIRED_USE="|| ( html htmlsingle pdf text )"

RESTRICT="binchecks strip"

src_unpack() {
	mkdir -p "${S}" || die
	cd "${S}" || die

	if use html; then
		unpack Linux-html-HOWTOs-${PV}.tar.bz2

		# for some reason this bundles the pdfs - older versions didn't
		if [[ -d "${S}"/HOWTO/pdf ]] ; then
			rm -r "${S}"/HOWTO/pdf || die
		fi

		# stray bin file, doubt anyone will ever need it
		rm -f "${S}"/HOWTO/RedHat-CD-HOWTO/rhcd-scripts/rvc || die
		mv "${S}"/HOWTO "${S}"/html || die
	fi

	if use htmlsingle; then
		mkdir "${S}"/htmlsingle || die
		pushd "${S}"/htmlsingle > /dev/null || die

		unpack Linux-html-single-HOWTOs-${PV}.tar.bz2

		popd > /dev/null || die
	fi

	if use pdf; then
		mkdir "${S}"/pdf || die
		pushd "${S}"/pdf > /dev/null || die

		unpack Linux-pdf-HOWTOs-${PV}.tar.bz2

		popd > /dev/null || die
	fi

	if use text; then
		mkdir "${S}"/text || die
		pushd "${S}"/text > /dev/null || die

		unpack Linux-HOWTOs-${PV}.tar.bz2

		popd > /dev/null || die
	fi
}

src_install() {
	dodoc -r "${S}"/*
}