diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2017-04-26 20:59:13 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2017-04-26 21:00:32 -0400 |
commit | 55bc955a8dc2e443faf9d2a6db1047abca76aaa5 (patch) | |
tree | 6c31579c6f95bbdb6598ec5ad7979ee97c4475f7 /net-vpn/tor/tor-0.3.0.6.ebuild | |
parent | dev-python/munkres: version bump to 1.0.8 (diff) | |
download | gentoo-55bc955a8dc2e443faf9d2a6db1047abca76aaa5.tar.gz gentoo-55bc955a8dc2e443faf9d2a6db1047abca76aaa5.tar.bz2 gentoo-55bc955a8dc2e443faf9d2a6db1047abca76aaa5.zip |
net-vpn/tor: version bump to 0.3.0.6
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-vpn/tor/tor-0.3.0.6.ebuild')
-rw-r--r-- | net-vpn/tor/tor-0.3.0.6.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/net-vpn/tor/tor-0.3.0.6.ebuild b/net-vpn/tor/tor-0.3.0.6.ebuild new file mode 100644 index 000000000000..b103e82a8aed --- /dev/null +++ b/net-vpn/tor/tor-0.3.0.6.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit flag-o-matic readme.gentoo-r1 systemd versionator user + +MY_PV="$(replace_version_separator 4 -)" +MY_PF="${PN}-${MY_PV}" +DESCRIPTION="Anonymizing overlay network for TCP" +HOMEPAGE="http://www.torproject.org/" +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz" +S="${WORKDIR}/${MY_PF}" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" +IUSE="libressl scrypt seccomp selinux systemd tor-hardening test web" + +DEPEND=" + app-text/asciidoc + dev-libs/libevent[ssl] + sys-libs/zlib + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + scrypt? ( app-crypt/libscrypt ) + seccomp? ( sys-libs/libseccomp ) + systemd? ( sys-apps/systemd )" +RDEPEND="${DEPEND} + selinux? ( sec-policy/selinux-tor )" + +PATCHES=( + "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch +) + +DOCS=( README ChangeLog ReleaseNotes doc/HACKING ) + +pkg_setup() { + enewgroup tor + enewuser tor -1 -1 /var/lib/tor tor +} + +src_configure() { + econf \ + --localstatedir="${EPREFIX}/var" \ + --enable-system-torrc \ + --enable-asciidoc \ + $(use_enable scrypt libscrypt) \ + $(use_enable seccomp) \ + $(use_enable systemd) \ + $(use_enable tor-hardening gcc-hardening) \ + $(use_enable tor-hardening linker-hardening) \ + $(use_enable web tor2web-mode) \ + $(use_enable test unittests) \ + $(use_enable test coverage) +} + +src_install() { + default + readme.gentoo_create_doc + + newconfd "${FILESDIR}"/tor.confd tor + newinitd "${FILESDIR}"/tor.initd-r8 tor + systemd_dounit contrib/dist/tor.service + + keepdir /var/lib/tor + + fperms 750 /var/lib/tor + fowners tor:tor /var/lib/tor + + insinto /etc/tor/ + newins "${FILESDIR}"/torrc-r1 torrc +} |