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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 49262158649 for ; Sat, 13 May 2023 09:16:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CEF5E0876; Sat, 13 May 2023 09:16:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CD36E0876 for ; Sat, 13 May 2023 09:16:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3978B335D66 for ; Sat, 13 May 2023 09:16:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D699A5A for ; Sat, 13 May 2023 09:16:39 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1683969124.a848b646f698961cd14c8528e13b4f2d1ca0c00f.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vips/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vips/vips-8.14.2.ebuild X-VCS-Directories: media-libs/vips/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: a848b646f698961cd14c8528e13b4f2d1ca0c00f X-VCS-Branch: master Date: Sat, 13 May 2023 09:16:39 +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: 3bc27f8e-e0e0-4ce0-9428-68eb811ca414 X-Archives-Hash: 54e9eeb42b0c15d30744bcfe62f2e79e commit: a848b646f698961cd14c8528e13b4f2d1ca0c00f Author: Ionen Wolkens gentoo org> AuthorDate: Sat May 13 08:59:38 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat May 13 09:12:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a848b646 media-libs/vips: add xorg-proto dep for USE=pango/svg/pdf Not really used directly but results in meson error'ing out if missing when checking for pango, cairo (also done with USE=svg), or poppler -- or at least if pango/cairo were built with USE=X. Unless a new EAPI adds a way for e.g. cairo to tell revdeps to pull xorg-proto if it was built with USE=X, then not much else to do than depend on it either way. Ultimately it's just a header-only package and feel it's not worth risking errors over missing it. Signed-off-by: Ionen Wolkens gentoo.org> media-libs/vips/vips-8.14.2.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-libs/vips/vips-8.14.2.ebuild b/media-libs/vips/vips-8.14.2.ebuild index b0592777c293..31c28938b040 100644 --- a/media-libs/vips/vips-8.14.2.ebuild +++ b/media-libs/vips/vips-8.14.2.ebuild @@ -70,6 +70,9 @@ RDEPEND=" webp? ( media-libs/libwebp:= )" DEPEND=" ${RDEPEND} + pango? ( x11-base/xorg-proto ) + pdf? ( x11-base/xorg-proto ) + svg? ( x11-base/xorg-proto ) test? ( tiff? ( media-libs/tiff[jpeg] ) )"