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 5C5031382C5 for ; Tue, 30 Jan 2018 08:12:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A37BDE0BF9; Tue, 30 Jan 2018 08:12:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 7DEACE0BF9 for ; Tue, 30 Jan 2018 08:12:50 +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 6A02B335C30 for ; Tue, 30 Jan 2018 08:12:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAF251C9 for ; Tue, 30 Jan 2018 08:12:47 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1517299934.c5d38c1604603e14b166b053bed91888dc7c67f2.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gcal/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/gcal/gcal-4.1.ebuild X-VCS-Directories: app-misc/gcal/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: c5d38c1604603e14b166b053bed91888dc7c67f2 X-VCS-Branch: master Date: Tue, 30 Jan 2018 08:12:47 +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-Archives-Salt: 3c5adbcc-87c3-4ab5-9b78-47ba0395f57b X-Archives-Hash: a24cabf4e0af62b29a16286050f2406c commit: c5d38c1604603e14b166b053bed91888dc7c67f2 Author: Ulrich Müller gentoo org> AuthorDate: Tue Jan 30 07:57:21 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Jan 30 08:12:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d38c16 app-misc/gcal: Add missing dependency on dev-libs/libunistring. Bug: https://bugs.gentoo.org/645882 Package-Manager: Portage-2.3.20, Repoman-2.3.6 app-misc/gcal/gcal-4.1.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app-misc/gcal/gcal-4.1.ebuild b/app-misc/gcal/gcal-4.1.ebuild index da50405b570..d5a8dbc1d9d 100644 --- a/app-misc/gcal/gcal-4.1.ebuild +++ b/app-misc/gcal/gcal-4.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit eutils flag-o-matic toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="The GNU Calendar - a replacement for cal" HOMEPAGE="https://www.gnu.org/software/gcal/" @@ -16,15 +16,18 @@ IUSE="ncurses nls unicode" DEPEND=" app-arch/xz-utils - nls? ( >=sys-devel/gettext-0.17 )" + nls? ( >=sys-devel/gettext-0.17 ) + unicode? ( dev-libs/libunistring:= )" -RDEPEND="nls? ( virtual/libintl )" +RDEPEND="nls? ( virtual/libintl ) + unicode? ( dev-libs/libunistring:= )" DOCS=( BUGS LIMITATIONS NEWS README THANKS TODO ) src_configure() { tc-export CC append-cppflags -D_GNU_SOURCE + use unicode && append-libs -lunistring econf \ --disable-rpath \ $(use_enable nls) \