summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2003-09-05 01:44:13 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2003-09-05 01:44:13 +0000
commit5a8dddccf402188900db17e5163fe37bb451f600 (patch)
tree0ff3e74eb7c2e6745f92c518e74ace57161438e3 /app-doc/php-docs
parentwhitespace cleanup (diff)
downloadhistorical-5a8dddccf402188900db17e5163fe37bb451f600.tar.gz
historical-5a8dddccf402188900db17e5163fe37bb451f600.tar.bz2
historical-5a8dddccf402188900db17e5163fe37bb451f600.zip
simplify ebuild by using dohtml (resulting install is the same as before)
Diffstat (limited to 'app-doc/php-docs')
-rw-r--r--app-doc/php-docs/ChangeLog5
-rw-r--r--app-doc/php-docs/Manifest4
-rw-r--r--app-doc/php-docs/php-docs-4.2.3.ebuild16
3 files changed, 9 insertions, 16 deletions
diff --git a/app-doc/php-docs/ChangeLog b/app-doc/php-docs/ChangeLog
index d93cbe1c6d7e..56e1b93e0c2d 100644
--- a/app-doc/php-docs/ChangeLog
+++ b/app-doc/php-docs/ChangeLog
@@ -1,6 +1,9 @@
# 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.3 2003/02/12 03:38:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.4 2003/09/05 01:44:11 msterret Exp $
+
+ 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)
*php-docs-4.2.3 (14 Dec 2002)
diff --git a/app-doc/php-docs/Manifest b/app-doc/php-docs/Manifest
index 1f71f3acb8f0..55eda773b451 100644
--- a/app-doc/php-docs/Manifest
+++ b/app-doc/php-docs/Manifest
@@ -1,3 +1,3 @@
-MD5 e43a578c12f867262fe4894f70385c63 ChangeLog 537
-MD5 51d26cc63865bb8e79834a98978a43db php-docs-4.2.3.ebuild 679
+MD5 e48606d69aa8a9948ce661dddaea7231 ChangeLog 693
+MD5 a030f64df6669b800bdb01678d1eae5b php-docs-4.2.3.ebuild 491
MD5 b86899d455b1d4fb39d7b57537daf5b7 files/digest-php-docs-4.2.3 73
diff --git a/app-doc/php-docs/php-docs-4.2.3.ebuild b/app-doc/php-docs/php-docs-4.2.3.ebuild
index c9a78241e934..bdcedd363330 100644
--- a/app-doc/php-docs/php-docs-4.2.3.ebuild
+++ b/app-doc/php-docs/php-docs-4.2.3.ebuild
@@ -1,8 +1,8 @@
# 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.4 2003/09/05 01:38:49 msterret Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/php-docs-4.2.3.ebuild,v 1.5 2003/09/05 01:44:11 msterret Exp $
-S=${WORKDIR}/${P}
+S=${WORKDIR}
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"
@@ -12,16 +12,6 @@ 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
+ dohtml *
}