blob: 4231fa7895a53c862f516c7e34ede081e68dc700 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# $HEADER$
P="Linux-pdf-HOWTOs"
S=${WORKDIR}/${P}
DESCRIPTION="The LDP howtos, pdf format."
SRC_URI="http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/pdf/${P}-${PV}.tar.gz"
HOMEPAGE="http://www.linuxdoc.org"
src_install () {
dodir /usr/share/doc/howto
dodir /usr/share/doc/howto/pdf
dosym /usr/share/doc/howto /usr/share/doc/HOWTO
cd ${WORKDIR}
insinto /usr/share/doc/howto/pdf
doins *
}
|