Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 597642 | Differences between
and this patch

Collapse All | Expand All

(-)a/net-proxy/torsocks/torsocks-2.2.0.ebuild (-1 / +44 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2016 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Id$
4
5
EAPI=6
6
7
inherit autotools versionator
8
9
MY_PV="$(replace_version_separator 3 -)"
10
MY_PF="${PN}-${MY_PV}"
11
S=${WORKDIR}/${MY_PF}
12
13
DESCRIPTION="Use most socks-friendly applications with Tor"
14
HOMEPAGE="https://github.com/dgoulet/torsocks"
15
SRC_URI="https://github.com/dgoulet/torsocks/archive/v${MY_PV}.tar.gz -> ${MY_PF}.tar.gz"
16
17
LICENSE="GPL-2"
18
SLOT="0"
19
KEYWORDS="~amd64 ~arm ~x86"
20
IUSE="static-libs"
21
22
# We do not depend on tor which might be running on a different box
23
DEPEND=""
24
RDEPEND="${DEPEND}"
25
26
DOCS=( ChangeLog README.md doc/notes/DEBUG doc/socks/{SOCKS5,socks-extensions.txt} )
27
28
src_prepare() {
29
	sed -i -e "/dist_doc_DATA/s/^/#/" Makefile.am doc/Makefile.am || die
30
31
	default
32
	eautoreconf
33
}
34
35
src_configure() {
36
	econf $(use_enable static-libs static)
37
}
38
39
src_install() {
40
	default
41
42
	# Remove libtool .la files
43
	find "${D}" -name '*.la' -delete || die
44
}

Return to bug 597642