diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-12-21 21:34:58 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-12-21 21:34:58 +0000 |
commit | de40dc5a251949d412f680f90eeb92e7787b07dc (patch) | |
tree | fa183eb3ea423d7968f1e161f59babee74a59914 /net-proxy/torsocks | |
parent | Stable for HPPA (bug #532984). (diff) | |
download | gentoo-2-de40dc5a251949d412f680f90eeb92e7787b07dc.tar.gz gentoo-2-de40dc5a251949d412f680f90eeb92e7787b07dc.tar.bz2 gentoo-2-de40dc5a251949d412f680f90eeb92e7787b07dc.zip |
Version bump. Fixes bug #530816.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-proxy/torsocks')
-rw-r--r-- | net-proxy/torsocks/ChangeLog | 7 | ||||
-rw-r--r-- | net-proxy/torsocks/torsocks-2.0.0.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/net-proxy/torsocks/ChangeLog b/net-proxy/torsocks/ChangeLog index d7d12d763927..8ac31d5df437 100644 --- a/net-proxy/torsocks/ChangeLog +++ b/net-proxy/torsocks/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-proxy/torsocks # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v 1.15 2014/08/10 20:35:52 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v 1.16 2014/12/21 21:34:58 mrueg Exp $ + +*torsocks-2.0.0 (21 Dec 2014) + + 21 Dec 2014; Manuel Rüger <mrueg@gentoo.org> +torsocks-2.0.0.ebuild: + Version bump. Fixes bug #530816. 10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> torsocks-1.2-r2.ebuild, torsocks-1.2.ebuild, torsocks-2.0.0_rc2.ebuild, torsocks-2.0.0_rc3.ebuild: diff --git a/net-proxy/torsocks/torsocks-2.0.0.ebuild b/net-proxy/torsocks/torsocks-2.0.0.ebuild new file mode 100644 index 000000000000..c7e4611575b5 --- /dev/null +++ b/net-proxy/torsocks/torsocks-2.0.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0.ebuild,v 1.1 2014/12/21 21:34:58 mrueg Exp $ + +EAPI=5 + +inherit autotools eutils multilib versionator + +MY_PV="$(replace_version_separator 3 -)" +MY_PF="${PN}-${MY_PV}" +S=${WORKDIR}/${MY_PF} + +DESCRIPTION="Use most socks-friendly applications with Tor" +HOMEPAGE="http://github.com/dgoulet/torsocks" +SRC_URI="https://github.com/dgoulet/torsocks/archive/v${MY_PV}.tar.gz -> ${MY_PF}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="static-libs" + +# We do not depend on tor which might be running on a different box +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i -e "/dist_doc_DATA/s/^/#/" Makefile.am doc/Makefile.am || die + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + + dodoc ChangeLog README.md TODO doc/notes/DEBUG doc/socks/{SOCKS5,socks-extensions.txt} + + #Remove libtool .la files + cd "${D}"/usr/$(get_libdir)/torsocks + rm -f *.la +} |