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 | name mysql-proxy |
---|
6 | version 0.8.2 |
---|
7 | categories databases |
---|
8 | maintainers naegler.org:michael |
---|
9 | description Proxy for MySQL-Server |
---|
10 | long_description \ |
---|
11 | MySQL Proxy is a simple program that sits between your client and MySQL server(s) that can monitor, analyze or transform their communication. \ |
---|
12 | Its flexibility allows for unlimited uses\; common ones include: load balancing\; failover\; query analysis\; query filtering and modification\; and many more. |
---|
13 | |
---|
14 | homepage http://forge.mysql.com/wiki/MySQL_Proxy |
---|
15 | platforms darwin |
---|
16 | master_sites http://ftp.gwdg.de/pub/misc/mysql/Downloads/MySQL-Proxy/ \ |
---|
17 | http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-Proxy/ \ |
---|
18 | http://mysql.proserve.nl/Downloads/MySQL-Proxy/ \ |
---|
19 | ftp://mirror.leaseweb.com/mysql/Downloads/MySQL-Proxy/ |
---|
20 | |
---|
21 | checksums md5 b00784ddc5d28787fc99712d602a3614 \ |
---|
22 | sha1 3ae4f2f68849cfd95eeaf033af8df78d643dbf4d \ |
---|
23 | rmd160 02a46970d3d046da5f04159bf9266dd564ba9f55 |
---|
24 | |
---|
25 | depends_build port:pkgconfig |
---|
26 | depends_lib port:lua \ |
---|
27 | port:libevent \ |
---|
28 | path:bin/mysql_config5:mysql5 \ |
---|
29 | path:lib/pkgconfig/glib-2.0.pc:glib2 |
---|
30 | |
---|
31 | configure.args --with-mysql=${prefix}/lib/mysql5/bin/mysql_config \ |
---|
32 | --with-lua |
---|
33 | |
---|