diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-03-14 17:07:24 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-03-14 17:07:24 +0000 |
commit | 3d7777f540176cc1313c7eeeedb428e6431fb990 (patch) | |
tree | 48f6851bf51636aaac880c1973652abd3952c3e5 /net-libs | |
parent | New upstream version. (diff) | |
download | gentoo-2-3d7777f540176cc1313c7eeeedb428e6431fb990.tar.gz gentoo-2-3d7777f540176cc1313c7eeeedb428e6431fb990.tar.bz2 gentoo-2-3d7777f540176cc1313c7eeeedb428e6431fb990.zip |
Use -mt prefix for the boost libs, thanks to Peter Koeleman <peter@peerweb.nl> for reporting, bug 170887
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/rb_libtorrent/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog index d7398050a9af..65e52ff90056 100644 --- a/net-libs/rb_libtorrent/ChangeLog +++ b/net-libs/rb_libtorrent/ChangeLog @@ -1,6 +1,10 @@ # 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.4 2007/02/14 15:33:01 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.5 2007/03/14 17:07:24 armin76 Exp $ + + 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 + <peter@peerweb.nl> for reporting, bug 170887 14 Feb 2007; Raúl Porcel <armin76@gentoo.org> rb_libtorrent-0.11.ebuild: Fix built_with_use, thanks to Constantine D. Kardaris <ckardaris at gmail diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild index e665a5f59b11..1c5430798ab6 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.3 2007/02/14 15:31:46 armin76 Exp $ +# $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 $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -32,7 +32,13 @@ pkg_setup() { } src_compile() { - econf $(use_enable debug) || die "econf failed" + BOOST_LIBS="--with-boost-date-time=boost_date_time-mt \ + --with-boost-filesystem=boost_filesystem-mt \ + --with-boost-thread=boost_thread-mt \ + --with-boost-regex=boost_regex-mt \ + --with-boost-program_options=boost_program_options-mt" + + econf $(use_enable debug) ${BOOST_LIBS} || die "econf failed" emake || die "emake failed" } |