1 | # # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; # c-basic-offset: 4 -*- |
---|
2 | # vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
3 | # $Id$ |
---|
4 | |
---|
5 | PortSystem 1.0 |
---|
6 | |
---|
7 | name volta |
---|
8 | version 0.1.1 |
---|
9 | revision 0 |
---|
10 | |
---|
11 | categories www net |
---|
12 | maintainers nomaintainer |
---|
13 | description a high performance Squid compatible URI redirector |
---|
14 | long_description Volta is a high performance, low resource URI rewriter \ |
---|
15 | for use with the Squid caching proxy server (or alternatively Polipo!) \ |
---|
16 | With it, you can dynamically alter URI requests on various criteria. \ |
---|
17 | It uses a finite state machine to parse URIs and rules, and a constant \ |
---|
18 | database for storage. It can perform conditional rewrites internally \ |
---|
19 | or by evaluating Lua scripts. |
---|
20 | |
---|
21 | license BSD |
---|
22 | platforms darwin |
---|
23 | master_sites http://dl.dropbox.com/u/7234177/Releases/ \ |
---|
24 | http://projects.martini.nu/volta/chrome/site/ |
---|
25 | extract.suffix .tgz |
---|
26 | homepage http://projects.martini.nu/volta/ |
---|
27 | checksums rmd160 e76a1a81b8d499e009a1ebc64cd6dc214b55707d \ |
---|
28 | sha256 596e54a59d19a84ff2d9019d0f4742ebcd33b9c4ab4a62e977df44242762d880 |
---|
29 | |
---|
30 | depends_lib-append port:lua port:tinycdb |
---|
31 | |
---|
32 | use_configure no |
---|
33 | build.target ${name} |
---|
34 | |
---|
35 | destroot { |
---|
36 | xinstall -m 755 ${worksrcpath}/volta ${destroot}${prefix}/bin/ |
---|
37 | } |
---|
38 | |
---|