summaryrefslogtreecommitdiff
blob: 10418d6068ae19d785c2a14e120073cdf5ba38ad (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
# Copyright 1999-2005 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.0.1.ebuild,v 1.2 2005/07/05 20:42:43 sebastian Exp $

PHP_EXT_ZENDEXT="no"
PHP_EXT_PECL_PKG="APC"
PHP_EXT_NAME="apc"
PHP_EXT_INI="yes"

inherit php-ext-pecl

IUSE=""
DESCRIPTION="The Alternative PHP Cache"
SLOT="0"
LICENSE="PHP"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
DEPEND="${DEPEND}
	!dev-php/eaccelerator
	!dev-php/php-accelerator
	!dev-php/ioncube_loaders"

src_install () {
	php-ext-pecl_src_install
	dodoc CHANGELOG INSTALL LICENSE NOTICE

	php-ext-base_addtoinifiles "apc.enabled" '"1"'
	php-ext-base_addtoinifiles "apc.shm_segments" '"1"'
	php-ext-base_addtoinifiles "apc.shm_size" '"30"'
	php-ext-base_addtoinifiles "apc.optimization" '"0"'
	php-ext-base_addtoinifiles "apc.num_files_hint" '"1000"'
	php-ext-base_addtoinifiles "apc.ttl" '"0"'
	php-ext-base_addtoinifiles "apc.gc_ttl" '"3600"'
	php-ext-base_addtoinifiles "apc.cache_by_default" '"On"'
	php-ext-base_addtoinifiles "apc.filters" '""'
	php-ext-base_addtoinifiles "apc.mmap_file_mask" '""'
	php-ext-base_addtoinifiles "apc.slam_defense" '"0"'
}