You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild

58 lines
1.3 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit systemd user
DESCRIPTION="A tool for securing communications between a client and a DNS resolver"
HOMEPAGE="https://dnscrypt.org/"
SRC_URI="https://download.dnscrypt.org/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="+plugins systemd"
CDEPEND="
dev-libs/libsodium
net-libs/ldns
systemd? ( sys-apps/systemd )"
RDEPEND="${CDEPEND}"
DEPEND="${CDEPEND}
virtual/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README* THANKS *txt"
pkg_setup() {
enewgroup dnscrypt
enewuser dnscrypt -1 -1 /var/empty dnscrypt
}
src_configure() {
econf \
$(use_enable plugins) \
$(use_with systemd)
}
src_install() {
default
newinitd "${FILESDIR}"/${PN}.initd-1.6.1 ${PN}
newconfd "${FILESDIR}"/${PN}.confd-1.6.0-r1 ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
}
pkg_postinst() {
elog "After starting the service you will need to update your"
elog "/etc/resolv.conf and replace your current set of resolvers"
elog "with:"
elog
elog "nameserver <DNSCRYPT_LOCALIP>"
elog
elog "where <DNSCRYPT_LOCALIP> is what you supplied in"
elog "/etc/conf.d/dnscrypt-proxy, default is \"127.0.0.1\"."
elog
elog "Also see https://github.com/jedisct1/dnscrypt-proxy#usage."
}