Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/torsocks: torsocks-2.0.0_rc3.ebuild ChangeLog
Date: Sun, 26 Jan 2014 17:56:54
Message-Id: 20140126175650.80E372004E@flycatcher.gentoo.org
1 blueness 14/01/26 17:56:50
2
3 Modified: ChangeLog
4 Added: torsocks-2.0.0_rc3.ebuild
5 Log:
6 Version bump, fix bug #493058
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.14 net-proxy/torsocks/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 17 Sep 2013 19:12:35 -0000 1.13
24 +++ ChangeLog 26 Jan 2014 17:56:50 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-proxy/torsocks
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v 1.13 2013/09/17 19:12:35 blueness Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v 1.14 2014/01/26 17:56:50 blueness Exp $
31 +
32 +*torsocks-2.0.0_rc3 (26 Jan 2014)
33 +
34 + 26 Jan 2014; Anthony G. Basile <blueness@g.o>
35 + +files/fix-find-libc.so.patch, +torsocks-2.0.0_rc3.ebuild:
36 + Version bump, fix bug #493058
37
38 17 Sep 2013; Anthony G. Basile <blueness@g.o>
39 torsocks-2.0.0_rc2.ebuild:
40
41
42
43 1.1 net-proxy/torsocks/torsocks-2.0.0_rc3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0_rc3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0_rc3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: torsocks-2.0.0_rc3.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0_rc3.ebuild,v 1.1 2014/01/26 17:56:50 blueness Exp $
53
54 EAPI="5"
55
56 inherit autotools eutils multilib versionator
57
58 MY_PV="$(replace_version_separator 3 -)"
59 MY_PF="${PN}-${MY_PV}"
60 S="${WORKDIR}/${MY_PF}"
61
62 DESCRIPTION="Use most socks-friendly applications with Tor."
63 HOMEPAGE="http://github.com/dgoulet/torsocks"
64 SRC_URI="https://github.com/dgoulet/torsocks/archive/v${MY_PV}.tar.gz -> ${MY_PF}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~arm ~x86"
69 IUSE="static-libs"
70
71 # We do not depend on tor which might be running on a different box
72 DEPEND=""
73 RDEPEND="${DEPEND}"
74
75 src_prepare() {
76 epatch "${FILESDIR}"/fix-docdir-r2.patch
77 epatch "${FILESDIR}"/fix-find-libc.so.patch
78 eautoreconf
79 }
80
81 src_configure() {
82 econf $(use_enable static-libs static)
83 }
84
85 src_install() {
86 default
87
88 dodoc ChangeLog README TODO doc/notes/DEBUG doc/socks/{SOCKS5,socks-extensions.txt}
89
90 #Remove libtool .la files
91 cd "${D}"/usr/$(get_libdir)/torsocks
92 rm -f *.la
93 }