diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-02-14 15:31:46 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-02-14 15:31:46 +0000 |
commit | 33f3bc0536c013a3c61567ead4932fe17efceb1c (patch) | |
tree | 5da81331283a475cb512c5f3b56204e6d6987a5a /net-libs | |
parent | gpodder bump (diff) | |
download | gentoo-2-33f3bc0536c013a3c61567ead4932fe17efceb1c.tar.gz gentoo-2-33f3bc0536c013a3c61567ead4932fe17efceb1c.tar.bz2 gentoo-2-33f3bc0536c013a3c61567ead4932fe17efceb1c.zip |
Fix built_with_use, thanks to Constantine D. Kardaris <ckardaris at gmail dot com>, bug 166384
(Portage version: 2.1.2-r9)
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 | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog index 2c99038e1f16..b930b81f8adb 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.2 2007/02/13 20:50:38 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.3 2007/02/14 15:31:46 armin76 Exp $ + + 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 + dot com>, bug 166384 13 Feb 2007; Raúl Porcel <armin76@gentoo.org> rb_libtorrent-0.11.ebuild: x86 stable diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild index 059c882a4bb2..e665a5f59b11 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.2 2007/02/13 20:50:38 armin76 Exp $ +# $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 $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -25,8 +25,9 @@ RDEPEND="${DEPEND}" pkg_setup() { # We need boost built with threads - if ! built_with_use "dev-libs/boost" threads && ! built_with_use "dev-libs/boost" threadsonly ; then - die "rb_libtorrent needs dev-libs/boost built with threads or threadsonly USE flag" + if ! 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" fi } |