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 | 5531cd1c7ba1959ff4fde6305449ac01ee93b233 (patch) | |
tree | d5d93cd7e911d02eea051f2cf0f2ed823421640e /net-libs/rb_libtorrent | |
parent | New upstream version. (diff) | |
download | historical-5531cd1c7ba1959ff4fde6305449ac01ee93b233.tar.gz historical-5531cd1c7ba1959ff4fde6305449ac01ee93b233.tar.bz2 historical-5531cd1c7ba1959ff4fde6305449ac01ee93b233.zip |
Use -mt prefix for the boost libs, thanks to Peter Koeleman <peter@peerweb.nl> for reporting, bug 170887
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'net-libs/rb_libtorrent')
-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" } |