Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kpty/
Date: Thu, 13 Oct 2016 10:55:21
Message-Id: 1476356107.e1183b79bd06296206a6b0d31b56fb47bbfae0bd.kensington@gentoo
1 commit: e1183b79bd06296206a6b0d31b56fb47bbfae0bd
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 13 10:55:03 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 13 10:55:07 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e1183b79
7
8 kde-frameworks/kpty: ensure utempter is found
9
10 Upstream switched from using libutempter to calling the utempter binary
11 directly. Gentoo installs this binary to a path that kpty does not check, so
12 its location must be specified explicitly.
13
14 Gentoo-bug: 596846
15 Upstream-commit: 65a688be0b2deaf58414e1f19601a15554beb143
16
17 Package-Manager: portage-2.3.2
18
19 kde-frameworks/kpty/kpty-9999.ebuild | 8 ++++++++
20 1 file changed, 8 insertions(+)
21
22 diff --git a/kde-frameworks/kpty/kpty-9999.ebuild b/kde-frameworks/kpty/kpty-9999.ebuild
23 index 96ccb6e..56b1a2f 100644
24 --- a/kde-frameworks/kpty/kpty-9999.ebuild
25 +++ b/kde-frameworks/kpty/kpty-9999.ebuild
26 @@ -17,3 +17,11 @@ DEPEND="
27 sys-libs/libutempter
28 "
29 RDEPEND="${DEPEND}"
30 +
31 +src_configure() {
32 + local mycmakeargs=(
33 + -DUTEMPTER_EXECUTABLE=/usr/sbin/utempter
34 + )
35 +
36 + kde5_src_configure
37 +}