blob: 3bb2efbefb8f71b802992224ad17ea3aade7d1d0 (
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
|
# 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.6.ebuild,v 1.2 2005/07/31 05:25:16 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
insinto /usr/share/apc
doins apc.php
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" '"1"'
php-ext-base_addtoinifiles "apc.filters" '""'
php-ext-base_addtoinifiles "apc.mmap_file_mask" '""'
php-ext-base_addtoinifiles "apc.slam_defense" '"0"'
php-ext-base_addtoinifiles "apc.file_update_protection" '"2"'
}
pkg_postinst () {
einfo "You need to restart your webserver to activate APC."
einfo
einfo "A web interface is available to manage the APC cache."
einfo "Copy /usr/share/apc/apc.php to somewhere where your"
einfo "webserver can see it. See the documentation on how"
einfo "to secure this web interface with authentication."
}
|