blob: c302df5e99b0b99c3b14fb4d68ddcb35d804e84e (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/howto-text/howto-text-20031006.ebuild,v 1.3 2004/03/14 00:14:31 mr_bones_ Exp $
MY_P="Linux-HOWTOs-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="The LDP howtos, text format."
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
HOMEPAGE="http://www.linuxdoc.org"
SLOT="0"
LICENSE="GPL-2 LDP"
KEYWORDS="x86 ppc sparc"
#As of 2003-07-24, the mini-HOWTOs are now merged into the full set of HOWTOs
DEPEND="!app-doc/mini-howto-text"
src_install() {
dodir /usr/share/doc/howto
dodir /usr/share/doc/howto/text
dosym /usr/share/doc/howto /usr/share/doc/HOWTO
cd ${WORKDIR}
gzip -9 *
insinto /usr/share/doc/howto/text
doins *
}
|