Ticket #24171: Portfile.diff
File Portfile.diff, 2.7 KB (added by rodney.rehm@…, 15 years ago) |
---|
-
sysutils/gearmand/Portfile
old new 4 4 5 5 name gearmand 6 6 version 0.12 7 revision 17 revision 2 8 8 description framework for distributed computation 9 9 long_description Gearman provides a generic application framework \ 10 10 to farm out work to other machines or processes \ … … 16 16 database replication events. In other words, it \ 17 17 is the nervous system for how distributed \ 18 18 processing communicates. 19 maintainers medialize.de:rodney.rehm openmaintainer 20 categories sysutils 19 maintainers medialize.de:rodney.rehm openmaintainer \ 20 andyfowler.com:andy 21 categories sysutils net devel 21 22 platforms darwin 22 23 homepage http://gearman.org/ 23 24 master_sites https://launchpad.net/gearmand/trunk/${version}/+download/ 24 25 25 26 checksums md5 6e88a6bfb26e50d5aed37d143184e7f2 26 27 27 depends_lib port:libevent 28 depends_lib port:libevent port:sqlite3 28 29 29 30 configure.args --mandir=${prefix}/share/man \ 30 31 --with-libevent-prefix=${prefix} \ 31 --enable-threads 32 --enable-threads \ 33 --disable-libdrizzle \ 34 --disable-libpq \ 35 --disable-memcached 32 36 33 37 startupitem.create yes 34 38 startupitem.executable ${prefix}/sbin/gearmand -vv \ … … 40 44 variant dtrace description (Enable DTrace probes) { 41 45 configure.args-append --enable-dtrace 42 46 } 47 48 variant no_sqlite description {Build without sqlite3 support} { 49 depends_lib-delete port:sqlite3 50 configure.args-append --disable-libsqlite3 51 } 52 53 variant memcached description {Build with memcached support} { 54 depends_lib-append port:libmemcached 55 configure.args-delete --disable-libmemcached 56 configure.args-append --enable-libmemcached 57 } 58 59 variant drizzle description {Build with libdrizzle support} { 60 depends_lib-append port:libdrizzle 61 configure.args-delete --disable-libdrizzle 62 configure.args-append --enable-libdrizzle 63 } 64 65 variant postgres description {Build with postgresql support} { 66 depends_lib-append port:libpqxx 67 configure.args-delete --disable-libpq 68 configure.args-append --enable-libpq 69 } 70 71 livecheck.type regex 72 livecheck.url https://launchpad.net/${name}/+download 73 livecheck.regex {gearmand-(\d+(?:\.\d+)*).tar.gz}