blob: a893b9d214ffda72a86d6303c1e0fe2157a805b2 (
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
|
# Copyright 1999-2007 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.11.ebuild,v 1.6 2007/03/18 22:19:52 welp Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils autotools
MY_P="${P/rb_/}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="BitTorrent library written in C++ for *nix."
HOMEPAGE="http://www.rasterbar.com/products/libtorrent/"
SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ~x86-fbsd"
IUSE="debug"
DEPEND="dev-libs/boost
!net-libs/libtorrent"
RDEPEND="${DEPEND}"
pkg_setup() {
# We need boost built with threads
if ! built_with_use "dev-libs/boost" threads; then
eerror "${PN} needs dev-libs/boost built with threads USE flag"
die "dev-libs/boost is built without threads USE flag"
fi
}
src_compile() {
BOOST_LIBS="--with-boost-date-time=boost_date_time-mt \
--with-boost-filesystem=boost_filesystem-mt \
--with-boost-thread=boost_thread-mt \
--with-boost-regex=boost_regex-mt \
--with-boost-program_options=boost_program_options-mt"
econf $(use_enable debug) \
${BOOST_LIBS} \
LDFLAGS="${LDFLAGS} -pthread" || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog AUTHORS NEWS README
}
|