summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen de Groot <yngwin@gentoo.org>2010-01-14 16:02:17 +0000
committerBen de Groot <yngwin@gentoo.org>2010-01-14 16:02:17 +0000
commit19c1b20c429bf5d811b090b9726c594b41fbdf9e (patch)
treeea185798c8caeb355e80df6d07a9249802dfe6cd /net-libs
parentMarking heckle-1.4.3-r1 ~ppc for bug 300739 (diff)
downloadgentoo-2-19c1b20c429bf5d811b090b9726c594b41fbdf9e.tar.gz
gentoo-2-19c1b20c429bf5d811b090b9726c594b41fbdf9e.tar.bz2
gentoo-2-19c1b20c429bf5d811b090b9726c594b41fbdf9e.zip
Add a patch to fix as-needed issues (bug 276873).
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/rb_libtorrent/ChangeLog7
-rw-r--r--net-libs/rb_libtorrent/files/rb_libtorrent-0.14.8-as-needed-fix.patch8
-rw-r--r--net-libs/rb_libtorrent/rb_libtorrent-0.14.8-r1.ebuild3
3 files changed, 16 insertions, 2 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog
index 5143f2b7266b..8b0ca90257f0 100644
--- a/net-libs/rb_libtorrent/ChangeLog
+++ b/net-libs/rb_libtorrent/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/rb_libtorrent
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.76 2010/01/14 12:27:02 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.77 2010/01/14 16:02:17 yngwin Exp $
+
+ 14 Jan 2010; Ben de Groot <yngwin@gentoo.org>
+ rb_libtorrent-0.14.8-r1.ebuild,
+ +files/rb_libtorrent-0.14.8-as-needed-fix.patch:
+ Add a patch to fix as-needed issues (bug 276873).
*rb_libtorrent-0.14.8-r1 (14 Jan 2010)
diff --git a/net-libs/rb_libtorrent/files/rb_libtorrent-0.14.8-as-needed-fix.patch b/net-libs/rb_libtorrent/files/rb_libtorrent-0.14.8-as-needed-fix.patch
new file mode 100644
index 000000000000..9ebe4bc80952
--- /dev/null
+++ b/net-libs/rb_libtorrent/files/rb_libtorrent-0.14.8-as-needed-fix.patch
@@ -0,0 +1,8 @@
+--- Makefile.am.orig 2010-01-14 14:36:08.000000000 +0100
++++ Makefile.am 2010-01-14 14:41:49.000000000 +0100
+@@ -1,4 +1,5 @@
+ ACLOCAL_AMFLAGS = -I m4
++LIBADD = -lrt
+ #DISTCHECK_CONFIGURE_FLAGS = --enable-tests
+ SUBDIRS = include zlib src examples test bindings/python
+ EXTRA_DIST = autotool.sh docs/manual.html docs/manual.rst docs/extension_protocol.rst \
diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.14.8-r1.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.14.8-r1.ebuild
index 76136a9aeabe..59bdee36a320 100644
--- a/net-libs/rb_libtorrent/rb_libtorrent-0.14.8-r1.ebuild
+++ b/net-libs/rb_libtorrent/rb_libtorrent-0.14.8-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.8-r1.ebuild,v 1.1 2010/01/14 12:27:02 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.14.8-r1.ebuild,v 1.2 2010/01/14 16:02:17 yngwin Exp $
EAPI="2"
inherit autotools eutils flag-o-matic versionator
@@ -27,6 +27,7 @@ RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/0.14.6-configure-ldflags-fix.patch #290756
+ epatch "${FILESDIR}"/${P}-as-needed-fix.patch #276873
eautoreconf
}