diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-05-30 17:36:04 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-05-30 17:36:04 +0000 |
commit | 65180e2a5e9c4843a94dfb0f1d5a03fad73f6dd2 (patch) | |
tree | 0c63d15d0427c0ccb0be68587d6de0c95a50e3c1 /net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild | |
parent | Remove old ebuild. (diff) | |
download | historical-65180e2a5e9c4843a94dfb0f1d5a03fad73f6dd2.tar.gz historical-65180e2a5e9c4843a94dfb0f1d5a03fad73f6dd2.tar.bz2 historical-65180e2a5e9c4843a94dfb0f1d5a03fad73f6dd2.zip |
Re-fix threads use-flag check if >boost-1.33, bug 180322
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild')
-rw-r--r-- | net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild index 25c1a44a8a9d..a8868eb5a7e4 100644 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild +++ b/net-libs/rb_libtorrent/rb_libtorrent-0.12.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.12.ebuild,v 1.1 2007/05/04 15:52:45 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild,v 1.2 2007/05/30 17:36:04 armin76 Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -24,7 +24,7 @@ RDEPEND="${DEPEND}" pkg_setup() { # We need boost built with threads - if has_version "<dev-libs/boost-1.34" && \ + if ! has_version ">=dev-libs/boost-1.34_pre20061214" && \ ! built_with_use "dev-libs/boost" threads; then eerror "${PN} needs dev-libs/boost built with threads USE flag" die "dev-libs/boost is built without threads USE flag" |