blob: d21b7aea6e454e2bb145484f2c5a6f14e1101fc7 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apc/pecl-apc-3.1.10.ebuild,v 1.1 2012/04/11 18:12:08 olemarkus Exp $
EAPI=4
PHP_EXT_NAME="apc"
PHP_EXT_PECL_PKG="APC"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="CHANGELOG INSTALL NOTICE TECHNOTES.txt TODO"
PHP_EXT_INIFILE="${PN}.ini"
USE_PHP="php5-3 php5-4"
inherit php-ext-pecl-r2 confutils eutils
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
DESCRIPTION="A free, open, and robust framework for caching and optimizing PHP code."
LICENSE="PHP-3.01"
SLOT="0"
IUSE="mmap"
DEPEND="!dev-php/eaccelerator !dev-php/xcache"
RDEPEND="${DEPEND}"
LOCKS="pthreadmutex pthreadrw spinlock semaphore"
LUSE=""
for l in ${LOCKS}; do
LUSE+="lock_${l} "
done
IUSE+=" ${LUSE/lock_pthreadmutex/+lock_pthreadmutex}"
REQUIRED_USE="^^ ( $LUSE )"
src_configure() {
my_conf="--enable-apc"
enable_extension_enable "apc-mmap" "mmap" 0
enable_extension_enable "apc-pthreadmutex" "lock_pthreadmutex" 0
enable_extension_enable "apc-pthreadrwlocks" "lock_pthreadrw" 0
enable_extension_enable "apc-spinlocks" "lock_spinlock" 0
enable_extension_enable "apc-sem" "lock_semaphore" 0
php-ext-source-r2_src_configure
}
src_install() {
php-ext-pecl-r2_src_install
dodir "${PHP_EXT_SHARED_DIR}"
insinto "${PHP_EXT_SHARED_DIR}"
doins apc.php
}
pkg_postinst() {
elog "The apc.php file shipped with this release of PECL-APC was"
elog "installed into ${PHP_EXT_SHARED_DIR}/."
}
|