summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-doc/php-docs')
-rw-r--r--app-doc/php-docs/ChangeLog8
-rw-r--r--app-doc/php-docs/files/digest-php-docs-4.2.31
-rw-r--r--app-doc/php-docs/php-docs-4.2.3.ebuild27
3 files changed, 36 insertions, 0 deletions
diff --git a/app-doc/php-docs/ChangeLog b/app-doc/php-docs/ChangeLog
new file mode 100644
index 000000000000..0aa57aa484be
--- /dev/null
+++ b/app-doc/php-docs/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-doc/php-docs
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.1 2002/12/15 01:06:03 rphillips Exp $
+
+*php-docs-4.2.3 (14 Dec 2002)
+
+ 14 Dec 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog :
+ Initial import. Fixes #12162. Submitted by Steingrim Dovland
diff --git a/app-doc/php-docs/files/digest-php-docs-4.2.3 b/app-doc/php-docs/files/digest-php-docs-4.2.3
new file mode 100644
index 000000000000..144cf052901e
--- /dev/null
+++ b/app-doc/php-docs/files/digest-php-docs-4.2.3
@@ -0,0 +1 @@
+MD5 ad0bbd6eeae58b66dde55293c3237b0a php_manual_en.tar.bz2 1071144
diff --git a/app-doc/php-docs/php-docs-4.2.3.ebuild b/app-doc/php-docs/php-docs-4.2.3.ebuild
new file mode 100644
index 000000000000..b5a585aae1c2
--- /dev/null
+++ b/app-doc/php-docs/php-docs-4.2.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2002 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.1 2002/12/15 01:06:03 rphillips Exp $
+
+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=""
+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
+}