summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-06-20 11:47:11 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-06-20 11:47:11 +0000
commit56e0ceb78fa0a3f7b5d9ea6e13fd48bdf690ef60 (patch)
tree2ff9def2729a59e732578c0f8e4cdd31aa05fc71
parentversion bump for bug 323873 by Jack Lloyd <lloyd AT randombit DOT net> (diff)
downloadgentoo-2-56e0ceb78fa0a3f7b5d9ea6e13fd48bdf690ef60.tar.gz
gentoo-2-56e0ceb78fa0a3f7b5d9ea6e13fd48bdf690ef60.tar.bz2
gentoo-2-56e0ceb78fa0a3f7b5d9ea6e13fd48bdf690ef60.zip
Fix forced as-needed. Bug #315213
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r--net-libs/libbt/ChangeLog7
-rw-r--r--net-libs/libbt/libbt-1.05.ebuild9
2 files changed, 11 insertions, 5 deletions
diff --git a/net-libs/libbt/ChangeLog b/net-libs/libbt/ChangeLog
index 578f231815d7..85097d9fbee6 100644
--- a/net-libs/libbt/ChangeLog
+++ b/net-libs/libbt/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libbt
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libbt/ChangeLog,v 1.14 2009/01/14 05:20:07 vapier Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libbt/ChangeLog,v 1.15 2010/06/20 11:47:11 hwoarang Exp $
+
+ 20 Jun 2010; Markos Chandras <hwoarang@gentoo.org> libbt-1.05.ebuild:
+ Fix forced as-needed. Bug #315213
14 Jan 2009; Mike Frysinger <vapier@gentoo.org>
+files/libbt-1.05-build.patch, libbt-1.05.ebuild:
diff --git a/net-libs/libbt/libbt-1.05.ebuild b/net-libs/libbt/libbt-1.05.ebuild
index 3a45263a8efa..6968bf820675 100644
--- a/net-libs/libbt/libbt-1.05.ebuild
+++ b/net-libs/libbt/libbt-1.05.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libbt/libbt-1.05.ebuild,v 1.4 2009/01/14 05:20:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libbt/libbt-1.05.ebuild,v 1.5 2010/06/20 11:47:11 hwoarang Exp $
-inherit eutils
+inherit eutils autotools
DESCRIPTION="implementation of the BitTorrent core protocols in C"
HOMEPAGE="http://libbt.sourceforge.net/"
@@ -23,6 +23,9 @@ src_unpack() {
epatch "${FILESDIR}"/${P}-build.patch #248034
epatch "${FILESDIR}"/${PV}-btlist.patch # 152489
sed -i -e '/CFLAGS/s|:=|+=|' src/Makefile.in || die
+ # fix force as-needed. Bug #315213
+ sed -i -e "/^LIBS/s:-lm:& -lcrypto:" src/Makefile.in || die
+ eautoreconf
}
src_install() {