summaryrefslogtreecommitdiff
path: root/media-video/projectx/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-03-24 17:44:59 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-03-24 17:44:59 +0000
commit0706fc6986773f4e4d391deff4ad5143c464ea4e (patch)
tree9fd110f9fc996e8a4213eeda994a8c112491b86d /media-video/projectx/files
parentaa3411e241a201d53a2689766fe419f2756819f3 (diff)
Revert "gentoo resync : 24.03.2019"
This reverts commit aa3411e241a201d53a2689766fe419f2756819f3.
Diffstat (limited to 'media-video/projectx/files')
-rw-r--r--media-video/projectx/files/build-0.91.0.10.xml77
-rw-r--r--media-video/projectx/files/projectx-0.91.0.10-bl2.patch15
-rw-r--r--media-video/projectx/files/projectx-0.91.0.10-idctfast.patch37
-rw-r--r--media-video/projectx/files/projectx-0.91.0.10-stdout-corrupt.patch11
-rw-r--r--media-video/projectx/files/projectx-0.91.0.10-xdg.patch44
5 files changed, 0 insertions, 184 deletions
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 @@
-<?xml version="1.0"?>
-
-<project name="projectx" default="jar">
- <!-- some properties -->
- <property name="src.dir" value="src" />
- <property name="build.dir" value="build" />
- <property name="docs.dir" value="apidocs" />
- <property name="dist.dir" value="dist" />
- <property name="lib.dir" value="lib" />
- <property name="resources.dir" value="resources" />
- <property name="project.jar" value="${dist.dir}/${ant.project.name}.jar" />
- <property name="target.jdk" value="1.5" />
-
- <!-- classpath -->
- <path id="refcp">
- <fileset dir="${lib.dir}">
- <include name="**/*.jar" />
- </fileset>
- </path>
-
- <!-- init -->
- <target name="init">
- <mkdir dir="${dist.dir}" />
- <mkdir dir="${docs.dir}" />
- <mkdir dir="${build.dir}" />
- </target>
-
- <!-- compile everything -->
- <target name="compile" depends="init">
- <javac srcdir="${src.dir}"
- destdir="${build.dir}"
- source="${target.jdk}"
- target="${target.jdk}"
- classpathref="refcp"
- encoding="ISO-8859-1"/>
- <copy todir="${build.dir}">
- <fileset dir="${resources.dir}" />
- </copy>
- </target>
-
- <!-- build the jar files -->
- <target name="build" depends="compile">
- <jar jarfile="${project.jar}" basedir="${build.dir}">
- <manifest>
- <attribute name="Main-Class" value="${manifest.mainclass}" />
- </manifest>
- </jar>
- </target>
-
- <!-- generate javadocs -->
- <target name="javadoc" depends="init">
- <javadoc sourcepath="${src.dir}"
- packagenames="*"
- destdir="${docs.dir}"
- author="true"
- version="true"
- use="true"
- charset="UTF-8"
- encoding="ISO-8859-1"
- windowtitle="${ant.project.name} API" />
- </target>
-
- <!-- clean up -->
- <target name="clean">
- <delete dir="${build.dir}" />
- <delete dir="${docs.dir}" />
- <delete dir="${dist.dir}" />
- </target>
-
- <!-- zip the sources -->
- <target name="sourcezip">
- <zip destfile="${dist.dir}/${ant.project.name}-src.zip">
- <zipfileset dir="${src.dir}" />
- </zip>
- </target>
-
-</project>
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<block_count; comp++)
diff --git a/media-video/projectx/files/projectx-0.91.0.10-stdout-corrupt.patch b/media-video/projectx/files/projectx-0.91.0.10-stdout-corrupt.patch
deleted file mode 100644
index 7ea802019793..000000000000
--- a/media-video/projectx/files/projectx-0.91.0.10-stdout-corrupt.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Project-X/src/net/sourceforge/dvb/projectx/common/GuiInterface.java 2008-12-04 01:47:03.000000000 +0100
-+++ Project-X/src/net/sourceforge/dvb/projectx/common/GuiInterface.java 2008-12-04 02:21:11.342918380 +0100
-@@ -190,7 +190,7 @@
- impl.updateProgressBar(percent);
-
- else
-- System.out.print("\r" + percent + " %");
-+ System.out.print(percent + " %");
- }
-
- /**
diff --git a/media-video/projectx/files/projectx-0.91.0.10-xdg.patch b/media-video/projectx/files/projectx-0.91.0.10-xdg.patch
deleted file mode 100644
index fcb8b0e67e39..000000000000
--- a/media-video/projectx/files/projectx-0.91.0.10-xdg.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- Project-X/src/net/sourceforge/dvb/projectx/common/Settings.java 2008-02-18 19:34:48.000000000 +0100
-+++ Project-X/src/net/sourceforge/dvb/projectx/common/Settings.java 2010-07-31 19:44:59.151224244 +0200
-@@ -46,6 +46,8 @@
- import java.util.Set;
- import java.util.TreeMap;
-
-+import xdg.*;
-+
- import net.sourceforge.dvb.projectx.xinput.XInputDirectory;
-
- /**
-@@ -56,7 +58,7 @@
- public class Settings extends Object {
-
- /** the default ini filename */
-- private static final String DEFAULT_INI = "X.ini";
-+ private static final String DEFAULT_INI = "Project-X.ini";
-
- /** the current ini filename */
- private String inifile = "";
-@@ -75,7 +77,7 @@
- */
- public Settings()
- {
-- this(Resource.workdir + Resource.filesep + DEFAULT_INI);
-+ this(xdg.config_home() + Resource.filesep + DEFAULT_INI);
- }
-
- /**
-@@ -161,6 +163,7 @@
- str = inifile;
-
- try {
-+ xdg.mkdirs_file(str);
- PrintWriter w = new PrintWriter(new FileWriter(str));
-
- String base_key = "# Project-X INI";
-@@ -714,4 +717,4 @@
- return inifile;
- }
-
--}
-\ Kein Zeilenumbruch am Dateiende.
-+}