From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A7999138334 for ; Tue, 12 Feb 2019 21:22:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFF4CE0895; Tue, 12 Feb 2019 21:22:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8731BE0895 for ; Tue, 12 Feb 2019 21:22:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E785A340C53 for ; Tue, 12 Feb 2019 21:22:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6795953A for ; Tue, 12 Feb 2019 21:22:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1550006517.430cca53b9eeefee73ece2e8fc12637816932e32.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/irssi/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/irssi/irssi-9999.ebuild X-VCS-Directories: net-irc/irssi/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 430cca53b9eeefee73ece2e8fc12637816932e32 X-VCS-Branch: master Date: Tue, 12 Feb 2019 21:22:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2ebace7-6da2-4b5e-814c-1973ddd02d49 X-Archives-Hash: 9a8330c04fe44e63f6f81db25abe89e8 commit: 430cca53b9eeefee73ece2e8fc12637816932e32 Author: Lars Wendler gentoo org> AuthorDate: Tue Feb 12 21:21:43 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Feb 12 21:21:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=430cca53 net-irc/irssi: Synce live ebuild. Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> net-irc/irssi/irssi-9999.ebuild | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/net-irc/irssi/irssi-9999.ebuild b/net-irc/irssi/irssi-9999.ebuild index 2afd0cb78e5..d5f740941fc 100644 --- a/net-irc/irssi/irssi-9999.ebuild +++ b/net-irc/irssi/irssi-9999.ebuild @@ -20,8 +20,10 @@ CDEPEND="sys-libs/ncurses:0= >=dev-libs/glib-2.6.0 !libressl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) - otr? ( >=dev-libs/libgcrypt-1.2.0:0= - >=net-libs/libotr-4.1.0 ) + otr? ( + >=dev-libs/libgcrypt-1.2.0:0= + >=net-libs/libotr-4.1.0 + ) perl? ( dev-lang/perl:= ) socks5? ( >=net-proxy/dante-1.1.18 )" @@ -43,18 +45,23 @@ src_prepare() { sed -i -e /^autoreconf/d autogen.sh || die NOCONFIGURE=1 ./autogen.sh || die - eapply_user + default eautoreconf } src_configure() { - econf \ - --with-perl-lib=vendor \ - --enable-true-color \ - $(use_with otr) \ - $(use_with proxy) \ - $(use_with perl) \ + # Disable automagic dependency on dev-libs/libutf8proc (bug #677804) + export ac_cv_lib_utf8proc_utf8proc_version=no + + local myeconfargs=( + --with-perl-lib=vendor + --enable-true-color + $(use_with otr) + $(use_with proxy) + $(use_with perl) $(use_with socks5 socks) + ) + econf "${myeconfargs[@]}" } src_install() {