blob: 21a789bb78e9ab8bb73ceedc09adf14a3260bcc7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source.eclass,v 1.12 2007/09/02 19:17:44 jokey Exp $
#
# Author: Tal Peer <coredumb@gentoo.org>
# Author: Stuart Herbert <stuart@gentoo.org>
#
# The php-ext-source eclass provides a unified interface for compiling and
# installing standalone PHP extensions ('modules') from source code
# DEPRECATED!!!
# STOP USING THIS ECLASS, use php-ext-source-r1.eclass instead!
inherit php-ext-source-r1
deprecation_warning() {
eerror "Please upgrade ${PF} to use php-ext-source-r1.eclass!"
}
php-ext-source_src_compile() {
deprecation_warning
php-ext-source-r1_src_compile
}
php-ext-source_src_install() {
deprecation_warning
php-ext-source-r1_src_install
}
|