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 40B9A138335 for ; Sat, 30 Jun 2018 20:48:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43DBCE08CA; Sat, 30 Jun 2018 20:48:02 +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 11DEEE0871 for ; Sat, 30 Jun 2018 20:48:02 +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 B9DF4335CA9 for ; Sat, 30 Jun 2018 20:48:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C38A35A for ; Sat, 30 Jun 2018 20:47:57 +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: <1530391652.df9add78592074a5cd727447cff7cbb7e57b4de1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/poppler/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/poppler/poppler-0.66.0.ebuild app-text/poppler/poppler-9999.ebuild X-VCS-Directories: app-text/poppler/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: df9add78592074a5cd727447cff7cbb7e57b4de1 X-VCS-Branch: master Date: Sat, 30 Jun 2018 20:47:57 +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: 76c71417-2218-4c76-9225-f31550067a04 X-Archives-Hash: 15c969c9c303c1c321d4d775747426e8 commit: df9add78592074a5cd727447cff7cbb7e57b4de1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 30 20:22:57 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 30 20:47:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9add78 app-text/poppler: Fix cmake warning Closes: https://bugs.gentoo.org/659146 Package-Manager: Portage-2.3.41, Repoman-2.3.9 app-text/poppler/poppler-0.66.0.ebuild | 2 +- app-text/poppler/poppler-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/poppler/poppler-0.66.0.ebuild b/app-text/poppler/poppler-0.66.0.ebuild index 5d2ce10f935..893cc9f7e68 100644 --- a/app-text/poppler/poppler-0.66.0.ebuild +++ b/app-text/poppler/poppler-0.66.0.ebuild @@ -99,7 +99,6 @@ src_configure() { -DWITH_Cairo=$(usex cairo) -DENABLE_LIBCURL=$(usex curl) -DENABLE_CPP=$(usex cxx) - -DWITH_GObjectIntrospection=$(usex introspection) -DWITH_JPEG=$(usex jpeg) -DENABLE_DCTDECODER=$(usex jpeg libjpeg none) -DENABLE_LIBOPENJPEG=$(usex jpeg2k openjpeg2 none) @@ -110,6 +109,7 @@ src_configure() { -DWITH_TIFF=$(usex tiff) -DENABLE_UTILS=$(usex utils) ) + use cairo && mycmakeargs+=( -DWITH_GObjectIntrospection=$(usex introspection) ) cmake-utils_src_configure } diff --git a/app-text/poppler/poppler-9999.ebuild b/app-text/poppler/poppler-9999.ebuild index 5d2ce10f935..893cc9f7e68 100644 --- a/app-text/poppler/poppler-9999.ebuild +++ b/app-text/poppler/poppler-9999.ebuild @@ -99,7 +99,6 @@ src_configure() { -DWITH_Cairo=$(usex cairo) -DENABLE_LIBCURL=$(usex curl) -DENABLE_CPP=$(usex cxx) - -DWITH_GObjectIntrospection=$(usex introspection) -DWITH_JPEG=$(usex jpeg) -DENABLE_DCTDECODER=$(usex jpeg libjpeg none) -DENABLE_LIBOPENJPEG=$(usex jpeg2k openjpeg2 none) @@ -110,6 +109,7 @@ src_configure() { -DWITH_TIFF=$(usex tiff) -DENABLE_UTILS=$(usex utils) ) + use cairo && mycmakeargs+=( -DWITH_GObjectIntrospection=$(usex introspection) ) cmake-utils_src_configure }