| 1 |
chtekk |
1.5 |
# Copyright 1999-2007 Gentoo Foundation |
| 2 |
stuart |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
chtekk |
1.5 |
# $Header: $ |
| 4 |
stuart |
1.1 |
# |
| 5 |
|
|
# Author: Stuart Herbert <stuart@gentoo.org> |
| 6 |
chtekk |
1.5 |
# Author: Luca Longinotti <chtekk@gentoo.org> |
| 7 |
jokey |
1.6 |
|
| 8 |
|
|
# @ECLASS: php-lib-r1.eclass |
| 9 |
|
|
# @MAINTAINER: |
| 10 |
|
|
# Gentoo PHP team <php-bugs@gentoo.org> |
| 11 |
|
|
# @BLURB: A unified interface for adding new PHP libraries. |
| 12 |
|
|
# @DESCRIPTION: |
| 13 |
|
|
# This eclass provides a unified interface for adding new PHP libraries. |
| 14 |
|
|
# PHP libraries are PHP scripts designed for reuse inside other PHP scripts. |
| 15 |
stuart |
1.1 |
|
| 16 |
|
|
inherit depend.php |
| 17 |
|
|
|
| 18 |
|
|
EXPORT_FUNCTIONS src_install |
| 19 |
|
|
|
| 20 |
chtekk |
1.5 |
DEPEND="dev-lang/php" |
| 21 |
|
|
RDEPEND="${DEPEND}" |
| 22 |
stuart |
1.1 |
|
| 23 |
jokey |
1.6 |
# @ECLASS-VARIABLE: PHP_LIB_NAME |
| 24 |
|
|
# @DESCRIPTION: |
| 25 |
|
|
# Defaults to ${PN} unless set manually in the ebuild. |
| 26 |
chtekk |
1.5 |
[[ -z "${PHP_LIB_NAME}" ]] && PHP_LIB_NAME="${PN}" |
| 27 |
stuart |
1.1 |
|
| 28 |
jokey |
1.6 |
# @FUNCTION: php-lib-r1_src_install |
| 29 |
|
|
# @USAGE: <directory to install from> <list of files> |
| 30 |
|
|
# @DESCRIPTION: |
| 31 |
|
|
# Takes care of install for PHP libraries. |
| 32 |
|
|
# You have to pass in a list of the PHP files to install. |
| 33 |
|
|
|
| 34 |
jokey |
1.7 |
# @VARIABLE: DOCS |
| 35 |
|
|
# @DESCRIPTION: |
| 36 |
|
|
# Set in ebuild if you wish to install additional, package-specific documentation. |
| 37 |
|
|
|
| 38 |
stuart |
1.1 |
# $1 - directory in ${S} to insert from |
| 39 |
|
|
# $2 ... list of files to install |
| 40 |
hollow |
1.2 |
php-lib-r1_src_install() { |
| 41 |
stuart |
1.1 |
has_php |
| 42 |
|
|
|
| 43 |
|
|
# install to the correct phpX folder, if not specified |
| 44 |
|
|
# fall back to /usr/share/php |
| 45 |
chtekk |
1.5 |
if [[ -n "${PHP_SHARED_CAT}" ]] ; then |
| 46 |
stuart |
1.1 |
PHP_LIB_DIR="/usr/share/${PHP_SHARED_CAT}/${PHP_LIB_NAME}" |
| 47 |
|
|
else |
| 48 |
|
|
PHP_LIB_DIR="/usr/share/php/${PHP_LIB_NAME}" |
| 49 |
|
|
fi |
| 50 |
|
|
|
| 51 |
|
|
local x |
| 52 |
|
|
|
| 53 |
|
|
S_DIR="$1" |
| 54 |
|
|
shift |
| 55 |
|
|
|
| 56 |
|
|
for x in $@ ; do |
| 57 |
|
|
SUBDIR="`dirname ${x}`" |
| 58 |
chtekk |
1.5 |
insinto "${PHP_LIB_DIR}/${SUBDIR}" |
| 59 |
chtekk |
1.3 |
doins "${S_DIR}/${x}" |
| 60 |
stuart |
1.1 |
done |
| 61 |
jokey |
1.7 |
|
| 62 |
|
|
for doc in ${DOCS} ; do |
| 63 |
|
|
[[ -s ${doc} ]] && dodoc-php ${doc} |
| 64 |
|
|
done |
| 65 |
stuart |
1.1 |
} |