Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kpty/
Date: Thu, 13 Oct 2016 10:49:16
Message-Id: 1476355741.56e667185f6da23b09ba91685cc4890459475092.kensington@gentoo
1 commit: 56e667185f6da23b09ba91685cc4890459475092
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 13 10:48:49 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 13 10:49:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e66718
7
8 kde-frameworks/kpty: ensure utempter is found
9
10 Gentoo-bug: 596846
11
12 Package-Manager: portage-2.3.2
13
14 kde-frameworks/kpty/kpty-5.27.0-r1.ebuild | 27 +++++++++++++++++++++++++++
15 1 file changed, 27 insertions(+)
16
17 diff --git a/kde-frameworks/kpty/kpty-5.27.0-r1.ebuild b/kde-frameworks/kpty/kpty-5.27.0-r1.ebuild
18 new file mode 100644
19 index 00000000..0bd6669
20 --- /dev/null
21 +++ b/kde-frameworks/kpty/kpty-5.27.0-r1.ebuild
22 @@ -0,0 +1,27 @@
23 +# Copyright 1999-2016 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=6
28 +
29 +inherit kde5
30 +
31 +DESCRIPTION="Framework for pseudo terminal devices and running child processes"
32 +LICENSE="LGPL-2+"
33 +KEYWORDS="~amd64 ~arm ~x86"
34 +IUSE=""
35 +
36 +DEPEND="
37 + $(add_frameworks_dep kcoreaddons)
38 + $(add_frameworks_dep ki18n)
39 + sys-libs/libutempter
40 +"
41 +RDEPEND="${DEPEND}"
42 +
43 +src_configure() {
44 + local mycmakeargs=(
45 + -DUTEMPTER_EXECUTABLE=/usr/sbin/utempter
46 + )
47 +
48 + kde5_src_configure
49 +}