summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-03-18 22:00:01 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-03-18 22:00:01 +0000
commit9f7ea175286ecc8859c84173694c1ec6a3b3789e (patch)
tree71e3a3a5e4fe6406197afdfe86f0705d7e93173e /net-libs/rb_libtorrent
parentVersion bump. Includes a couple of new checks for java-check-environment. (diff)
downloadgentoo-2-9f7ea175286ecc8859c84173694c1ec6a3b3789e.tar.gz
gentoo-2-9f7ea175286ecc8859c84173694c1ec6a3b3789e.tar.bz2
gentoo-2-9f7ea175286ecc8859c84173694c1ec6a3b3789e.zip
Make it work with g/fbsd, thanks to welp for testing
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-libs/rb_libtorrent')
-rw-r--r--net-libs/rb_libtorrent/ChangeLog5
-rw-r--r--net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild7
2 files changed, 8 insertions, 4 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog
index 65e52ff90056..11f63b7b2540 100644
--- a/net-libs/rb_libtorrent/ChangeLog
+++ b/net-libs/rb_libtorrent/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/rb_libtorrent
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.5 2007/03/14 17:07:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.6 2007/03/18 22:00:01 armin76 Exp $
+
+ 18 Mar 2007; Raúl Porcel <armin76@gentoo.org> rb_libtorrent-0.11.ebuild:
+ Make it work with g/fbsd, thanks to welp for testing
14 Mar 2007; Raúl Porcel <armin76@gentoo.org> rb_libtorrent-0.11.ebuild:
Use -mt prefix for the boost libs, thanks to Peter Koeleman
diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild
index 1c5430798ab6..f83d8a2f2967 100644
--- a/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild
+++ b/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 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.11.ebuild,v 1.4 2007/03/14 17:07:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild,v 1.5 2007/03/18 22:00:01 armin76 Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
@@ -22,7 +22,6 @@ DEPEND="dev-libs/boost
!net-libs/libtorrent"
RDEPEND="${DEPEND}"
-
pkg_setup() {
# We need boost built with threads
if ! built_with_use "dev-libs/boost" threads; then
@@ -38,7 +37,9 @@ src_compile() {
--with-boost-regex=boost_regex-mt \
--with-boost-program_options=boost_program_options-mt"
- econf $(use_enable debug) ${BOOST_LIBS} || die "econf failed"
+ econf $(use_enable debug) \
+ ${BOOST_LIBS} \
+ LDFLAGS="${LDFLAGS} -pthread" || die "econf failed"
emake || die "emake failed"
}