Ticket #19317: Portfile

File Portfile, 1.6 KB (added by michael@…, 15 years ago)

Portfile for mysql-proxy

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.6.1
7categories          databases
8maintainers         michael@naegler.org
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
16distname            mysql-proxy-$version
17master_sites        http://ftp.gwdg.de/pub/misc/mysql/Downloads/MySQL-Proxy/ \
18    http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-Proxy/ \
19    http://mysql.proserve.nl/Downloads/MySQL-Proxy/ \
20    ftp://mirror.leaseweb.com/mysql/Downloads/MySQL-Proxy/
21
22checksums           md5 f5b003f069c294002ae37c6df3a7a0a5 \
23                    sha1 3e4184ea2b737e6c60c42e5817f93728e9d31c3d \
24                    rmd160 05572c42ea2f736ef31477753d13fae6b49ba805
25
26depends_lib         port:lua \
27                    port:libevent \
28                    port:mysql5
29
30configure.args      --with-mysql=${prefix}/lib/mysql5/bin/mysql_config \
31                    --with-lua
32#fetch {}
33#checksum {}
34#extract {}
35#patch {}
36#configure {}
37#build {}
38#test {}
39#destroot {}
40#archive {}
41#install {}
42#activate {}