diff options
author | Brian Evans <grknight@gentoo.org> | 2015-06-24 13:22:02 +0000 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2015-06-24 13:22:02 +0000 |
commit | eb9ab7c982f2ae2b295408322dd4568bf3091803 (patch) | |
tree | 9e748b67476de057d6ee508432cfb960466bc1ee /eclass/php-lib-r1.eclass | |
parent | bump to 0.3, python-3 supported (hopefully) (diff) | |
download | historical-eb9ab7c982f2ae2b295408322dd4568bf3091803.tar.gz historical-eb9ab7c982f2ae2b295408322dd4568bf3091803.tar.bz2 historical-eb9ab7c982f2ae2b295408322dd4568bf3091803.zip |
Remove depend.php and dodoc-php in favor of just dodoc
Diffstat (limited to 'eclass/php-lib-r1.eclass')
-rw-r--r-- | eclass/php-lib-r1.eclass | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/eclass/php-lib-r1.eclass b/eclass/php-lib-r1.eclass index 635a1d02485d..d226147a5b4c 100644 --- a/eclass/php-lib-r1.eclass +++ b/eclass/php-lib-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v 1.12 2015/04/14 18:32:51 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v 1.13 2015/06/24 13:22:02 grknight Exp $ # @ECLASS: php-lib-r1.eclass # @MAINTAINER: @@ -13,8 +13,6 @@ # This eclass provides a unified interface for adding new PHP libraries. # PHP libraries are PHP scripts designed for reuse inside other PHP scripts. -inherit depend.php - EXPORT_FUNCTIONS src_install # Silence repoman warnings case "${EAPI:-0}" in @@ -58,6 +56,6 @@ php-lib-r1_src_install() { done for doc in ${DOCS} ; do - [[ -s ${doc} ]] && dodoc-php ${doc} + [[ -s ${doc} ]] && dodoc ${doc} done } |