blob: a4f99494975f1cc87be7bc68c994b61d31df6cda (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.0.7.3.ebuild,v 1.2 2004/09/16 02:16:26 pvdabeel Exp $
MY_P=${P/_rc/rc}
DESCRIPTION="Anonymizing overlay network for TCP"
HOMEPAGE="http://www.freehaven.net/tor/"
SRC_URI="http://www.freehaven.net/tor/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc macos ppc-macos"
IUSE=""
DEPEND="dev-libs/openssl"
RDEPEND="!macos? ( net-misc/tsocks )"
S=${WORKDIR}/${MY_P}
src_install() {
make DESTDIR=${D} install || die
dodoc README ChangeLog AUTHORS \
doc/{CLIENTS,FAQ,HACKING,TODO} \
doc/{tor-design.tex,tor-spec.txt}
}
|