blob: a7c8db789c5090e808135a64b3bab8dbe4c1b829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="WDG HTML documentation from htmlhelp.com"
HOMEPAGE="http://www.htmlhelp.com"
SRC_URI="http://www.htmlhelp.com/distribution/${PN}.tar.gz"
LICENSE="OPL"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RESTRICT="strip binchecks"
S=${WORKDIR}/${PN}
src_install() {
dodir /usr/share/doc/${PF}
cp -R . "${D}"/usr/share/doc/${PF}
}
|