summaryrefslogtreecommitdiff
blob: 2464f9aa8c4f15e7c3b9650f32e9851a1fd147d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-pecl.eclass,v 1.6 2007/09/02 17:49:20 jokey Exp $
#
# Author: Tal Peer <coredumb@gentoo.org>
#
# This eclass should be used by all dev-php/PECL-* ebuilds, as a uniform way of installing PECL extensions.
# For more information about PECL, see: http://pecl.php.net

# DEPRECATED!!! 
# STOP USING THIS ECLASS, use php-ext-pecl-r1.eclass instead!

inherit php-ext-pecl-r1

deprecation_warning() {
	eerror "Please upgrade ${PF} to use php-ext-pecl-r1.eclass!"
}

php-ext-pecl_src_compile() {
	deprecation_warning
	php-ext-pecl-r1_src_compile
}

php-ext-pecl_src_install() {
	deprecation_warning
	php-ext-pecl-r1_src_install
}