Ticket #33568: Portfile

File Portfile, 1.5 KB (added by kormoc (Rob Smith), 12 years ago)
Line 
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
4PortSystem          1.0
5name                mysql-proxy
6version             0.8.2
7categories          databases
8maintainers         naegler.org:michael
9description         Proxy for MySQL-Server
10long_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
14homepage            http://forge.mysql.com/wiki/MySQL_Proxy
15platforms           darwin
16master_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
21checksums           md5 b00784ddc5d28787fc99712d602a3614 \
22                    sha1 3ae4f2f68849cfd95eeaf033af8df78d643dbf4d \
23                    rmd160 02a46970d3d046da5f04159bf9266dd564ba9f55
24
25depends_build       port:pkgconfig
26depends_lib         port:lua \
27                    port:libevent \
28                    path:bin/mysql_config5:mysql5 \
29                    path:lib/pkgconfig/glib-2.0.pc:glib2
30
31configure.args      --with-mysql=${prefix}/lib/mysql5/bin/mysql_config \
32                    --with-lua
33