Ticket #23816: Portfile

File Portfile, 1.1 KB (added by ryandesign (Ryan Carsten Schmidt), 14 years ago)

Portfile so far

Line 
1# $Id: Portfile 61501 2009-12-13 12:48:05Z ryandesign@macports.org $
2
3PortSystem              1.0
4PortGroup               php5extension 1.0
5
6php5extension.setup     memcached 1.0.0 pecl
7categories-append       net devel
8platforms               darwin freebsd openbsd
9maintainers             ryandesign
10license                 PHP-3.0
11
12description             PHP5 bindings for memcache
13
14long_description        Memcached is a caching daemon designed especially for \
15                        dynamic web applications to decrease database load by storing objects in memory. This extension allows you \
16                        to work with memcached through handy OO and \
17                        procedural interfaces.
18
19checksums               md5     b5b0b438aa8e444840a7a4aff515db2a \
20                        sha1    e3086ebc4d15aabb224083e4a174c130f3bc4358 \
21                        rmd160  074b2292d24dc618014adccbd75c414e68b4599f
22
23depends_lib-append      port:libmemcached port:zlib
24
25configure.args-append   --with-libmemcached-dir=${prefix} \
26                        --with-zlib-dir=${prefix}