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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name memcachedb |
---|
7 | version 1.2.0 |
---|
8 | description A distributed key-value storage system designed for persistent. |
---|
9 | long_description MemcacheDB is a distributed key-value storage system designed for persistent. It is NOT a cache solution, but a persistent storage engine for fast and reliable key-value based object storage and retrieval. It conforms to memcache protocol(not completed, see below), so any memcached client can have connectivity with it. MemcacheDB uses Berkeley DB as a storing backend, so lots of features including transaction and replication are supported. |
---|
10 | maintainers gmail.com:cofyc.jackson |
---|
11 | categories sysutils |
---|
12 | platforms darwin |
---|
13 | homepage http://memcachedb.org/ |
---|
14 | master_sites googlecode |
---|
15 | |
---|
16 | checksums md5 1642242ab2108611873588b77848317b \ |
---|
17 | sha1 fe817ed3a340a65dd6998f35d87a0d9555830d04 \ |
---|
18 | rmd160 023e26d09b4ceae751bd7717c769a3b5c1e214d6 |
---|
19 | |
---|
20 | configure.args --with-libevent=${prefix} |
---|
21 | depends_lib port:libevent \ |
---|
22 | port:db47 |
---|
23 | |
---|
24 | configure.cflags-append -I${prefix}/include/db47 |
---|
25 | configure.ldflags-append -L${prefix}/lib/db47 |
---|
26 | |
---|
27 | livecheck.type regex |
---|
28 | livecheck.regex ${name}-(\\d+(?:\\.\\d+){2,})\\. |
---|