summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@gentoo.org>2011-02-27 17:00:49 +0000
committerTomás Touceda <chiiph@gentoo.org>2011-02-27 17:00:49 +0000
commit4980a033d049e7f0f7072fa77ebe2479a1f3b095 (patch)
treeed0b03c55c9d2be32afa929362450b7b82d08654 /net-misc
parentAdd ~alpha/~ia64/~s390/~sh/~sparc wrt #345317 (diff)
downloadgentoo-2-4980a033d049e7f0f7072fa77ebe2479a1f3b095.tar.gz
gentoo-2-4980a033d049e7f0f7072fa77ebe2479a1f3b095.tar.bz2
gentoo-2-4980a033d049e7f0f7072fa77ebe2479a1f3b095.zip
Version bump and clean up.
(Portage version: 2.2.0_alpha22/cvs/Linux i686)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/tor/ChangeLog8
-rw-r--r--net-misc/tor/tor-0.2.1.30.ebuild (renamed from net-misc/tor/tor-0.2.1.29.ebuild)23
2 files changed, 22 insertions, 9 deletions
diff --git a/net-misc/tor/ChangeLog b/net-misc/tor/ChangeLog
index a39764ccb725..f485662c5989 100644
--- a/net-misc/tor/ChangeLog
+++ b/net-misc/tor/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/tor
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.237 2011/02/12 17:50:38 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.238 2011/02/27 17:00:49 chiiph Exp $
+
+*tor-0.2.1.30 (27 Feb 2011)
+
+ 27 Feb 2011; Tomas Touceda <chiiph@gentoo.org> -tor-0.2.1.29.ebuild,
+ +tor-0.2.1.30.ebuild:
+ Version bump and clean up.
12 Feb 2011; Raúl Porcel <armin76@gentoo.org> tor-0.2.1.29-r1.ebuild:
sparc stable wrt #351920
diff --git a/net-misc/tor/tor-0.2.1.29.ebuild b/net-misc/tor/tor-0.2.1.30.ebuild
index c28cfc245dda..1a2ef2d153ab 100644
--- a/net-misc/tor/tor-0.2.1.29.ebuild
+++ b/net-misc/tor/tor-0.2.1.30.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.1.29.ebuild,v 1.6 2011/01/24 21:12:49 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.1.30.ebuild,v 1.1 2011/02/27 17:00:49 chiiph Exp $
EAPI=2
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug"
DEPEND="dev-libs/openssl
@@ -55,13 +55,15 @@ src_install() {
keepdir /var/{lib,log,run}/tor
dodoc README ChangeLog AUTHORS ReleaseNotes \
- doc/{HACKING,TODO} \
- doc/spec/*.txt
+ doc/{HACKING,TODO}
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
+ insinto /etc/tor/
+ doins "${FILESDIR}"/torrc
+
insinto /etc/logrotate.d
newins contrib/tor.logrotate tor
@@ -71,9 +73,14 @@ src_install() {
}
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
+ elog "We created a configuration file for tor, /etc/tor/torrc, but you can"
+ elog "change it according to your needs. Use the torrc.sample that is in"
+ elog "that directory as a guide. Also, to have privoxy work with tor"
+ elog "just add the following line"
+ elog
elog "forward-socks4a / localhost:9050 ."
- elog "(notice the . at the end of the line)"
- elog "to /etc/privoxy/config"
+ elog
+ elog "to /etc/privoxy/config. Notice the . at the end!"
+ elog
}