blob: 3a3ce47e7cd0c7ed096017894d79bfc570aa45e5 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/php-docs-4.2.3.ebuild,v 1.3 2003/02/13 06:37:34 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="HTML documentation for PHP"
SRC_URI="mirror://gentoo/php_manual_en-4.2.3.tar.bz2"
HOMEPAGE="http://www.php.net/download-docs.php"
DEPEND=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha"
IUSE=""
src_unpack() {
mkdir ${S}
cd ${S}
unpack ${A}
}
src_install() {
docinto html
# to prevent files from being gzipped they are copied with cp
# instead of dodoc
cd ${S}
cp * ${D}/usr/share/doc/${P}/html
}
|