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 AAE7B15808C for ; Mon, 28 Feb 2022 11:28:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D496E0AF0; Mon, 28 Feb 2022 11:28:26 +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 6289FE0AF0 for ; Mon, 28 Feb 2022 11:28:26 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00A4334354F for ; Mon, 28 Feb 2022 11:28:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43F5A2F9 for ; Mon, 28 Feb 2022 11:28:23 +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: <1646047584.e6a7d2a7ebe140963f12c702fc12c4b3c5895150.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/ruffle/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/ruffle/ruffle-9999.ebuild X-VCS-Directories: app-emulation/ruffle/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e6a7d2a7ebe140963f12c702fc12c4b3c5895150 X-VCS-Branch: master Date: Mon, 28 Feb 2022 11:28:23 +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: 97464461-3767-439a-a334-55dfc4a0d26c X-Archives-Hash: 12d1d9c8310e0f1f9b3603c292d31b3f commit: e6a7d2a7ebe140963f12c702fc12c4b3c5895150 Author: Ionen Wolkens gentoo org> AuthorDate: Mon Feb 28 10:14:38 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Feb 28 11:26:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6a7d2a7 app-emulation/ruffle: sync live Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/ruffle/ruffle-9999.ebuild | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/app-emulation/ruffle/ruffle-9999.ebuild b/app-emulation/ruffle/ruffle-9999.ebuild index 58111094b040..5f575704c2b7 100644 --- a/app-emulation/ruffle/ruffle-9999.ebuild +++ b/app-emulation/ruffle/ruffle-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,23 +12,17 @@ DESCRIPTION="Flash Player emulator written in Rust" HOMEPAGE="https://ruffle.rs/" EGIT_REPO_URI="https://github.com/ruffle-rs/ruffle.git" -LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 ZLIB curl zlib-acknowledgement" +LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 ZLIB curl" SLOT="0" -IUSE="gui" -DEPEND=" +RDEPEND=" + dev-libs/glib:2 dev-libs/openssl:= media-libs/alsa-lib sys-libs/zlib:= + x11-libs/gtk+:3 x11-libs/libxcb:=" -RDEPEND=" - ${DEPEND} - gui? ( - || ( - gnome-extra/zenity - kde-apps/kdialog - ) - )" +DEPEND="${RDEPEND}" BDEPEND=" ${PYTHON_DEPS} virtual/pkgconfig @@ -45,7 +39,7 @@ src_unpack() { } src_compile() { - filter-flags '-flto*' # undefined references with tinyfiledialogs and more + filter-flags '-flto*' # undefined references with ring crate and more cargo_src_compile --bins # note: configure --bins would skip tests } @@ -53,13 +47,9 @@ src_compile() { src_install() { dodoc README.md - # does not have a real GUI yet, flag is used to ensure there is a - # way for messages and file picker to be displayed with .desktop - if use gui; then - newicon web/packages/extension/assets/images/icon180.png ${PN}.png - make_desktop_entry ${PN} ${PN^} ${PN} "AudioVideo;Player;Emulator;" \ - "MimeType=application/x-shockwave-flash;application/vnd.adobe.flash.movie;" - fi + newicon web/packages/extension/assets/images/icon180.png ${PN}.png + make_desktop_entry ${PN} ${PN^} ${PN} "AudioVideo;Player;Emulator;" \ + "MimeType=application/x-shockwave-flash;application/vnd.adobe.flash.movie;" cd target/$(usex debug{,} release) || die