blob: 89d9dbe90619649d7080ded403e56c34a4abe1b6 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/btg-1.0.0-r1.ebuild,v 1.2 2009/10/27 11:09:03 ssuominen Exp $
EAPI="2"
inherit eutils autotools flag-o-matic
MY_P="${P/_/-}"
DESCRIPTION="A bittorrent client using rb_libtorrent with a daemon/client model"
HOMEPAGE="http://btg.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="curl debug doc event-callback gtk minimal ncurses session test upnp webinterface"
RDEPEND=">=dev-libs/boost-1.35
dev-libs/expat
dev-libs/libgcrypt
dev-libs/libgpg-error
dev-libs/libtasn1
dev-libs/xmlrpc-epi
net-libs/gnutls
>=net-libs/rb_libtorrent-0.13.1
curl? ( net-misc/curl )
gtk? ( dev-cpp/gtkmm:2.4
dev-libs/libsigc++:2
sci-libs/plotmm
x11-libs/pango )
!minimal? ( dev-util/dialog )
ncurses? ( sys-libs/ncurses )
test? ( dev-util/cppunit )
upnp? ( || ( >=net-libs/rb_libtorrent-0.13 net-libs/clinkcc ) )
webinterface? ( dev-lang/php:5[xml,zlib] virtual/httpd-cgi )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )"
S="${WORKDIR}/${P%_*}"
src_prepare() {
epatch "${FILESDIR}"/${P}-gnutls-pc.patch # bug 275850
epatch "${FILESDIR}"/${P}-gcc44.patch
epatch "${FILESDIR}"/${P}-xmlrpc.patch
eautoreconf
}
src_configure() {
append-flags -pthread
econf LIBS="-lboost_thread -lboost_date_time" \
$(use_enable curl url) \
$(use_enable debug) \
$(use_enable gtk gui) \
$(use_enable ncurses cli) \
$(use_enable event-callback) \
$(use_enable session session-saving) \
$(use_enable test unittest) \
$(use_enable upnp) \
$(use_enable webinterface www) \
$(use_enable !minimal command-list) \
$(use_enable !minimal btg-config) \
--disable-dependency-tracking
}
src_install() {
emake DESTDIR="${D}" install || die 'emake install failed'
dodoc AUTHORS ChangeLog README TODO
newinitd "${FILESDIR}/btgd-init" ${PN}
newconfd "${FILESDIR}/btgd-confd" ${PN}
use gtk && make_desktop_entry btgui "BTG GUI Client" btg "Network;P2P"
}
pkg_postinst() {
enewgroup p2p
enewuser p2p -1 -1 /home/p2p p2p
echo
elog "BTG needs a daemon.ini and client.ini. To create them run btg-config and"
elog "put them in the home of the user running btg (/home/p2p/.btg by default)"
echo
}
|