summaryrefslogtreecommitdiff
path: root/freefilesync/debian/patches/devuan.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-02-02 01:51:22 +0000
committerB Stack <bgstack15@gmail.com>2019-02-02 01:51:22 +0000
commit3c02a73c7f94cf91635b4ff736501e3d52265838 (patch)
tree47b224ccd882ec12a932ad77732704ea082eed65 /freefilesync/debian/patches/devuan.patch
parentadd palemoon dpkg for devuan (diff)
parentadd freefilesync dpkg rough draft (diff)
downloadstackrpms-3c02a73c7f94cf91635b4ff736501e3d52265838.tar.gz
stackrpms-3c02a73c7f94cf91635b4ff736501e3d52265838.tar.bz2
stackrpms-3c02a73c7f94cf91635b4ff736501e3d52265838.zip
Merge branch 'freefilesync-dpkg' into 'master'
freefilesync dpkg for devuan See merge request bgstack15/stackrpms!33
Diffstat (limited to 'freefilesync/debian/patches/devuan.patch')
-rw-r--r--freefilesync/debian/patches/devuan.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/freefilesync/debian/patches/devuan.patch b/freefilesync/debian/patches/devuan.patch
new file mode 100644
index 0000000..abe5389
--- /dev/null
+++ b/freefilesync/debian/patches/devuan.patch
@@ -0,0 +1,24 @@
+diff -Naur -x '*.orig' -x '*.rej' 10.3-0/FreeFileSync/Source/ui/small_dlgs.cpp 10.3-2/FreeFileSync/Source/ui/small_dlgs.cpp
+--- 10.3-0/FreeFileSync/Source/ui/small_dlgs.cpp 2018-08-07 05:03:34.000000000 -0400
++++ 10.3-2/FreeFileSync/Source/ui/small_dlgs.cpp 2018-08-29 22:13:40.240595334 -0400
+@@ -106,6 +106,8 @@
+ L" x64";
+ #endif
+
++ build +=
++ L" for Devuan";
+
+ GetSizer()->SetSizeHints(this); //~=Fit() + SetMinSize()
+
+diff -Naur 10.6-0/FreeFileSync/Source/base/ffs_paths.cpp 10.6-1/FreeFileSync/Source/base/ffs_paths.cpp
+--- 10.6-0/FreeFileSync/Source/base/ffs_paths.cpp 2018-11-13 06:58:40.771249592 -0500
++++ 10.6-1/FreeFileSync/Source/base/ffs_paths.cpp 2018-11-16 21:34:30.341077845 -0500
+@@ -66,7 +66,7 @@
+ ZEN_ON_SCOPE_EXIT(wxTheApp->SetAppName(appName));
+
+ //if (isPortableVersion())
+- return appendSeparator(getExeFolderParentPath());
++ return appendSeparator(getExeFolderParentPath()) + appendSeparator("share") + appendSeparator("FreeFileSync");
+ //else //use OS' standard paths
+ // return appendSeparator(utfTo<Zstring>(wxStandardPathsBase::Get().GetResourcesDir()));
+ }
bgstack15