blob: 6e3d27707dbcc22737886b57725cb539750b8d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_compile-v2.eblit,v 1.3 2011/10/31 16:18:04 mabi Exp $
eblit-php-src_compile() {
# snmp seems to run during src_compile, too (bug #324739)
addpredict /usr/share/snmp/mibs/.index
for sapi in ${SAPIS} ; do
use "${sapi}" && php_sapi_build "${sapi}"
done
}
php_sapi_build() {
cd "${WORKDIR}/sapis-build/$1"
emake || die "emake failed"
}
|