summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Herbert <stuart@gentoo.org>2004-03-28 20:56:49 +0000
committerStuart Herbert <stuart@gentoo.org>2004-03-28 20:56:49 +0000
commit218196c920eb2d8f0d830843698fe5b49bcebdb0 (patch)
tree65afd3e378952be942c0af086071ca9a0b454ade
parenterror check sed; depend on sed >= 4; remove unused debug from IUSE (Manifest ... (diff)
downloadgentoo-2-218196c920eb2d8f0d830843698fe5b49bcebdb0.tar.gz
gentoo-2-218196c920eb2d8f0d830843698fe5b49bcebdb0.tar.bz2
gentoo-2-218196c920eb2d8f0d830843698fe5b49bcebdb0.zip
Closes bug #28761
-rw-r--r--app-doc/php-docs/ChangeLog9
-rw-r--r--app-doc/php-docs/Manifest2
-rw-r--r--app-doc/php-docs/files/digest-php-docs-2004031
-rw-r--r--app-doc/php-docs/metadata.xml10
-rw-r--r--app-doc/php-docs/php-docs-200403.ebuild20
5 files changed, 40 insertions, 2 deletions
diff --git a/app-doc/php-docs/ChangeLog b/app-doc/php-docs/ChangeLog
index 56e1b93e0c2d..9feebaf111fe 100644
--- a/app-doc/php-docs/ChangeLog
+++ b/app-doc/php-docs/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-doc/php-docs
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.4 2003/09/05 01:44:11 msterret Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.5 2004/03/28 20:56:49 stuart Exp $
+
+*php-docs-200403 (28 Mar 2004)
+
+ 28 Mar 2004; Stuart Herbert <stuart@gentoo.org> php-docs-200403.ebuild:
+ Added ebuild for a snapshot of March 2004's PHP manual; closes bug #38761
04 Sep 2003; Michael Sterrett <msterret@gentoo.org> php-docs-4.2.3.ebuild:
simplify ebuild by using dohtml (resulting install is the same as before)
diff --git a/app-doc/php-docs/Manifest b/app-doc/php-docs/Manifest
index e8236f8fff8c..4b4d84765360 100644
--- a/app-doc/php-docs/Manifest
+++ b/app-doc/php-docs/Manifest
@@ -1,3 +1,5 @@
MD5 e48606d69aa8a9948ce661dddaea7231 ChangeLog 693
MD5 6c960e8bce2e890090166037642bd351 php-docs-4.2.3.ebuild 492
+MD5 5b252cf0a03963dad3763250ee8f59cc php-docs-200403.ebuild 491
MD5 b86899d455b1d4fb39d7b57537daf5b7 files/digest-php-docs-4.2.3 73
+MD5 bd92c460990d9dd5dbbfa4a6f2266916 files/digest-php-docs-200403 73
diff --git a/app-doc/php-docs/files/digest-php-docs-200403 b/app-doc/php-docs/files/digest-php-docs-200403
new file mode 100644
index 000000000000..52f7d2c2cf99
--- /dev/null
+++ b/app-doc/php-docs/files/digest-php-docs-200403
@@ -0,0 +1 @@
+MD5 b82ef33e85569a458cffc61c2b511956 php_manual_en-200403.tar.gz 2071911
diff --git a/app-doc/php-docs/metadata.xml b/app-doc/php-docs/metadata.xml
new file mode 100644
index 000000000000..f1ebb2203ac7
--- /dev/null
+++ b/app-doc/php-docs/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>php</herd>
+ <maintainer>
+ <email>robbat2@gentoo.org</email>
+ <name>Robin H. Johnson</name>
+ <description>Eclass author and primary maintainer (See the herd for other maintainers)</description>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-doc/php-docs/php-docs-200403.ebuild b/app-doc/php-docs/php-docs-200403.ebuild
new file mode 100644
index 000000000000..1fbef7a231fa
--- /dev/null
+++ b/app-doc/php-docs/php-docs-200403.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2004 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-200403.ebuild,v 1.1 2004/03/28 20:56:49 stuart Exp $
+
+# if you update this ebuild, you *must* also update the php-2.eclass to
+# depend on the new manual
+
+S=${WORKDIR}
+DESCRIPTION="HTML documentation for PHP"
+SRC_URI="mirror://gentoo/php_manual_en-${PV}.tar.gz"
+HOMEPAGE="http://www.php.net/download-docs.php"
+DEPEND=""
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86 ppc sparc alpha"
+IUSE=""
+
+src_install() {
+ dohtml *
+}