You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-video/bdsup2sub/files/bdsup2sub-4.0.0-xdg.patch

41 lines
1.0 KiB

--- src/deadbeef/SupTools/Core.java 2010-07-29 13:01:48.000000000 +0200
+++ src/deadbeef/SupTools/Core.java 2010-08-01 02:19:25.215473885 +0200
@@ -22,6 +22,8 @@
import deadbeef.Tools.Props;
import deadbeef.Tools.ToolBox;
+import xdg.*;
+
/*
* Copyright 2009 Volker Oth (0xdeadbeef)
*
@@ -750,6 +752,7 @@
cliMode = false;
String s = c.getClass().getName().replace('.','/') + ".class";
URL url = c.getClass().getClassLoader().getResource(s);
+ /*
int pos;
try {
fnameProps = URLDecoder.decode(url.getPath(),"UTF-8");
@@ -767,6 +770,8 @@
fnameProps = fnameProps.substring(0,pos+1);
}
fnameProps += Core.iniName;
+ */
+ fnameProps = xdg.config_home() + "/" + Core.iniName;
// read properties from ini file
props = new Props();
@@ -905,8 +910,10 @@
* Write properties
*/
public static void storeProps() {
- if (props != null)
+ if (props != null) {
+ xdg.mkdirs_file(fnameProps);
props.save(fnameProps);
+ }
}
/**