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 | 3bee9ee3f55932d10b1f1bb9a3f0db2f71f5c753 (patch) | |
tree | b3d34112a6486d3dca52e5c630ce311697ab0bd6 /net-libs | |
parent | Remove old ebuild. (diff) | |
download | gentoo-2-3bee9ee3f55932d10b1f1bb9a3f0db2f71f5c753.tar.gz gentoo-2-3bee9ee3f55932d10b1f1bb9a3f0db2f71f5c753.tar.bz2 gentoo-2-3bee9ee3f55932d10b1f1bb9a3f0db2f71f5c753.zip |
Re-fix threads use-flag check if >boost-1.33, bug 180322
(Portage version: 2.1.2.7)
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 | 4 | ||||
-rw-r--r-- | net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog index 3e6bf08e55e4..46bccd4a5d92 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.12 2007/05/04 15:52:45 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.13 2007/05/30 17:36:04 armin76 Exp $ + + 30 May 2007; Raúl Porcel <armin76@gentoo.org> rb_libtorrent-0.11.ebuild, + rb_libtorrent-0.12.ebuild: + Re-fix threads use-flag check if >boost-1.33, bug 180322 *rb_libtorrent-0.12 (04 May 2007) diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild index 3bfcdf0c7102..0e989a341acb 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.7 2007/04/20 14:56:37 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild,v 1.8 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" 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" |