diff options
author | B Stack <bgstack15@gmail.com> | 2019-06-15 10:03:09 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-06-15 10:03:09 -0400 |
commit | e5432efea618b884e41f766813655db52c086522 (patch) | |
tree | 3964f2a2ff7bcefbfc1adee93256eafea4a9ae7e /freefilesync/ffs_fedora.patch | |
parent | Merge branch 'scite-bump' into 'master' (diff) | |
download | stackrpms-e5432efea618b884e41f766813655db52c086522.tar.gz stackrpms-e5432efea618b884e41f766813655db52c086522.tar.bz2 stackrpms-e5432efea618b884e41f766813655db52c086522.zip |
freefilesync 10.13 rpm rc1
Fixes #8 .desktop file is missing mimetypes:
Added the hooks for dealing with mimetypes, and the icons, and the
desktop file mimetype info
Diffstat (limited to 'freefilesync/ffs_fedora.patch')
-rw-r--r-- | freefilesync/ffs_fedora.patch | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/freefilesync/ffs_fedora.patch b/freefilesync/ffs_fedora.patch index debe6a6..dc91530 100644 --- a/freefilesync/ffs_fedora.patch +++ b/freefilesync/ffs_fedora.patch @@ -1,16 +1,17 @@ Upstream uses a libcurl more current than Fedora 29. -diff -Naur 10.11-0/FreeFileSync/Source/base/ffs_paths.cpp 10.11-1/FreeFileSync/Source/base/ffs_paths.cpp ---- 10.11-0/FreeFileSync/Source/base/ffs_paths.cpp 2019-04-12 07:59:45.368162920 -0400 -+++ 10.11-1/FreeFileSync/Source/base/ffs_paths.cpp 2019-04-12 08:27:24.421735762 -0400 -@@ -59,7 +59,7 @@ - ZEN_ON_SCOPE_EXIT(wxTheApp->SetAppName(appName)); +diff -Naur 10.13-0/FreeFileSync/Source/base/ffs_paths.cpp 10.13-1/FreeFileSync/Source/base/ffs_paths.cpp +--- 10.13-0/FreeFileSync/Source/base/ffs_paths.cpp 2019-06-14 20:23:07.615661499 -0400 ++++ 10.13-1/FreeFileSync/Source/base/ffs_paths.cpp 2019-06-14 20:36:28.178274292 -0400 +@@ -55,7 +55,8 @@ - //if (isPortableVersion()) -- return appendSeparator(getExeFolderParentPath()); -+ return appendSeparator("/usr") + appendSeparator("share") + appendSeparator("freefilesync"); - //else //use OS' standard paths - // return appendSeparator(utfTo<Zstring>(wxStandardPathsBase::Get().GetResourcesDir())); + Zstring fff::getResourceDirPf() + { +- return getProcessParentFolderPath() + FILE_NAME_SEPARATOR + Zstr("Resources") + FILE_NAME_SEPARATOR; ++ // For Fedora/EL, install to /usr/share/freefilesync specificly ++ return Zstr("/usr/share/freefilesync/"); } + + diff -Naur 10.11-0/FreeFileSync/Source/afs/libcurl/curl_wrap.h 10.11-1/FreeFileSync/Source/afs/libcurl/curl_wrap.h --- 10.11-0/FreeFileSync/Source/afs/libcurl/curl_wrap.h 2019-04-12 07:59:45.130151956 -0400 +++ 10.11-1/FreeFileSync/Source/afs/libcurl/curl_wrap.h 2019-04-12 08:27:24.423735854 -0400 |