diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-06-22 02:44:23 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-06-22 02:44:23 +0300 |
commit | 27eebba5f5ecc1b8079a8c9912c9b9403e86c3f8 (patch) | |
tree | 12a4a818e7836e00a2f77416128b0d4595d44838 | |
parent | f7d135cd88f1fa426b7ba8a7acebfc3225675d54 (diff) |
modified: net-misc/tor/tor-9999.ebuild
-rw-r--r-- | net-misc/tor/tor-9999.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/net-misc/tor/tor-9999.ebuild b/net-misc/tor/tor-9999.ebuild index eb24d6a..e8daa71 100644 --- a/net-misc/tor/tor-9999.ebuild +++ b/net-misc/tor/tor-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.0.31.ebuild,v 1.6 2008/11/14 12:43:56 fmccor Exp $ -inherit eutils subversion +inherit eutils git DESCRIPTION="Anonymizing overlay network for TCP" HOMEPAGE="http://tor.eff.org" @@ -10,10 +10,8 @@ MY_PV=${PV/_/-} SRC_URI="" S="${WORKDIR}/${P/_/}" -ESVN_REPO_URI="https://svn.torproject.org/svn/tor/trunk/" -ESVN_STORE_DIR="${DISTDIR}/svn-src" -ESVN_PROJECT="${PN/-svn}" -ESVN_BOOTSTRAP="./autogen.sh" +EGIT_REPO_URI="git://git.torproject.org/git/tor" +EGIT_BOOTSTRAP="./autogen.sh" @@ -34,14 +32,14 @@ pkg_setup() { src_unpack() { # unpack ${A} - subversion_src_unpack + git_src_unpack cd "${S}" epatch "${FILESDIR}"/torrc.sample-0.1.2.6.patch # epatch "${FILESDIR}"/${PN}-0.2.0.30-logrotate.patch } src_compile() { - econf $(use_enable debug) + econf $(use_enable debug) --disable-asciidoc emake || die } |