diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-08-22 04:46:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-08-22 04:46:32 +0000 |
commit | 8257c84439caa6bcb0a5d2ead7cb4629e4444190 (patch) | |
tree | 5a207927cc393287314c7cb213451b08444ca939 /eclass/php-pear-lib-r1.eclass | |
parent | Version bump (diff) | |
download | gentoo-2-8257c84439caa6bcb0a5d2ead7cb4629e4444190.tar.gz gentoo-2-8257c84439caa6bcb0a5d2ead7cb4629e4444190.tar.bz2 gentoo-2-8257c84439caa6bcb0a5d2ead7cb4629e4444190.zip |
fix random bugs in eclass documentation, and convert to new @AUTHOR tag
Diffstat (limited to 'eclass/php-pear-lib-r1.eclass')
-rw-r--r-- | eclass/php-pear-lib-r1.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/php-pear-lib-r1.eclass b/eclass/php-pear-lib-r1.eclass index bdc5587e24f6..e1970bb425c0 100644 --- a/eclass/php-pear-lib-r1.eclass +++ b/eclass/php-pear-lib-r1.eclass @@ -1,12 +1,12 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.23 2011/06/28 07:03:59 olemarkus Exp $ -# -# Author: Luca Longinotti <chtekk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-lib-r1.eclass,v 1.24 2011/08/22 04:46:32 vapier Exp $ # @ECLASS: php-pear-lib-r1.eclass # @MAINTAINER: # Gentoo PHP team <php-bugs@gentoo.org> +# @AUTHOR: +# Author: Luca Longinotti <chtekk@gentoo.org> # @BLURB: Provides means for an easy installation of PEAR-based libraries. # @DESCRIPTION: # This class provides means for an easy installation of PEAR-based libraries, @@ -33,13 +33,13 @@ fi # @FUNCTION: php-pear-lib-r1_pkg_setup -# @DESCRIPTION +# @DESCRIPTION: # Adds required PEAR channel if necessary php-pear-lib-r1_pkg_setup() { if [[ -n $PHP_PEAR_CHANNEL ]] ; then if [[ -f $PHP_PEAR_CHANNEL ]]; then pear channel-add $PHP_PEAR_CHANNEL - else + else pear channel-discover $PHP_PEAR_CHANNEL pear channel-update $PHP_PEAR_CHANNEL fi |