12a2d09d56
Tor 0.2.3.25, the first stable release in the 0.2.3 branch, features significantly reduced directory overhead (via microdescriptors), enormous crypto performance improvements for fast relays on new enough hardware, a new v3 TLS handshake protocol that can better resist fingerprinting, support for protocol obfuscation plugins (aka pluggable transports), better scalability for hidden services, IPv6 support for bridges, performance improvements like allowing clients to skip the first round-trip on the circuit ("optimistic data") and refilling token buckets more often, a new "stream isolation" design to isolate different applications on different circuits, and many stability, security, and privacy fixes. Also kill unneeded pthread patch. Tested by dhill & dcoppa@. ok dcoppa@
33 lines
738 B
Makefile
33 lines
738 B
Makefile
# $OpenBSD: Makefile,v 1.61 2012/11/22 18:37:32 pascal Exp $
|
|
|
|
COMMENT= anonymity service using onion routing
|
|
|
|
DISTNAME= tor-0.2.3.25
|
|
CATEGORIES= net
|
|
HOMEPAGE= http://www.torproject.org/
|
|
|
|
MAINTAINER= Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c crypto event m pthread ssl z
|
|
|
|
MASTER_SITES= ${HOMEPAGE}dist/
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
# PIE is already taken care of on a per-arch basis, and we have stack protection
|
|
# anyway on FRAME_GROWS_DOWN archs.
|
|
CONFIGURE_ARGS= --with-ssl-dir=/usr \
|
|
--disable-gcc-hardening
|
|
|
|
DB_DIR= /var/tor
|
|
SUBST_VARS+= DB_DIR
|
|
|
|
FAKE_FLAGS= sysconfdir=${PREFIX}/share/examples
|
|
|
|
.include <bsd.port.mk>
|