blob: 5cbc05de7c6a8ff700f4105bbb9ee2887e0d83af (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib.eclass,v 1.7 2008/01/06 19:30:24 swegener Exp $
#
# Author: Stuart Herbert <stuart@gentoo.org>
#
# The php-lib eclass provides a unified interface for adding new
# PHP libraries. PHP libraries are PHP scripts designed for reuse inside
# other PHP scripts.
#
# This eclass doesn't do a lot (yet)
# DEPRECATED!!!
# STOP USING THIS ECLASS, use php-lib-r1.eclass instead!
inherit php-lib-r1
deprecation_warning() {
eerror "Please upgrade ${PF} to use php-lib-r1.eclass!"
}
php-lib_src_install() {
deprecation_warning
php-lib-r1_src_install
}
|