summaryrefslogtreecommitdiff
blob: af3cdcc0bf7f89617b6dbb9b9779d0dab813de3c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-base.eclass,v 1.22 2008/01/06 19:30:24 swegener Exp $
#
# Author: Tal Peer <coredumb@gentoo.org>
# Author: Stuart Herbert <stuart@gentoo.org>
#
# The php-ext-base eclass provides a unified interface for adding standalone
# PHP extensions ('modules') to the php.ini files on your system.
#
# Combined with php-ext-source, we have a standardised solution for supporting
# PHP extensions

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

inherit php-ext-base-r1

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

php-ext-base_buildinilist () {
	deprecation_warning
	php-ext-base-r1_buildinilist
}

php-ext-base_src_install() {
	deprecation_warning
	php-ext-base-r1_src_install
}

php-ext-base_addextension () {
	deprecation_warning
	php-ext-base-r1_addextension
}

php-ext-base_addtoinifile () {
	deprecation_warning
	php-ext-base-r1_addtoinifile
}

php-ext-base_addtoinifiles () {
	deprecation_warning
	php-ext-base-r1_addtoinifiles
}