From 0706fc6986773f4e4d391deff4ad5143c464ea4e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 24 Mar 2019 17:44:59 +0000 Subject: Revert "gentoo resync : 24.03.2019" This reverts commit aa3411e241a201d53a2689766fe419f2756819f3. --- 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 deletions(-) delete mode 100644 media-video/projectx/files/build-0.91.0.10.xml delete mode 100644 media-video/projectx/files/projectx-0.91.0.10-bl2.patch delete mode 100644 media-video/projectx/files/projectx-0.91.0.10-idctfast.patch delete mode 100644 media-video/projectx/files/projectx-0.91.0.10-stdout-corrupt.patch delete mode 100644 media-video/projectx/files/projectx-0.91.0.10-xdg.patch (limited to 'media-video/projectx/files') diff --git a/media-video/projectx/files/build-0.91.0.10.xml b/media-video/projectx/files/build-0.91.0.10.xml deleted file mode 100644 index f35638733b13..000000000000 --- a/media-video/projectx/files/build-0.91.0.10.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 deleted file mode 100644 index 3799c15e19cb..000000000000 --- a/media-video/projectx/files/projectx-0.91.0.10-bl2.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- 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 deleted file mode 100644 index 84b7893c835f..000000000000 --- a/media-video/projectx/files/projectx-0.91.0.10-idctfast.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- 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