public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: ChangeLog rb_libtorrent-0.14.2.ebuild
@ 2009-03-28 14:46 Raul Porcel (armin76)
  0 siblings, 0 replies; 2+ messages in thread
From: Raul Porcel (armin76) @ 2009-03-28 14:46 UTC (permalink / raw
  To: gentoo-commits

armin76     09/03/28 14:46:57

  Modified:             ChangeLog
  Added:                rb_libtorrent-0.14.2.ebuild
  Log:
  Version bump wrt #263785
  (Portage version: 2.1.6.7/cvs/Linux ia64)

Revision  Changes    Path
1.54                 net-libs/rb_libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	28 Dec 2008 21:35:27 -0000	1.53
+++ ChangeLog	28 Mar 2009 14:46:57 -0000	1.54
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/rb_libtorrent
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.53 2008/12/28 21:35:27 coldwind Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.54 2009/03/28 14:46:57 armin76 Exp $
+
+*rb_libtorrent-0.14.2 (28 Mar 2009)
+
+  28 Mar 2009; Raúl Porcel <armin76@gentoo.org>
+  +rb_libtorrent-0.14.2.ebuild:
+  Version bump wrt #263785
 
 *rb_libtorrent-0.14.1 (28 Dec 2008)
 



1.1                  net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild?rev=1.1&content-type=text/plain

Index: rb_libtorrent-0.14.2.ebuild
===================================================================
# Copyright 1999-2009 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.14.2.ebuild,v 1.1 2009/03/28 14:46:57 armin76 Exp $

inherit eutils autotools

MY_P=${P/rb_/}
MY_P=${MY_P/torrent/torrent-rasterbar}
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="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"

IUSE="debug examples python test"

DEPEND="
	>=dev-libs/boost-1.34
	|| ( >=dev-libs/boost-1.35 dev-cpp/asio )
	sys-libs/zlib
	!net-libs/libtorrent"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${P}-ax_python_path.patch
	eautoreconf
}

src_compile() {
	#use multi-threading versions of boost libs
	local BOOST_LIBS="
		--with-boost-system=boost_system-mt \
		--with-boost-asio=boost_system-mt \
		--with-boost-filesystem=boost_filesystem-mt \
		--with-boost-thread=boost_thread-mt \
		--with-boost-regex=boost_regex-mt \
		--with-boost-python=boost_python-mt \
		--with-boost-program_options=boost_program_options-mt"

	#TODO: We might want to add 'use debug -> --with-logging=verbose
	econf \
		$(use_enable debug) \
		$(use_enable test tests) \
		$(use_enable examples) \
		$(use_enable python python-binding) \
		--with-zlib=system \
		--with-asio=system \
		${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
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: ChangeLog rb_libtorrent-0.14.2.ebuild
@ 2009-03-29 16:55 Raul Porcel (armin76)
  0 siblings, 0 replies; 2+ messages in thread
From: Raul Porcel (armin76) @ 2009-03-29 16:55 UTC (permalink / raw
  To: gentoo-commits

armin76     09/03/29 16:55:21

  Modified:             ChangeLog rb_libtorrent-0.14.2.ebuild
  Log:
  Remove epatch line, its not needed
  (Portage version: 2.1.6.7/cvs/Linux ia64)

Revision  Changes    Path
1.55                 net-libs/rb_libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	28 Mar 2009 14:46:57 -0000	1.54
+++ ChangeLog	29 Mar 2009 16:55:21 -0000	1.55
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/rb_libtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.54 2009/03/28 14:46:57 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.55 2009/03/29 16:55:21 armin76 Exp $
+
+  29 Mar 2009; Raúl Porcel <armin76@gentoo.org>
+  rb_libtorrent-0.14.2.ebuild:
+  Remove epatch line, its not needed
 
 *rb_libtorrent-0.14.2 (28 Mar 2009)
 



1.2                  net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild?r1=1.1&r2=1.2

Index: rb_libtorrent-0.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rb_libtorrent-0.14.2.ebuild	28 Mar 2009 14:46:57 -0000	1.1
+++ rb_libtorrent-0.14.2.ebuild	29 Mar 2009 16:55:21 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 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.14.2.ebuild,v 1.1 2009/03/28 14:46:57 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.2.ebuild,v 1.2 2009/03/29 16:55:21 armin76 Exp $
 
 inherit eutils autotools
 
@@ -25,13 +25,6 @@
 	!net-libs/libtorrent"
 RDEPEND="${DEPEND}"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}"/${P}-ax_python_path.patch
-	eautoreconf
-}
-
 src_compile() {
 	#use multi-threading versions of boost libs
 	local BOOST_LIBS="






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-29 16:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-28 14:46 [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: ChangeLog rb_libtorrent-0.14.2.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-29 16:55 Raul Porcel (armin76)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox