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 727051382C5 for ; Sun, 13 May 2018 07:28:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72D7DE0971; Sun, 13 May 2018 07:28:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4E03EE0980 for ; Sun, 13 May 2018 07:28:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 09A5F335C99 for ; Sun, 13 May 2018 07:28:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40948243 for ; Sun, 13 May 2018 07:28:23 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1526196425.18cfe9ffa6718347b5e4823c955be0789232e57f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/terminology/terminology-9999.ebuild X-VCS-Directories: x11-terms/terminology/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 18cfe9ffa6718347b5e4823c955be0789232e57f X-VCS-Branch: master Date: Sun, 13 May 2018 07:28:23 +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-Archives-Salt: 839bf629-fd1e-4251-9934-2604b8832647 X-Archives-Hash: fd9e31540f0fd8e4284355348e3d092c commit: 18cfe9ffa6718347b5e4823c955be0789232e57f Author: Joonas Niilola gmail com> AuthorDate: Sat May 12 02:54:18 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 13 07:27:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18cfe9ff x11-terms/terminology: update -9999 to reflect latest release Updated homepage and added nls USE flag. Closes: https://bugs.gentoo.org/642066 Closes: https://github.com/gentoo/gentoo/pull/8356 Package-Manager: Portage[mgorny]-2.3.33.1 x11-terms/terminology/terminology-9999.ebuild | 36 ++++++++++++++------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/x11-terms/terminology/terminology-9999.ebuild b/x11-terms/terminology/terminology-9999.ebuild index 141d654af24..b8b33368f9b 100644 --- a/x11-terms/terminology/terminology-9999.ebuild +++ b/x11-terms/terminology/terminology-9999.ebuild @@ -1,27 +1,29 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" -MY_P=${P/_/-} - -if [[ "${PV}" != "9999" ]] ; then - SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${MY_P}.tar.xz" - KEYWORDS="~amd64 ~x86" -else - inherit git-r3 - EGIT_REPO_URI="https://git.enlightenment.org/apps/${PN}.git" -fi - -inherit meson +inherit git-r3 meson DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries" -HOMEPAGE="https://www.enlightenment.org/p.php?p=about/terminology" +HOMEPAGE="https://www.enlightenment.org/about-terminology" +EGIT_REPO_URI="https://git.enlightenment.org/apps/${PN}.git" LICENSE="BSD-2" SLOT="0" -IUSE="" +IUSE="nls" + +RDEPEND=">=dev-libs/efl-1.20.0[eet,fontconfig,opengl,X]" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_configure() { + local emesonargs=( + -D nls=$(usex nls true false) + ) -RDEPEND=">=dev-libs/efl-1.18[X]" -DEPEND="${RDEPEND} - virtual/pkgconfig" + meson_src_configure +}