summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2012-11-09 20:35:33 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2012-11-09 20:35:33 +0000
commit4bb2776501083594fed86c8e8bbb1cd5ef2f2fd6 (patch)
treecfafdb33be9e63be240f6c5ada38aeece175698a /net-p2p
parent>=sys-libs/libutempter-1.1.5 is provided by >=sys-freebsd/freebsd-lib-9.0 on ... (diff)
downloadgentoo-2-4bb2776501083594fed86c8e8bbb1cd5ef2f2fd6.tar.gz
gentoo-2-4bb2776501083594fed86c8e8bbb1cd5ef2f2fd6.tar.bz2
gentoo-2-4bb2776501083594fed86c8e8bbb1cd5ef2f2fd6.zip
No need to specify a boost version anymore, as boost is unslotted; also add a dependency on the multithread USE flag for 1.52.0-r1 and later.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/bitcoin-qt/ChangeLog6
-rw-r--r--net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild11
2 files changed, 7 insertions, 10 deletions
diff --git a/net-p2p/bitcoin-qt/ChangeLog b/net-p2p/bitcoin-qt/ChangeLog
index f94a95df1902..053e6b54473f 100644
--- a/net-p2p/bitcoin-qt/ChangeLog
+++ b/net-p2p/bitcoin-qt/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-p2p/bitcoin-qt
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/ChangeLog,v 1.45 2012/10/29 02:20:08 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/ChangeLog,v 1.46 2012/11/09 20:35:33 flameeyes Exp $
+
+ 09 Nov 2012; Diego E. Pettenò <flameeyes@gentoo.org> bitcoin-qt-0.7.1.ebuild:
+ No need to specify a boost version anymore, as boost is unslotted; also add a
+ dependency on the multithread USE flag for 1.52.0-r1 and later.
29 Oct 2012; Anthony G. Basile <blueness@gentoo.org> bitcoin-qt-0.6.3.ebuild,
bitcoin-qt-0.6.4_rc3.ebuild, bitcoin-qt-0.7.0.ebuild:
diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild
index 0deca3299ef4..dc7739ecb16d 100644
--- a/net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild
+++ b/net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 2010-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild,v 1.1 2012/10/29 01:58:37 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/bitcoin-qt-0.7.1.ebuild,v 1.2 2012/11/09 20:35:33 flameeyes Exp $
EAPI=4
@@ -22,7 +22,7 @@ KEYWORDS="~amd64 ~arm ~x86"
IUSE="$IUSE 1stclassmsg dbus +eligius ipv6 +qrcode upnp"
RDEPEND="
- >=dev-libs/boost-1.41.0
+ >=dev-libs/boost-1.41.0[threads(+)]
dev-libs/openssl[-bindist]
qrcode? (
media-gfx/qrencode
@@ -76,7 +76,6 @@ src_prepare() {
src_configure() {
OPTS=()
- local BOOST_PKG BOOST_VER
use dbus && OPTS+=("USE_DBUS=1")
if use upnp; then
@@ -91,12 +90,6 @@ src_configure() {
OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")")
OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}")
- BOOST_PKG="$(best_version 'dev-libs/boost')"
- BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
- BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
- OPTS+=("BOOST_INCLUDE_PATH=/usr/include/boost-${BOOST_VER}")
- OPTS+=("BOOST_LIB_SUFFIX=-${BOOST_VER}")
-
eqmake4 "${PN}.pro" "${OPTS[@]}"
}