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 9E9E9138334 for ; Thu, 12 Dec 2019 21:40:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A999FE087B; Thu, 12 Dec 2019 21:40:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8BE98E0878 for ; Thu, 12 Dec 2019 21:40:21 +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 A9EBD34D978 for ; Thu, 12 Dec 2019 21:40:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D05D8A7 for ; Thu, 12 Dec 2019 21:40:07 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1576186802.8a0b6b3983dcea3845214ecd7d4f9ef420d9da1e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/freerdp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/freerdp/freerdp-9999.ebuild X-VCS-Directories: net-misc/freerdp/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 8a0b6b3983dcea3845214ecd7d4f9ef420d9da1e X-VCS-Branch: master Date: Thu, 12 Dec 2019 21:40:07 +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: 9350949a-b54b-4646-91d6-3cc20245867c X-Archives-Hash: 3ac366e4a5ca282b386691d15fa87696 commit: 8a0b6b3983dcea3845214ecd7d4f9ef420d9da1e Author: Mike Gilbert gentoo org> AuthorDate: Thu Dec 12 21:39:17 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Dec 12 21:40:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0b6b39 net-misc/freerdp: add logic for libswscale / cairo Closes: https://bugs.gentoo.org/698392 Package-Manager: Portage-2.3.80_p5, Repoman-2.3.19_p4 Signed-off-by: Mike Gilbert gentoo.org> net-misc/freerdp/freerdp-9999.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/net-misc/freerdp/freerdp-9999.ebuild b/net-misc/freerdp/freerdp-9999.ebuild index 7c33bd96354..e76413183e5 100644 --- a/net-misc/freerdp/freerdp-9999.ebuild +++ b/net-misc/freerdp/freerdp-9999.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="http://www.freerdp.com/" LICENSE="Apache-2.0" SLOT="0/2" -IUSE="alsa +client cpu_flags_arm_neon cups debug doc ffmpeg gstreamer jpeg libav libressl openh264 pulseaudio server smartcard systemd test usb wayland X xinerama xv" +IUSE="alsa +client cpu_flags_arm_neon cups debug doc +ffmpeg gstreamer jpeg libav libressl openh264 pulseaudio server smartcard systemd test usb wayland X xinerama xv" RESTRICT="!test? ( test )" RDEPEND=" @@ -49,6 +49,9 @@ RDEPEND=" libav? ( media-video/libav:0= ) !libav? ( media-video/ffmpeg:0= ) ) + !ffmpeg? ( + x11-libs/cairo:0= + ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 @@ -103,6 +106,8 @@ src_configure() { -DWITH_DEBUG_ALL=$(usex-on-off debug) -DWITH_MANPAGES=$(usex-on-off doc) -DWITH_FFMPEG=$(usex-on-off ffmpeg) + -DWITH_SWSCALE=$(usex-on-off ffmpeg) + -DWITH_CAIRO=$(usex ffmpeg OFF ON) -DWITH_DSP_FFMPEG=$(usex-on-off ffmpeg) -DWITH_GSTREAMER_1_0=$(usex-on-off gstreamer) -DWITH_JPEG=$(usex-on-off jpeg)