Ticket #35251: Portfile

File Portfile, 1.4 KB (added by mahlon@…, 12 years ago)

www/volta portfile

Line 
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
5PortSystem 1.0
6
7name                volta
8version             0.1.1
9revision            0
10
11categories          www net
12maintainers         nomaintainer
13description         a high performance Squid compatible URI redirector
14long_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
21license             BSD
22platforms           darwin
23master_sites        http://dl.dropbox.com/u/7234177/Releases/ \
24                    http://projects.martini.nu/volta/chrome/site/
25extract.suffix      .tgz
26homepage            http://projects.martini.nu/volta/
27checksums           rmd160 e76a1a81b8d499e009a1ebc64cd6dc214b55707d \
28                    sha256 596e54a59d19a84ff2d9019d0f4742ebcd33b9c4ab4a62e977df44242762d880
29
30depends_lib-append  port:lua port:tinycdb
31
32use_configure        no
33build.target         ${name}
34
35destroot {
36    xinstall -m 755 ${worksrcpath}/volta ${destroot}${prefix}/bin/
37}
38