diff options
author | jschauma <jschauma@pkgsrc.org> | 2005-02-02 16:41:22 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2005-02-02 16:41:22 +0000 |
commit | 2a3e955656ca6d40f2b382a14f4c5507a82072fa (patch) | |
tree | 89e074f139d49cd42f14d0faf2df6156e534378e /net/tor/Makefile | |
parent | aee790bac1fc5a47e5d6bccfa11ea69215a77bd3 (diff) | |
download | pkgsrc-2a3e955656ca6d40f2b382a14f4c5507a82072fa.tar.gz |
Update tor to 0.0.9.3.
Pkgsrc changes:
- make this build under IRIX.
- tor has moved to tor.eff.org
Version changes since 0.0.9.2:
- Backport the cpu use fixes from main branch, so busy servers won't
need as much processor time.
- Work better when we go offline and then come back, or when we
run Tor at boot before the network is up. We do this by
optimistically trying to fetch a new directory whenever an
application request comes in and we think we're offline -- the
human is hopefully a good measure of when the network is back.
- Backport some minimal hidserv bugfixes: keep rend circuits open as
long as you keep using them; actually publish hidserv descriptors
shortly after they change, rather than waiting 20-40 minutes.
- Enable Mac startup script by default.
- Fix duplicate dns_cancel_pending_resolve reported by Giorgos Pallas.
- When you update AllowUnverifiedNodes or FirewallPorts via the
controller's setconf feature, we were always appending, never
resetting.
- When you update HiddenServiceDir via setconf, it was screwing up
the order of reading the lines, making it fail.
- Do not rewrite a cached directory back to the cache; otherwise we
will think it is recent and not fetch a newer one on startup.
- Workaround for webservers that lie about Content-Encoding: Tor
now tries to autodetect compressed directories and compression
itself. This lets us Proxypass dir fetches through apache.
Diffstat (limited to 'net/tor/Makefile')
-rw-r--r-- | net/tor/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/net/tor/Makefile b/net/tor/Makefile index ddd391bab8d..54880677890 100644 --- a/net/tor/Makefile +++ b/net/tor/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.4 2005/01/11 21:02:20 tv Exp $ +# $NetBSD: Makefile,v 1.5 2005/02/02 16:41:22 jschauma Exp $ # -DISTNAME= tor-0.0.9.2 +DISTNAME= tor-0.0.9.3 CATEGORIES= net security -MASTER_SITES= http://freehaven.net/tor/dist/ +MASTER_SITES= http://tor.eff.org/dist/ MAINTAINER= jschauma@NetBSD.org -HOMEPAGE= http://freehaven.net/tor/dist/ +HOMEPAGE= http://tor.eff.org COMMENT= Anonymizing overlay network for TCP USE_BUILDLINK3= yes @@ -21,6 +21,12 @@ CONF_FILES+= ${PREFIX}/share/examples/tor/tor-tsocks.conf \ CONF_FILES+= ${PREFIX}/share/examples/tor/torrc.sample \ ${PKG_SYSCONFDIR}/tor/torrc +.include "../../mk/bsd.prefs.mk" + +.if !empty(PKGSRC_COMPILER:Mmipspro) +CFLAGS+= -c99 +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/or/tor ${PREFIX}/bin/tor ${INSTALL_SCRIPT} ${WRKSRC}/contrib/torify ${PREFIX}/bin/torify |