diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-10-01 07:17:16 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-10-01 07:17:16 +0200 |
commit | 71137cc5832110d91599d68790402cf196762ed3 (patch) | |
tree | e7985bbfb6ca50ea738b38a9f852ee51431d48a7 /src/AppDirs.vala | |
parent | 8ae550d463720d5d1c0e253af29843ff15de1a54 (diff) | |
parent | 1e92964463e564bb3359a7110342182fcfdc67f2 (diff) |
Merge branch 'release/debian/0.30.1-1'debian/0.30.1-1
Diffstat (limited to 'src/AppDirs.vala')
-rw-r--r-- | src/AppDirs.vala | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/AppDirs.vala b/src/AppDirs.vala index ffea859..74b045f 100644 --- a/src/AppDirs.vala +++ b/src/AppDirs.vala @@ -258,6 +258,15 @@ class AppDirs { return subdir; } +#if ENABLE_FACES + public static File get_resources_dir() { + File? install_dir = get_install_dir(); + + return (install_dir != null) ? install_dir.get_child("share").get_child("shotwell") + : get_exec_dir(); + } +#endif + public static File get_lib_dir() { File? install_dir = get_install_dir(); @@ -302,6 +311,11 @@ class AppDirs { // If we're running installed. f = AppDirs.get_libexec_dir () .get_child ("shotwell").get_child (filename); } + + if (!f.query_exists()) { + f = AppDirs.get_libexec_dir().get_parent().get_child("thumbnailer").get_child(filename); + } + return f; } @@ -314,5 +328,25 @@ class AppDirs { } return f; } + +#if ENABLE_FACES + public static File get_facedetect_bin() { + const string filename = "shotwell-facedetect"; + File f = AppDirs.get_libexec_dir().get_parent().get_child("facedetect").get_child (filename); + if (!f.query_exists()) { + f = AppDirs.get_libexec_dir().get_child("shotwell").get_child(filename); + } + return f; + } + + public static File get_haarcascade_file() { + File f = File.new_for_path(AppDirs.get_exec_dir().get_parent().get_parent().get_child("facedetect").get_child("facedetect-haarcascade.xml").get_path()); + if (f.query_exists()) {//testing meson builddir + return f; + } + return get_resources_dir().get_child("facedetect-haarcascade.xml"); + } +#endif + } |