Ticket #37352: torsocks.Portfile.diff
File torsocks.Portfile.diff, 1.9 KB (added by sami.laine@…, 12 years ago) |
---|
-
net/torsocks/Portfile
old new 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 # $Id : Portfile 96472 2012-08-10 23:29:49Z jmr@macports.org$2 # $Id$ 3 3 4 4 PortSystem 1.0 5 5 6 6 name torsocks 7 7 version 1.2 8 revision 2 8 9 categories net security 9 license GPL-2+10 10 platforms darwin 11 license GPL-2+ 11 12 maintainers yopmail.com:sami.laine 12 13 description A transparent socks proxy for use with tor 13 14 long_description Torsocks is an application for Linux, BSD and \ 14 OSX that allows you to use network applications \15 Mac OSX that allows you to use network applications \ 15 16 such as ssh and irssi with Tor. Torsocks allows you \ 16 17 to use most socks-friendly applications in a safe \ 17 18 way with Tor. It ensures that DNS requests are \ … … 19 20 from the application you're using. 20 21 homepage http://torsocks.googlecode.com/ 21 22 master_sites googlecode 22 checksums rmd160 eb4b16833c5f7a09424d7acb9993c6dd04f8a8d0 \ 23 sha256 bea57d3624d723724fd1e260f0e6b2a354c0da742c023aa994c7692270d111d4 23 checksums sha256 bea57d3624d723724fd1e260f0e6b2a354c0da742c023aa994c7692270d111d4 24 25 configure.args --datarootdir=${prefix}/share/doc/torsocks 26 post-destroot { 27 move ${destroot}${prefix}/etc/torsocks.conf \ 28 ${destroot}${prefix}/etc/torsocks.conf.default 29 } 30 31 post-activate { 32 if {![file exists ${prefix}/etc/torsocks.conf]} { 33 file copy ${prefix}/etc/torsocks.conf.default \ 34 ${prefix}/etc/torsocks.conf 35 } 36 } 37 38 # end of file (I'm pretty sure this might be left here).