blob: 59e211180578d0ca7590b177b7e3cd30dcc4235c (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.0.34.ebuild,v 1.3 2009/02/13 16:11:24 ranger Exp $
EAPI=1
inherit eutils
DESCRIPTION="Anonymizing overlay network for TCP"
HOMEPAGE="http://tor.eff.org"
MY_PV=${PV/_/-}
SRC_URI="http://tor.eff.org/dist/${PN}-${MY_PV}.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ppc64 sparc ~x86 ~x86-fbsd"
IUSE="+bundledlibevent debug"
DEPEND="dev-libs/openssl
>=dev-libs/libevent-1.2"
RDEPEND="${DEPEND}
net-proxy/tsocks"
pkg_setup() {
enewgroup tor
enewuser tor -1 -1 /var/lib/tor tor
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/torrc.sample-0.1.2.6.patch
epatch "${FILESDIR}"/${PN}-0.2.0.30-logrotate.patch
# Normally tor uses a bundled libevent fragment to provide
# asynchronous DNS requests. This is generally a bad idea, but at
# the moment the official libevent does not have the 0x20 hack, so
# anonymity is higher with the bundled variant. Remove patch as
# soon as upstream has installed the autoconf option to use
# system's libevent (0.2.1 or later)
# See http://bugs.noreply.org/flyspray/index.php?do=details&id=920
# for upstream's report
use bundledlibevent || epatch "${FILESDIR}"/${PN}-0.2.0.33-no-internal-libevent.patch
}
src_compile() {
econf $(use_enable debug)
emake || die
}
src_install() {
newinitd "${FILESDIR}"/tor.initd-r4 tor
emake DESTDIR="${D}" install || die
keepdir /var/{lib,log,run}/tor
dodoc README ChangeLog AUTHORS ReleaseNotes \
doc/{HACKING,TODO} \
doc/spec/*.txt
fperms 750 /var/lib/tor /var/log/tor
fperms 755 /var/run/tor
fowners tor:tor /var/lib/tor /var/log/tor /var/run/tor
sed -e "s:/lib::" \
-e "s:/rc.d::" \
-e "s:\\*:\\*.:" \
-e "s:sharedscripts:create 0640 tor tor\n\tsharedscripts:" -i contrib/tor.logrotate || die
insinto /etc/logrotate.d
newins contrib/tor.logrotate tor
# allow the tor user more open files to avoid errors, see bug 251171
insinto /etc/security/limits.d/
doins "${FILESDIR}"/tor.conf
}
pkg_postinst() {
elog "You must create /etc/tor/torrc, you can use the sample that is in that directory"
elog "To have privoxy and tor working together you must add:"
elog "forward-socks4a / localhost:9050 ."
elog "(notice the . at the end of the line)"
elog "to /etc/privoxy/config"
if ! use bundledlibevent; then
elog
elog "Please be aware that using the system's libevent library will lower your anonymity"
elog "a little bit. If you rely on it, please enable USE=bundledlibevent."
fi
}
|