Ticket #30209: Portfile

File Portfile, 1.3 KB (added by pkrohn@…, 13 years ago)

updated Portfile

Line 
1# $Id: Portfile 56388 2009-08-26 23:43:52Z blb@macports.org $
2
3PortSystem 1.0
4
5name              haproxy
6version           1.4.15
7categories        net
8platforms         darwin
9maintainers       samgranieri.com:sam
10description       The Reliable, High Performance TCP/HTTP Load Balancer
11
12long_description  HAproxy is a high-performance and highly-robust TCP/HTTP \
13                  load balancer which provides cookie-based persistence, \
14                  automatic failover, header insertion, deletion, modification \
15                  on the fly, advanced logging contents to help trouble-shooting \
16                  buggy applications and/or networks, and a few other features. It \
17                  uses its own state machine to achieve up to ten thousands hits \
18                  per second on modern hardware, even with thousands simultaneous connections.
19
20homepage          http://haproxy.1wt.eu/
21master_sites      http://haproxy.1wt.eu/download/1.4/src/
22
23checksums         md5     c1b4fc6028c6d8e23dde8c91ff47eabe \
24                  sha1    8c42bc8c7d3714061b6fb74b0e3565d1e672556f \
25                  rmd160  1a5e3e5c4ea71e4d439ffc4b221e31ae90d04f88
26
27use_configure     no
28
29build.target TARGET=osx
30
31destroot  {
32  xinstall -s -m 755 ${worksrcpath}/haproxy ${destroot}${prefix}/sbin
33  xinstall -m 644 ${worksrcpath}/doc/haproxy.1 ${destroot}${prefix}/share/man/man1
34}