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 3B5FA138334 for ; Mon, 4 Feb 2019 01:14:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D920FE0AF4; Mon, 4 Feb 2019 01:14:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B2B3DE0AF4 for ; Mon, 4 Feb 2019 01:14:18 +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 983B433BF55 for ; Mon, 4 Feb 2019 01:14:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 807CD536 for ; Mon, 4 Feb 2019 01:14:14 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1549242724.d1d2d72d68520427a73ef5075c1530eb8c8ea4d6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/terminology/terminology-1.3.2-r1.ebuild X-VCS-Directories: x11-terms/terminology/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d1d2d72d68520427a73ef5075c1530eb8c8ea4d6 X-VCS-Branch: master Date: Mon, 4 Feb 2019 01:14:14 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5bf0c91b-5385-4342-9ccc-2ef9d4ab2188 X-Archives-Hash: 19f04813a71745850f65c4db24ad405d commit: d1d2d72d68520427a73ef5075c1530eb8c8ea4d6 Author: Joonas Niilola gmail com> AuthorDate: Fri Jan 11 05:02:34 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 4 01:12:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1d2d72d x11-terms/terminology: revbump 1.3.2 to correct dependency Package-Manager: Portage[mgorny]-2.3.51.1 Signed-off-by: Joonas Niilola gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> x11-terms/terminology/terminology-1.3.2-r1.ebuild | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/x11-terms/terminology/terminology-1.3.2-r1.ebuild b/x11-terms/terminology/terminology-1.3.2-r1.ebuild new file mode 100644 index 00000000000..3f81250defd --- /dev/null +++ b/x11-terms/terminology/terminology-1.3.2-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries" +HOMEPAGE="https://www.enlightenment.org/about-terminology" +SRC_URI="https://fau.re/${PN}/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~ppc64 x86" +IUSE="nls" + +RDEPEND=" + || ( dev-libs/efl[gles2] dev-libs/efl[opengl] ) + || ( dev-libs/efl[X] dev-libs/efl[wayland] ) + app-arch/lz4 + dev-libs/efl[eet,fontconfig] +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_configure() { + local emesonargs=( + $(meson_use nls) + ) + + meson_src_configure +}