blob: 55528cae9c7c7256a5237105087ba37d20556e87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils systemd user
DESCRIPTION="A tool for securing communications between a client and a DNS resolver"
HOMEPAGE="http://dnscrypt.org/"
SRC_URI="http://download.dnscrypt.org/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+plugins ldns systemd"
DEPEND="dev-libs/libsodium
ldns? ( net-libs/ldns )"
RDEPEND="${DEPEND}
systemd? ( sys-apps/systemd )"
DOCS=( AUTHORS ChangeLog COPYING NEWS README.markdown README-PLUGINS.markdown
TECHNOTES THANKS )
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" ${PN}
newconfd "${FILESDIR}/${PN}.confd" ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
}
|