Gentoo Archives: gentoo-commits

From: "Chí-Thanh Christopher Nguyễn" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/dvtm/
Date: Thu, 29 Mar 2018 09:29:37
Message-Id: 1522315761.45e3377c3000b7cab7750d5ba8ee0d0c3c39d925.chithanh@gentoo
1 commit: 45e3377c3000b7cab7750d5ba8ee0d0c3c39d925
2 Author: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 29 09:29:21 2018 +0000
4 Commit: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 09:29:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e3377c
7
8 app-misc/dvtm: dev-libs/ncurses blocker needs to be run-time, not build-time
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-misc/dvtm/dvtm-0.15-r2.ebuild | 10 ++++++----
13 1 file changed, 6 insertions(+), 4 deletions(-)
14
15 diff --git a/app-misc/dvtm/dvtm-0.15-r2.ebuild b/app-misc/dvtm/dvtm-0.15-r2.ebuild
16 index 85881fa2195..bc1f7d84a70 100644
17 --- a/app-misc/dvtm/dvtm-0.15-r2.ebuild
18 +++ b/app-misc/dvtm/dvtm-0.15-r2.ebuild
19 @@ -19,12 +19,14 @@ fi
20 LICENSE="MIT"
21 SLOT="0"
22
23 -RDEPEND="sys-libs/ncurses:0=[unicode]"
24 -DEPEND="
25 - ${RDEPEND}
26 - virtual/pkgconfig
27 +COMMON_DEPEND="sys-libs/ncurses:0=[unicode]"
28 +RDEPEND="${COMMON_DEPEND}
29 !>=sys-libs/ncurses-6.1
30 "
31 +DEPEND="${COMMON_DEPEND}
32 + virtual/pkgconfig
33 +"
34 +
35 PATCHES=(
36 "${FILESDIR}"/${PN}-0.15-gentoo.patch
37 )