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 2209F138334 for ; Sun, 24 Mar 2019 11:23:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D01E6E0996; Sun, 24 Mar 2019 11:23:52 +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 8986AE0996 for ; Sun, 24 Mar 2019 11:23:52 +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 970D1335D1E for ; Sun, 24 Mar 2019 11:23:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8048756E for ; Sun, 24 Mar 2019 11:23:48 +0000 (UTC) From: "Daniel Pielmeier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Pielmeier" Message-ID: <1553426618.cc07a449bd92fe67283a166cf55d3c645e89ccd9.billie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/projectx/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/projectx/files/build-0.91.0.10.xml media-video/projectx/files/projectx-0.91.0.10-bl2.patch media-video/projectx/files/projectx-0.91.0.10-idctfast.patch media-video/projectx/files/projectx-0.91.0.10-stdout-corrupt.patch media-video/projectx/files/projectx-0.91.0.10-xdg.patch X-VCS-Directories: media-video/projectx/files/ X-VCS-Committer: billie X-VCS-Committer-Name: Daniel Pielmeier X-VCS-Revision: cc07a449bd92fe67283a166cf55d3c645e89ccd9 X-VCS-Branch: master Date: Sun, 24 Mar 2019 11:23:48 +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: aac500e7-b95c-40c4-be0b-f5baf73f6fdb X-Archives-Hash: 399dedcea380995bd26ce6f31253325e commit: cc07a449bd92fe67283a166cf55d3c645e89ccd9 Author: Daniel Pielmeier gentoo org> AuthorDate: Sun Mar 24 11:23:38 2019 +0000 Commit: Daniel Pielmeier gentoo org> CommitDate: Sun Mar 24 11:23:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc07a449 media-video/projectx: Add missing patches. Signed-off-by: Daniel Pielmeier gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 media-video/projectx/files/build-0.91.0.10.xml | 77 ++++++++++++++++++++++ .../projectx/files/projectx-0.91.0.10-bl2.patch | 15 +++++ .../files/projectx-0.91.0.10-idctfast.patch | 37 +++++++++++ .../files/projectx-0.91.0.10-stdout-corrupt.patch | 11 ++++ .../projectx/files/projectx-0.91.0.10-xdg.patch | 44 +++++++++++++ 5 files changed, 184 insertions(+) diff --git a/media-video/projectx/files/build-0.91.0.10.xml b/media-video/projectx/files/build-0.91.0.10.xml new file mode 100644 index 00000000000..f35638733b1 --- /dev/null +++ b/media-video/projectx/files/build-0.91.0.10.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media-video/projectx/files/projectx-0.91.0.10-bl2.patch b/media-video/projectx/files/projectx-0.91.0.10-bl2.patch new file mode 100644 index 00000000000..3799c15e19c --- /dev/null +++ b/media-video/projectx/files/projectx-0.91.0.10-bl2.patch @@ -0,0 +1,15 @@ +--- Project-X/src/net/sourceforge/dvb/projectx/gui/Html.java 2006-11-25 22:28:52.000000000 +0100 ++++ Project-X/src/net/sourceforge/dvb/projectx/gui/Html.java 2007-06-10 13:37:59.000000000 +0200 +@@ -159,9 +159,10 @@ + { + try + { +- BrowserLauncher.openURL(u.toString()); ++ BrowserLauncher launcher = new BrowserLauncher(); ++ launcher.openURLinBrowser(u.toString()); + } +- catch (IOException e) ++ catch (Exception e) + { + Common.setMessage(Resource.getString("msg.browser.launcher.error") + " " + e); + } diff --git a/media-video/projectx/files/projectx-0.91.0.10-idctfast.patch b/media-video/projectx/files/projectx-0.91.0.10-idctfast.patch new file mode 100644 index 00000000000..84b7893c835 --- /dev/null +++ b/media-video/projectx/files/projectx-0.91.0.10-idctfast.patch @@ -0,0 +1,37 @@ +--- Project-X/src/net/sourceforge/dvb/projectx/video/MpvDecoder.java 2009-12-31 15:24:13.000000000 +0100 ++++ Project-X/src/net/sourceforge/dvb/projectx/video/MpvDecoder.java 2010-07-31 14:32:19.945223425 +0200 +@@ -72,7 +72,7 @@ + + public class MpvDecoder extends Object { + +- private IDCTRefNative idct; ++ private IDCTFast idct; + private IDCTSseNative idctsse; + + private int preview_horizontal_size = 512; +@@ -134,13 +134,13 @@ + { + Arrays.fill(pixels2, 0xFF505050); + +- idct = new IDCTRefNative(); ++ idct = new IDCTFast(); + idctsse = new IDCTSseNative(); + +- if (IDCTRefNative.isLibraryLoaded()) ++ if (IDCTFast.isLibraryLoaded()) + idct.init(); + +- if (IDCTRefNative.isLibraryLoaded() || IDCTSseNative.isLibraryLoaded()) ++ if (IDCTFast.isLibraryLoaded() || IDCTSseNative.isLibraryLoaded()) + acceleration = true; + } + +@@ -2407,7 +2407,7 @@ + } + } + +- else if (IDCTRefNative.isLibraryLoaded() && isAccelerated()) ++ else if (IDCTFast.isLibraryLoaded() && isAccelerated()) + { + /* copy or add block data into picture */ + for (comp=0; comp