blob: 2d4f6a59f2c2fcdf6a4cc58654b20c898dbb7fca (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Linux bittorrent client implemented in C++."
HOMEPAGE="http://btg.berlios.de/"
SRC_URI="mirror://berlios/btg/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cppunit debug doc event-callback gtk ncurses session-saving web"
# NB : upnp use flag add clinkcc dependency but clinkcc is not in portage tree
# so this use flag is disabled.
RDEPEND=">=net-libs/rb_libtorrent-0.11
>=dev-libs/boost-1.33
>=dev-libs/libsigc++-2
>=net-libs/gnutls-1.0
dev-util/dialog
ncurses? ( >=sys-libs/ncurses-5 )
gtk? ( >=dev-cpp/gtkmm-2.4 )
web? ( >=dev-lang/php-5 )
cppunit? ( dev-util/cppunit )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_compile() {
if built_with_use "dev-libs/boost" threads || built_with_use "dev-libs/boost" threads-only ; then
BOOST_LIBS="--with-boost-iostreams=boost_iostreams-mt \
--with-boost-filesystem=boost_filesystem-mt \
--with-boost-thread=boost_thread-mt \
--with-boost-date-time=boost_date_time-mt \
--with-boost-program_options=boost_program_options-mt"
einfo "Using threaded Boost libraries"
fi
econf $(use_enable cppunit unittest) \
$(use_enable debug) \
$(use_enable event-callback) \
$(use_enable gtk gui) \
$(use_enable ncurses cli) \
$(use_enable web www) \
$(use_enable web www) \
${BOOST_LIBS} || die "econf failed"
if use doc ; then
emake doxygen || die "emake doxygen failed"
fi
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newinitd "${FILESDIR}/btgd.initd" btgd
newconfd "${FILESDIR}/btgd.confd" btgd
dodoc AUTHORS ChangeLog README TODO
}
|