summaryrefslogtreecommitdiffstats
path: root/truecrypt
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2011-05-15 09:31:44 +0000
committer Eric Hameleers <alien@slackware.com>2011-05-15 09:31:44 +0000
commit55147bbd6de1414e4167d008c33c686bc2d971f7 (patch)
tree8f90729ce4830a88c2f49feb8e2ab06d1232505f /truecrypt
parent29f448e6b3ed80c8797934aa0e0d935bb5038d86 (diff)
downloadasb-55147bbd6de1414e4167d008c33c686bc2d971f7.tar.gz
asb-55147bbd6de1414e4167d008c33c686bc2d971f7.tar.xz
Initial revision
Diffstat (limited to 'truecrypt')
-rw-r--r--truecrypt/build/truecrypt-7.0a_diropen.patch46
-rw-r--r--truecrypt/build/truecrypt-7.0a_umount.patch27
2 files changed, 73 insertions, 0 deletions
diff --git a/truecrypt/build/truecrypt-7.0a_diropen.patch b/truecrypt/build/truecrypt-7.0a_diropen.patch
new file mode 100644
index 00000000..68a8731d
--- /dev/null
+++ b/truecrypt/build/truecrypt-7.0a_diropen.patch
@@ -0,0 +1,46 @@
+--- truecrypt-7.0a-source/Main/UserInterface.cpp~ 2010-09-05 16:32:10.000000000 +0200
++++ truecrypt-7.0a-source/Main/UserInterface.cpp 2011-05-15 11:31:09.503001893 +0200
+@@ -818,7 +818,7 @@
+ // MIME handler for directory seems to be unavailable through wxWidgets
+ wxString desktop = GetTraits()->GetDesktopEnvironment();
+
+- if (desktop == L"GNOME" || desktop.empty())
++ if (desktop == L"GNOME")
+ {
+ args.push_back ("--no-default-window");
+ args.push_back ("--no-desktop");
+@@ -851,6 +851,34 @@
+ catch (exception &e) { ShowError (e); }
+ }
+ }
++ else if (desktop == L"XFCE")
++ {
++ args.push_back (string (path));
++ try
++ {
++ Process::Execute ("thunar", args, 2000);
++ }
++ catch (TimeOut&) { }
++ catch (exception&)
++ {
++ try
++ {
++ Process::Execute ("xdg-open", args, 2000);
++ }
++ catch (TimeOut&) { }
++ catch (exception &e) { ShowError (e); }
++ }
++ }
++ else
++ {
++ args.push_back (string (path));
++ try
++ {
++ Process::Execute ("xdg-open", args, 2000);
++ }
++ catch (TimeOut&) { }
++ catch (exception &e) { ShowError (e); }
++ }
+ #endif
+ }
+
diff --git a/truecrypt/build/truecrypt-7.0a_umount.patch b/truecrypt/build/truecrypt-7.0a_umount.patch
new file mode 100644
index 00000000..7de2b346
--- /dev/null
+++ b/truecrypt/build/truecrypt-7.0a_umount.patch
@@ -0,0 +1,27 @@
+diff -uar truecrypt-6.3a-source.orig/Core/Unix/Linux/CoreLinux.cpp truecrypt-6.3a-source/Core/Unix/Linux/CoreLinux.cpp
+--- truecrypt-6.3a-source.orig/Core/Unix/Linux/CoreLinux.cpp 2009-11-22 16:09:54.000000000 +0100
++++ truecrypt-6.3a-source/Core/Unix/Linux/CoreLinux.cpp 2010-04-04 16:47:42.000000000 +0200
+@@ -90,13 +90,23 @@
+ void CoreLinux::DetachLoopDevice (const DevicePath &devicePath) const
+ {
+ list <string> args;
++ list <string> args2;
+ args.push_back ("-d");
+ args.push_back (devicePath);
++ /* args2 needed to umount loop device before detaching it
++ * by Enrico Lo Tauro (neongen)
++ */
++ args2.push_back (devicePath);
+
+ for (int t = 0; true; t++)
+ {
+ try
+ {
++ try
++ {
++ Process::Execute ("umount", args2);
++ }
++ catch (ExecutedProcessFailed&) { }
+ Process::Execute ("losetup", args);
+ break;
+ }