Commits
Dimitris Apostolou authored and Perry E. Metzger committed bb296baad61
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | |
5 5 | name tor |
6 6 | conflicts tor-devel |
7 - | version 0.3.5.8 |
8 - | revision 1 |
7 + | version 0.4.0.5 |
8 + | revision 0 |
9 9 | categories security |
10 10 | platforms darwin |
11 11 | maintainers nomaintainer |
12 12 | license BSD |
13 13 | |
14 14 | description anonymizing overlay network for TCP |
15 15 | |
16 16 | long_description Tor provides a distributed network of servers \ |
17 17 | (onion routers). Users bounce their TCP streams \ |
18 18 | (web traffic, FTP, SSH, etc.) around the \ |
19 19 | routers. This makes it hard for recipients, \ |
20 20 | observers, and even the onion routers \ |
21 21 | themselves to track the source of the stream. |
22 22 | |
23 23 | homepage https://www.torproject.org/ |
24 24 | master_sites https://dist.torproject.org/ |
25 25 | |
26 - | checksums rmd160 f94869f6f11277a7c786f8355c528912ab55733b \ |
27 - | sha256 d5c56603942a8927670f50a4a469fb909e29d3571fdd013389d567e57abc0b47 \ |
28 - | size 6994335 |
26 + | checksums rmd160 cc0bead52c77d0cb7f65c7c083c48d3810514287 \ |
27 + | sha256 b5a2cbf0dcd3f1df2675dbd5ec10bbe6f8ae995c41b68cebe2bc95bffc90696e \ |
28 + | size 7203877 |
29 29 | |
30 30 | depends_lib port:libevent \ |
31 31 | path:lib/libssl.dylib:openssl \ |
32 32 | port:zlib |
33 33 | |
34 34 | set torUser _tor |
35 35 | set torGroup _tor |
36 36 | add_users ${torUser} group=${torGroup} home=${prefix}/var/lib/tor |
37 37 | |
38 38 | configure.args --disable-silent-rules |