diff options
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libbt/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libbt/libbt-1.05.ebuild | 9 |
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() { |