View | Details | Raw Unified | Return to bug 195664 | Differences between
and this patch

Collapse All | Expand All

(-)dnscrypt-proxy/Makefile (-3 / +3 lines)
Lines 2-9 Link Here
2
# $FreeBSD: head/dns/dnscrypt-proxy/Makefile 373758 2014-12-02 09:21:49Z xmj $
2
# $FreeBSD: head/dns/dnscrypt-proxy/Makefile 373758 2014-12-02 09:21:49Z xmj $
3
3
4
PORTNAME=	dnscrypt-proxy
4
PORTNAME=	dnscrypt-proxy
5
PORTVERSION=	1.4.0
5
PORTVERSION=	1.4.2
6
PORTREVISION=	6
7
CATEGORIES=	dns
6
CATEGORIES=	dns
8
MASTER_SITES=	http://download.dnscrypt.org/dnscrypt-proxy/ \
7
MASTER_SITES=	http://download.dnscrypt.org/dnscrypt-proxy/ \
9
		http://www.dns-lab.com/downloads/dnscrypt-proxy/
8
		http://www.dns-lab.com/downloads/dnscrypt-proxy/
Lines 12-17 Link Here
12
COMMENT=	Boost privacy and security of DNS
11
COMMENT=	Boost privacy and security of DNS
13
12
14
LICENSE=	MIT
13
LICENSE=	MIT
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
15
16
LIB_DEPENDS=	libexecinfo.so:${PORTSDIR}/devel/libexecinfo \
16
LIB_DEPENDS=	libexecinfo.so:${PORTSDIR}/devel/libexecinfo \
17
		libsodium.so:${PORTSDIR}/security/libsodium
17
		libsodium.so:${PORTSDIR}/security/libsodium
Lines 25-31 Link Here
25
25
26
USERS=		_dnscrypt-proxy
26
USERS=		_dnscrypt-proxy
27
27
28
PORTDOCS=	AUTHORS COPYING ChangeLog INSTALL NEWS README \
28
PORTDOCS=	AUTHORS ChangeLog INSTALL NEWS README \
29
		README-PLUGINS.markdown README-WINDOWS.markdown \
29
		README-PLUGINS.markdown README-WINDOWS.markdown \
30
		README.markdown TECHNOTES THANKS
30
		README.markdown TECHNOTES THANKS
31
31
(-)dnscrypt-proxy/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (dnscrypt-proxy-1.4.0.tar.gz) = 60b57b36aa15706c4cd0c348fc59534c15913c282a2b7d4db0b3787167b33502
1
SHA256 (dnscrypt-proxy-1.4.2.tar.gz) = 1d519068c30868bb60a151908f0e300a1754b234f7bc2ad1d749ad9d0d977076
2
SIZE (dnscrypt-proxy-1.4.0.tar.gz) = 1579426
2
SIZE (dnscrypt-proxy-1.4.2.tar.gz) = 1592962
(-)dnscrypt-proxy/pkg-descr (-5 / +16 lines)
Lines 1-6 Link Here
1
DNSCrypt is a piece of lightweight software that everyone
1
The dnscrypt-proxy provides local service, which can be used directly as your
2
should use to boost online privacy and security. It works
2
local resolver or as a DNS forwarder, encrypting and authenticating requests
3
by encrypting all DNS traffic between the user and OpenDNS,
3
using the DNSCrypt [1] protocol and passing them to an upstream server.
4
preventing any spying, spoofing or man-in-the-middle attacks.
5
4
6
WWW: https://www.opendns.com/technology/dnscrypt/
5
The DNSCrypt protocol uses high-speed high-security elliptic-curve cryptography
6
and is very similar to DNSCurve [2], but focuses on securing communications
7
between a client and its first-level resolver.
8
9
While not providing end-to-end security, it protects the local network, which
10
is often the weakest point of the chain, against man-in-the-middle attacks.
11
It also provides some confidentiality to DNS queries.
12
13
Reference links:
14
1. https://www.opendns.com/technology/dnscrypt
15
2. http://dnscurve.org
16
17
WWW: http://dnscrypt.org

Return to bug 195664