S=${WORKDIR}/${P}
DESCRIPTION="HTML documentation for PHP"
SRC_URI="http://www.php.net/distributions/manual/php_manual_en.tar.bz2"
HOMEPAGE="http://www.php.net/download-docs.php"
DEPEND=""
RDEPEND=""
LICENSE="GPL2"
KEYWORDS="x86 ppc sparc alpha"
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
}