Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: ChangeLog rb_libtorrent-0.13_pre1806_p1.ebuild rb_libtorrent-0.13_pre1791.ebuild
Date: Sun, 09 Dec 2007 21:02:10
Message-Id: E1J1THo-0007JQ-Si@stork.gentoo.org
1 armin76 07/12/09 21:02:04
2
3 Modified: ChangeLog
4 Added: rb_libtorrent-0.13_pre1806_p1.ebuild
5 Removed: rb_libtorrent-0.13_pre1791.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.1.4_rc9)
9
10 Revision Changes Path
11 1.36 net-libs/rb_libtorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 4 Dec 2007 18:50:29 -0000 1.35
24 +++ ChangeLog 9 Dec 2007 21:02:04 -0000 1.36
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/rb_libtorrent
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.35 2007/12/04 18:50:29 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.36 2007/12/09 21:02:04 armin76 Exp $
30 +
31 +*rb_libtorrent-0.13_pre1806_p1 (09 Dec 2007)
32 +
33 + 09 Dec 2007; Raúl Porcel <armin76@g.o>
34 + -rb_libtorrent-0.13_pre1791.ebuild, +rb_libtorrent-0.13_pre1806_p1.ebuild:
35 + Version bump
36
37 *rb_libtorrent-0.13_pre1791 (04 Dec 2007)
38
39
40
41
42 1.1 net-libs/rb_libtorrent/rb_libtorrent-0.13_pre1806_p1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.13_pre1806_p1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.13_pre1806_p1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: rb_libtorrent-0.13_pre1806_p1.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.13_pre1806_p1.ebuild,v 1.1 2007/12/09 21:02:04 armin76 Exp $
52
53 WANT_AUTOCONF="latest"
54 WANT_AUTOMAKE="latest"
55 inherit eutils autotools
56
57 MY_P="${P/rb_/}"
58
59 DESCRIPTION="BitTorrent library written in C++ for *nix."
60 HOMEPAGE="http://www.rasterbar.com/products/libtorrent/"
61 SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
62 S="${WORKDIR}/${MY_P}"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
67 IUSE="debug"
68
69 DEPEND="dev-libs/boost
70 !net-libs/libtorrent"
71 RDEPEND="${DEPEND}"
72
73 pkg_setup() {
74 # We need boost built with threads
75 if ! has_version ">=dev-libs/boost-1.34_pre20061214" && \
76 ! built_with_use "dev-libs/boost" threads; then
77 eerror "${PN} needs dev-libs/boost built with threads USE flag"
78 die "dev-libs/boost is built without threads USE flag"
79 fi
80 }
81
82 src_compile() {
83 BOOST_LIBS="--with-boost-date-time=boost_date_time-mt \
84 --with-boost-filesystem=boost_filesystem-mt \
85 --with-boost-thread=boost_thread-mt \
86 --with-boost-regex=boost_regex-mt \
87 --with-boost-program_options=boost_program_options-mt"
88
89 AT_M4DIR="m4" eautoreconf
90
91 econf $(use_enable debug) \
92 ${BOOST_LIBS} \
93 LDFLAGS="${LDFLAGS} -pthread" || die "econf failed"
94 emake || die "emake failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "emake install failed"
99 dodoc ChangeLog AUTHORS NEWS README
100 }
101
102
103
104 --
105 gentoo-commits@g.o mailing list