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 6A55A15800F for ; Sat, 11 Feb 2023 04:30:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 648B8E0769; Sat, 11 Feb 2023 04:30:53 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46692E0769 for ; Sat, 11 Feb 2023 04:30:53 +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 1B40C340DB1 for ; Sat, 11 Feb 2023 04:30:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5D5F891 for ; Sat, 11 Feb 2023 04:30:49 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1676089829.ecd01a2f390b78ad6e84d45c7ed7639d95ed54a2.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pdfpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pdfpc/metadata.xml app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild app-misc/pdfpc/pdfpc-4.6.0.ebuild X-VCS-Directories: app-misc/pdfpc/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: ecd01a2f390b78ad6e84d45c7ed7639d95ed54a2 X-VCS-Branch: master Date: Sat, 11 Feb 2023 04:30:49 +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: b7135cdb-6d4f-440d-894c-cdc9d170ddb8 X-Archives-Hash: 3f35437f6e86f2a0253df2a9e4c6fe3d commit: ecd01a2f390b78ad6e84d45c7ed7639d95ed54a2 Author: Ulrich Müller gentoo org> AuthorDate: Sat Feb 11 04:26:58 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 11 04:30:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd01a2f app-misc/pdfpc: Make soup and webkit support optional Closes: https://bugs.gentoo.org/893858 Signed-off-by: Ulrich Müller gentoo.org> app-misc/pdfpc/metadata.xml | 11 +++++++++++ app-misc/pdfpc/{pdfpc-4.6.0.ebuild => pdfpc-4.6.0-r1.ebuild} | 12 ++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/app-misc/pdfpc/metadata.xml b/app-misc/pdfpc/metadata.xml index b398906d022f..780c14d9b256 100644 --- a/app-misc/pdfpc/metadata.xml +++ b/app-misc/pdfpc/metadata.xml @@ -4,6 +4,17 @@ ulm@gentoo.org + + + Compile support for movie playback (media-libs/gstreamer) + + + Compile support for REST server (net-libs/libsoup) + + + Enable viewing Markdown notes (net-libs/webkit-gtk) + + pdfpc/pdfpc diff --git a/app-misc/pdfpc/pdfpc-4.6.0.ebuild b/app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild similarity index 89% rename from app-misc/pdfpc/pdfpc-4.6.0.ebuild rename to app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild index f1047533fe6e..884855a57e36 100644 --- a/app-misc/pdfpc/pdfpc-4.6.0.ebuild +++ b/app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild @@ -25,7 +25,7 @@ fi LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+gstreamer" +IUSE="+gstreamer soup webkit" RDEPEND=" app-text/discount:= @@ -34,9 +34,6 @@ RDEPEND=" dev-libs/json-glib dev-libs/libgee:0.8= gnome-base/librsvg - media-gfx/qrencode - net-libs/libsoup:2.4 - net-libs/webkit-gtk:4= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 @@ -49,6 +46,11 @@ RDEPEND=" media-plugins/gst-plugins-gtk:1.0= media-plugins/gst-plugins-cairo:1.0= ) + soup? ( + media-gfx/qrencode + net-libs/libsoup:2.4 + ) + webkit? ( net-libs/webkit-gtk:4= ) " DEPEND="${RDEPEND}" BDEPEND="$(vala_depend)" @@ -70,6 +72,8 @@ src_prepare() { src_configure() { local mycmakeargs=( -DMOVIES=$(usex gstreamer on off) + -DREST=$(usex soup on off) + -DMDVIEW=$(usex webkit on off) -DCMAKE_VERBOSE_MAKEFILE=TRUE ) cmake_src_configure