blob: d5b36233ce6e77a3f4e92d9a56d6a003a1e9202c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.15.1.ebuild,v 1.5 2010/12/09 19:35:18 xmw Exp $
EAPI="2"
WANT_AUTOMAKE="1.11.1"
inherit autotools eutils versionator
MY_P=${P/rb_/}
MY_P=${MY_P/torrent/torrent-rasterbar}
S=${WORKDIR}/${MY_P}
DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability"
HOMEPAGE="http://www.rasterbar.com/products/libtorrent/"
SRC_URI="http://libtorrent.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="debug doc examples python"
RESTRICT="test"
DEPEND="|| ( >=dev-libs/boost-1.35
( ~dev-libs/boost-1.34.1 dev-cpp/asio ) )
python? ( >=dev-libs/boost-1.35.0-r5[python] dev-lang/python:2.6[threads] )
>=sys-devel/libtool-2.2
sys-libs/zlib
examples? ( !net-p2p/mldonkey )" #292998
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-ax_pthread_asneeded.patch
eautoreconf
}
src_configure() {
# use multi-threading versions of boost libs
local BOOST_LIBS="--with-boost-system=boost_system-mt \
--with-boost-filesystem=boost_filesystem-mt \
--with-boost-thread=boost_thread-mt \
--with-boost-python=boost_python-mt"
# detect boost version and location, bug 295474
BOOST_PKG="$(best_version ">=dev-libs/boost-1.34.1")"
BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
BOOST_INC="/usr/include/boost-${BOOST_VER}"
BOOST_LIB="/usr/$(get_libdir)/boost-${BOOST_VER}"
local LOGGING
use debug && LOGGING="--with-logging=verbose"
econf $(use_enable debug) \
$(use_enable test tests) \
$(use_enable examples) \
$(use_enable python python-binding) \
--with-zlib=system \
${LOGGING} \
--with-boost=${BOOST_INC} \
--with-boost-libdir=${BOOST_LIB} \
${BOOST_LIBS}
}
src_install() {
emake DESTDIR="${D}" install || die 'emake install failed'
dodoc ChangeLog AUTHORS NEWS README || die 'dodoc failed'
if use doc ; then
dohtml docs/* || die "Could not install HTML documentation"
fi
}
|