1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 105145 2013-04-12 00:07:09Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | PortGroup php 1.1 |
---|
7 | |
---|
8 | github.setup eaccelerator eaccelerator 0.9.6.1 |
---|
9 | name php-eaccelerator |
---|
10 | revision 11 |
---|
11 | categories php www devel |
---|
12 | platforms darwin freebsd openbsd |
---|
13 | maintainers ryandesign openmaintainer |
---|
14 | license GPL-2+ |
---|
15 | |
---|
16 | php.branches 5.3 |
---|
17 | |
---|
18 | description php5 extension for PHP acceleration, optimization, and \ |
---|
19 | dynamic content caching |
---|
20 | long_description eAccelerator is a free open-source PHP accelerator, \ |
---|
21 | optimizer, and dynamic content cache. It increases the \ |
---|
22 | performance of PHP scripts by caching them in their \ |
---|
23 | compiled state, so that the overhead of compiling is \ |
---|
24 | almost completely eliminated. It also optimizes scripts \ |
---|
25 | to speed up their execution. eAccelerator typically \ |
---|
26 | reduces server load and increases the speed of your PHP \ |
---|
27 | code by 1-10 times. |
---|
28 | |
---|
29 | homepage http://eaccelerator.net/ |
---|
30 | github.tarball_from downloads |
---|
31 | |
---|
32 | checksums md5 32ccd838e06ef5613c2610c1c65ed228 \ |
---|
33 | sha1 c95e87229a6e674b4994d4fc13278e516ea314f9 \ |
---|
34 | rmd160 6a16ab377ec124a27e26a5fdc1fd6ada845695bd |
---|
35 | |
---|
36 | use_bzip2 yes |
---|
37 | |
---|
38 | if {${name} != ${subport}} { |
---|
39 | conflicts ${php}-APC ${php}-xcache |
---|
40 | |
---|
41 | variant shared_memory description {Enable shared memory access functions (only enable in trusted environments)} { |
---|
42 | configure.args-append --with-eaccelerator-shared-memory |
---|
43 | } |
---|
44 | |
---|
45 | variant disassembler description {Include a disassembler} { |
---|
46 | configure.args-append --with-eaccelerator-disassembler |
---|
47 | } |
---|
48 | } |
---|