Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: libtorrent-0.12.6.ebuild ChangeLog
Date: Tue, 22 Dec 2009 20:07:47
Message-Id: E1NNB1A-0007aa-Fi@stork.gentoo.org
1 ssuominen 09/12/22 20:07:40
2
3 Modified: ChangeLog
4 Added: libtorrent-0.12.6.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc60/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.147 net-libs/libtorrent/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.147&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.147&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.146&r2=1.147
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
19 retrieving revision 1.146
20 retrieving revision 1.147
21 diff -u -r1.146 -r1.147
22 --- ChangeLog 9 Dec 2009 19:27:47 -0000 1.146
23 +++ ChangeLog 22 Dec 2009 20:07:40 -0000 1.147
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libtorrent
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.146 2009/12/09 19:27:47 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.147 2009/12/22 20:07:40 ssuominen Exp $
29 +
30 +*libtorrent-0.12.6 (22 Dec 2009)
31 +
32 + 22 Dec 2009; Samuli Suominen <ssuominen@g.o>
33 + +libtorrent-0.12.6.ebuild, +files/libtorrent-0.12.6-gcc44.patch:
34 + Version bump.
35
36 09 Dec 2009; nixnut <nixnut@g.o> libtorrent-0.12.5.ebuild:
37 ppc stable #291036
38
39
40
41 1.1 net-libs/libtorrent/libtorrent-0.12.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libtorrent-0.12.6.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.6.ebuild,v 1.1 2009/12/22 20:07:40 ssuominen Exp $
51
52 EAPI=2
53 inherit eutils libtool
54
55 DESCRIPTION="LibTorrent is a BitTorrent library written in C++ for *nix."
56 HOMEPAGE="http://libtorrent.rakshasa.no/"
57 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
62 IUSE="debug ipv6 ssl"
63
64 RDEPEND=">=dev-libs/libsigc++-2.2.2:2
65 ssl? ( dev-libs/openssl )"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig"
68
69 src_prepare() {
70 epatch "${FILESDIR}"/${P}-gcc44.patch
71 elibtoolize
72 }
73
74 src_configure() {
75 econf \
76 --disable-dependency-tracking \
77 --enable-aligned \
78 $(use_enable debug) \
79 $(use_enable ipv6) \
80 $(use_enable ssl openssl) \
81 --with-posix-fallocate
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86 dodoc AUTHORS NEWS README
87 }