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 90890138351 for ; Wed, 26 Feb 2020 11:49:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9E9DE0921; Wed, 26 Feb 2020 11:49:32 +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 AB530E0921 for ; Wed, 26 Feb 2020 11:49:32 +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 64AAB34F34F for ; Wed, 26 Feb 2020 11:49:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8118715A for ; Wed, 26 Feb 2020 11:49:27 +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: <1582717748.34588839f4fb5889eb9d1f2de53efd361506e8c4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libiptcdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libiptcdata/libiptcdata-1.0.5.ebuild X-VCS-Directories: media-libs/libiptcdata/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 34588839f4fb5889eb9d1f2de53efd361506e8c4 X-VCS-Branch: master Date: Wed, 26 Feb 2020 11:49:27 +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: 72bf37f3-55fd-4027-890e-f54da6e63065 X-Archives-Hash: d750e4ba0217305c0ed7582d5e7e98b8 commit: 34588839f4fb5889eb9d1f2de53efd361506e8c4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Feb 26 11:14:55 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 26 11:49:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34588839 media-libs/libiptcdata: Minor ebuild style++ Sort dependencies. Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libiptcdata/libiptcdata-1.0.5.ebuild | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild b/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild index e83c9fc1c5b..0aaea7ec832 100644 --- a/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild +++ b/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild @@ -16,11 +16,15 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="doc examples nls python" -RDEPEND="python? ( ${PYTHON_DEPS} ) - nls? ( virtual/libintl )" +RDEPEND=" + nls? ( virtual/libintl ) + python? ( ${PYTHON_DEPS} ) +" DEPEND="${RDEPEND}" -BDEPEND="nls? ( >=sys-devel/gettext-0.13.1 ) - doc? ( >=dev-util/gtk-doc-1 )" +BDEPEND=" + doc? ( >=dev-util/gtk-doc-1 ) + nls? ( >=sys-devel/gettext-0.13.1 ) +" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -29,9 +33,11 @@ pkg_setup() { } src_configure () { - local myeconfargs=( $(use_enable nls) + local myeconfargs=( + $(use_enable nls) $(use_enable python) - $(use_enable doc gtk-doc) ) + $(use_enable doc gtk-doc) + ) econf "${myeconfargs[@]}" }