blob: 01380bd2182801eb20cd363a8e9f373214de07d1 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.13.2.ebuild,v 1.3 2013/02/21 18:39:07 zmedico Exp $
EAPI=4
inherit eutils libtool toolchain-funcs
DESCRIPTION="BitTorrent library written in C++ for *nix"
HOMEPAGE="http://libtorrent.rakshasa.no/"
SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
IUSE="debug ipv6 ssl"
RDEPEND="
>=dev-libs/libsigc++-2.2.2:2
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
# epatch "${FILESDIR}"/download_constructor.diff
elibtoolize
}
src_configure() {
# the configure check for posix_fallocate is wrong.
# reported upstream as Ticket 2416.
local myconf
echo "int main(){return posix_fallocate();}" > "${T}"/posix_fallocate.c
if $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${T}"/posix_fallocate.c -o /dev/null 2>/dev/null ; then
myconf="--with-posix-fallocate"
else
myconf="--without-posix-fallocate"
fi
# configure needs bash or script bombs out on some null shift, bug #291229
CONFIG_SHELL=${BASH} econf \
--disable-dependency-tracking \
--enable-aligned \
$(use_enable debug) \
$(use_enable ipv6) \
$(use_enable ssl openssl) \
${myconf}
}
|