1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name gearmand |
---|
6 | version 0.11 |
---|
7 | categories devel |
---|
8 | maintainers andyfowler.com:andy |
---|
9 | description A gearman server in C |
---|
10 | long_description \ |
---|
11 | Gearman is a job server, worker and client architecture. This \ |
---|
12 | port contains the C server, gearmand, and the gearman CLI tool.\ |
---|
13 | |
---|
14 | platforms darwin |
---|
15 | |
---|
16 | homepage http://gearman.org/ |
---|
17 | master_sites https://launchpad.net/gearmand/trunk/${version}/+download/ |
---|
18 | |
---|
19 | checksums md5 62da8118c76d29d07bf5e54099e11dbb \ |
---|
20 | sha1 6b3d7fdb3d2d19a1cafa82efa0a443df190fb5db \ |
---|
21 | rmd160 d5d79c9153fa496f690875b8572c825c826ba7cd |
---|
22 | |
---|
23 | depends_lib port:libevent port:sqlite3 port:libmemcached |
---|
24 | |
---|
25 | configure.args --disable-libdrizzle --disable-libpq |
---|
26 | |
---|
27 | variant no_sqlite description {Build without sqlite3 support} { |
---|
28 | depends_lib-delete port:sqlite3 |
---|
29 | configure.args-append --disable-libsqlite3 |
---|
30 | } |
---|
31 | |
---|
32 | variant no_memcached description {Build without memcached support} { |
---|
33 | depends_lib-delete port:libmemcached |
---|
34 | configure.args-append --disable-libmemcached |
---|
35 | } |
---|
36 | |
---|
37 | variant postgres description {Build without postgresql support} { |
---|
38 | depends_lib-append port:libpqxx |
---|
39 | configure.args-delete --disable-libpq |
---|
40 | configure.args-append --enable-libpq |
---|
41 | } |
---|
42 | |
---|
43 | livecheck.type regex |
---|
44 | livecheck.url https://launchpad.net/gearmand/+download |
---|
45 | livecheck.regex {gearmand-(\d+(?:\.\d+)*).tar.gz} |
---|