Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gcal/
Date: Tue, 30 Jan 2018 08:12:51
Message-Id: 1517299934.c5d38c1604603e14b166b053bed91888dc7c67f2.ulm@gentoo
1 commit: c5d38c1604603e14b166b053bed91888dc7c67f2
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 30 07:57:21 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 30 08:12:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d38c16
7
8 app-misc/gcal: Add missing dependency on dev-libs/libunistring.
9
10 Bug: https://bugs.gentoo.org/645882
11 Package-Manager: Portage-2.3.20, Repoman-2.3.6
12
13 app-misc/gcal/gcal-4.1.ebuild | 11 +++++++----
14 1 file changed, 7 insertions(+), 4 deletions(-)
15
16 diff --git a/app-misc/gcal/gcal-4.1.ebuild b/app-misc/gcal/gcal-4.1.ebuild
17 index da50405b570..d5a8dbc1d9d 100644
18 --- a/app-misc/gcal/gcal-4.1.ebuild
19 +++ b/app-misc/gcal/gcal-4.1.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 +# Copyright 1999-2018 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26
27 -inherit eutils flag-o-matic toolchain-funcs
28 +inherit flag-o-matic toolchain-funcs
29
30 DESCRIPTION="The GNU Calendar - a replacement for cal"
31 HOMEPAGE="https://www.gnu.org/software/gcal/"
32 @@ -16,15 +16,18 @@ IUSE="ncurses nls unicode"
33
34 DEPEND="
35 app-arch/xz-utils
36 - nls? ( >=sys-devel/gettext-0.17 )"
37 + nls? ( >=sys-devel/gettext-0.17 )
38 + unicode? ( dev-libs/libunistring:= )"
39
40 -RDEPEND="nls? ( virtual/libintl )"
41 +RDEPEND="nls? ( virtual/libintl )
42 + unicode? ( dev-libs/libunistring:= )"
43
44 DOCS=( BUGS LIMITATIONS NEWS README THANKS TODO )
45
46 src_configure() {
47 tc-export CC
48 append-cppflags -D_GNU_SOURCE
49 + use unicode && append-libs -lunistring
50 econf \
51 --disable-rpath \
52 $(use_enable nls) \