diff options
author | Sven Wegener <swegener@gentoo.org> | 2006-08-01 20:34:14 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2006-08-01 20:34:14 +0000 |
commit | 12996bc9e7ac8946a5185460f67c0666ed2ff216 (patch) | |
tree | 646ccffe217ab7924ab350890185d3ec9d9daaa6 /net-irc | |
parent | Applies a patch, yanked from debian, which addresses pop ups not going away. ... (diff) | |
download | gentoo-2-12996bc9e7ac8946a5185460f67c0666ed2ff216.tar.gz gentoo-2-12996bc9e7ac8946a5185460f67c0666ed2ff216.tar.bz2 gentoo-2-12996bc9e7ac8946a5185460f67c0666ed2ff216.zip |
Slightly change the configure logic.
(Portage version: 2.1.1_pre4-r1)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/weechat/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/weechat/weechat-0.1.9.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/net-irc/weechat/ChangeLog b/net-irc/weechat/ChangeLog index e31ce1ca693d..4cc1e0ef96a6 100644 --- a/net-irc/weechat/ChangeLog +++ b/net-irc/weechat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/weechat # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.31 2006/07/01 14:01:59 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.32 2006/08/01 20:34:14 swegener Exp $ + + 01 Aug 2006; Sven Wegener <swegener@gentoo.org> weechat-0.1.9.ebuild: + Slightly change the configure logic. *weechat-0.1.9 (01 Jul 2006) diff --git a/net-irc/weechat/weechat-0.1.9.ebuild b/net-irc/weechat/weechat-0.1.9.ebuild index 333242a25657..7e8b74825039 100644 --- a/net-irc/weechat/weechat-0.1.9.ebuild +++ b/net-irc/weechat/weechat-0.1.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.1.9.ebuild,v 1.1 2006/07/01 14:01:59 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.1.9.ebuild,v 1.2 2006/08/01 20:34:14 swegener Exp $ DESCRIPTION="Portable and multi-interface IRC client." HOMEPAGE="http://weechat.flashtux.org/" @@ -19,8 +19,11 @@ DEPEND="sys-libs/ncurses ssl? ( net-libs/gnutls )" src_compile() { + # The qt and gtk frontends are not usable, so they're disabled econf \ - --enable-curses \ + --enable-ncurses \ + --disable-qt \ + --disable-gtk \ $(use_enable perl) \ $(use_enable python) \ $(use_enable ruby) \ |