# fix some path for gentoo install ( LFH conform ) # Joerg Bornkessel 24 Mar 2009 diff -Naur graphtft-0.2.2.orig/dfbrenderer/dfbrenderer.c graphtft-0.2.2/dfbrenderer/dfbrenderer.c --- graphtft-0.2.2.orig/dfbrenderer/dfbrenderer.c 2009-03-24 23:27:27.000000000 +0100 +++ graphtft-0.2.2/dfbrenderer/dfbrenderer.c 2009-03-24 23:35:19.000000000 +0100 @@ -231,7 +231,7 @@ { // make path relative to the themes directory - asprintf(&path, "%s/graphTFT/themes/%s/%s", + asprintf(&path, "%s/themes/%s/%s", confPath.c_str(), themePath.c_str(), p.c_str()); } else @@ -255,7 +255,7 @@ // at least add the default path - asprintf(&path, "%s/graphTFT/fonts/", confPath.c_str()); + asprintf(&path, "%s/fonts/", confPath.c_str()); tell(0, "Info: Adding font path '%s'", path); fontPaths[count] = path; free(path); @@ -464,7 +464,7 @@ else { const char* tmp = themePath.c_str(); - asprintf(&fpath, "%s/graphTFT/themes/%s/%s", confPath.c_str(), tmp, fname); + asprintf(&fpath, "%s/themes/%s/%s", confPath.c_str(), tmp, fname); } tell(4,"creating imageprovider for %s\n", fpath); @@ -538,7 +538,7 @@ else { const char* tmp = themePath.c_str(); - asprintf(&fpath, "%s/graphTFT/themes/%s/%s", confPath.c_str(), tmp, fname); + asprintf(&fpath, "%s/themes/%s/%s", confPath.c_str(), tmp, fname); } tell(4,"creating imageprovider for %s\n", fpath); diff -Naur graphtft-0.2.2.orig/dspitems.c graphtft-0.2.2/dspitems.c --- graphtft-0.2.2.orig/dspitems.c 2009-03-24 23:27:27.000000000 +0100 +++ graphtft-0.2.2/dspitems.c 2009-03-24 23:31:38.000000000 +0100 @@ -108,7 +108,7 @@ if (p[0] != '/') { p = string(GraphTFTSetup.PluginConfPath) - + "/graphTFT/themes/" + + "/themes/" + string(Thms::theTheme->getDir()) + "/" + p; } diff -Naur graphtft-0.2.2.orig/graphtft.c graphtft-0.2.2/graphtft.c --- graphtft-0.2.2.orig/graphtft.c 2009-03-24 23:27:27.000000000 +0100 +++ graphtft-0.2.2/graphtft.c 2009-03-24 23:40:20.000000000 +0100 @@ -21,6 +21,8 @@ #include #include +#define DATA_DIR "/usr/share/vdr/graphTFT" + //*************************************************************************** // cGraphTFTMenu //*************************************************************************** @@ -261,14 +263,8 @@ #endif - // try to get the config dir - - if (!ConfigDirectory()) - return false; - - // init - GraphTFTSetup.PluginConfPath = strdup(ConfigDirectory()); + GraphTFTSetup.PluginConfPath = strdup(DATA_DIR); #if APIVERSNUM < 10507 RegisterI18n(Phrases); @@ -284,7 +280,7 @@ if (loadThemes() != 0) return false; - if (display->Init(_dev, ConfigDirectory(), port) != success) + if (display->Init(_dev, DATA_DIR, port) != success) { tell(0, "Error: Initializing graphTFT device faild, aborting!"); @@ -307,8 +303,8 @@ // look for the themes in the config directory - asprintf(&buffer, "find %s/graphTFT/themes -follow -type f -name '*.theme' | sort", - ConfigDirectory()); + asprintf(&buffer, "find %s/themes -follow -type f -name '*.theme' | sort", + DATA_DIR); p = popen(buffer, "r"); diff -Naur graphtft-0.2.2.orig/imlibrenderer/imlibrenderer.c graphtft-0.2.2/imlibrenderer/imlibrenderer.c --- graphtft-0.2.2.orig/imlibrenderer/imlibrenderer.c 2009-03-24 23:27:27.000000000 +0100 +++ graphtft-0.2.2/imlibrenderer/imlibrenderer.c 2009-03-24 23:36:06.000000000 +0100 @@ -107,7 +107,7 @@ { // make path relative to the themes directory - asprintf(&path, "%s/graphTFT/themes/%s/%s", + asprintf(&path, "%s/themes/%s/%s", confPath.c_str(), themePath.c_str(), p.c_str()); } else @@ -130,7 +130,7 @@ // at least add the default path - asprintf(&path, "%s/graphTFT/fonts/", confPath.c_str()); + asprintf(&path, "%s/fonts/", confPath.c_str()); tell(0, "Info: Adding font path '%s'", path); imlib_add_path_to_font_path(path); free(path); @@ -201,7 +201,7 @@ if (fname[0] == '/') path << fname; else - path << confPath << "/graphTFT/themes/" << themePath << "/" << fname; + path << confPath << "/themes/" << themePath << "/" << fname; if (!fileExists(path.str().c_str())) { @@ -273,7 +273,7 @@ if (fname[0] == '/') path << fname; else - path << confPath << "/graphTFT/themes/" << themePath << "/" << fname; + path << confPath << "/themes/" << themePath << "/" << fname; if (!fileExists(path.str().c_str())) {