| 1 |
# Copyright 1999-2005 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v 1.3 2005/10/31 14:08:42 chtekk Exp $
|
| 4 |
#
|
| 5 |
# Author: Stuart Herbert <stuart@gentoo.org>
|
| 6 |
# Maintained by the PHP Herd <php-bugs@gentoo.org>
|
| 7 |
#
|
| 8 |
# The php-lib-r1 eclass provides a unified interface for adding new
|
| 9 |
# PHP libraries. PHP libraries are PHP scripts designed for reuse inside
|
| 10 |
# other PHP scripts.
|
| 11 |
|
| 12 |
inherit depend.php
|
| 13 |
|
| 14 |
RESTRICT="${RESTRICT} nostrip"
|
| 15 |
|
| 16 |
EXPORT_FUNCTIONS src_install
|
| 17 |
|
| 18 |
# ---begin ebuild configurable settings
|
| 19 |
|
| 20 |
# provide default extension name if necessary
|
| 21 |
[ -z "${PHP_LIB_NAME}" ] && PHP_LIB_NAME="${PN}"
|
| 22 |
# ---end ebuild configurable settings
|
| 23 |
|
| 24 |
DEPEND="${DEPEND} dev-lang/php"
|
| 25 |
RDEPEND="${RDEPEND} ${DEPEND}"
|
| 26 |
|
| 27 |
# you have to pass in a list of the PHP files to install
|
| 28 |
#
|
| 29 |
# $1 - directory in ${S} to insert from
|
| 30 |
# $2 ... list of files to install
|
| 31 |
|
| 32 |
php-lib-r1_src_install() {
|
| 33 |
has_php
|
| 34 |
|
| 35 |
# install to the correct phpX folder, if not specified
|
| 36 |
# fall back to /usr/share/php
|
| 37 |
if [ -n "${PHP_SHARED_CAT}" ] ; then
|
| 38 |
PHP_LIB_DIR="/usr/share/${PHP_SHARED_CAT}/${PHP_LIB_NAME}"
|
| 39 |
else
|
| 40 |
PHP_LIB_DIR="/usr/share/php/${PHP_LIB_NAME}"
|
| 41 |
fi
|
| 42 |
|
| 43 |
local x
|
| 44 |
|
| 45 |
S_DIR="$1"
|
| 46 |
shift
|
| 47 |
|
| 48 |
for x in $@ ; do
|
| 49 |
SUBDIR="`dirname ${x}`"
|
| 50 |
insinto ${PHP_LIB_DIR}/${SUBDIR}
|
| 51 |
doins "${S_DIR}/${x}"
|
| 52 |
done
|
| 53 |
}
|