summaryrefslogtreecommitdiffstats
path: root/truecrypt
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2012-03-31 11:04:54 +0000
committer Eric Hameleers <alien@slackware.com>2012-03-31 11:04:54 +0000
commit4eb6527fd4fc7f4e636ea3210c931602291ba9ea (patch)
tree8667811b7f78d713fe506af799b6a4edb8eb346e /truecrypt
parent7b61bbf219de291e59010c5b155db56150e7d5e6 (diff)
downloadasb-4eb6527fd4fc7f4e636ea3210c931602291ba9ea.tar.gz
asb-4eb6527fd4fc7f4e636ea3210c931602291ba9ea.tar.xz
Initial revision
Diffstat (limited to 'truecrypt')
-rw-r--r--truecrypt/build/truecrypt-7.1a_diropen.patch47
-rw-r--r--truecrypt/build/truecrypt-7.1a_umount.patch27
2 files changed, 74 insertions, 0 deletions
diff --git a/truecrypt/build/truecrypt-7.1a_diropen.patch b/truecrypt/build/truecrypt-7.1a_diropen.patch
new file mode 100644
index 00000000..e94804c5
--- /dev/null
+++ b/truecrypt/build/truecrypt-7.1a_diropen.patch
@@ -0,0 +1,47 @@
+diff -uar truecrypt-7.1a-source.orig/Main/UserInterface.cpp truecrypt-7.1a-source/Main/UserInterface.cpp
+--- truecrypt-7.1a-source.orig/Main/UserInterface.cpp 2012-02-07 11:36:48.000000000 +0100
++++ truecrypt-7.1a-source/Main/UserInterface.cpp 2012-03-31 13:03:02.996434923 +0200
+@@ -828,7 +828,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");
+@@ -861,6 +861,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.1a_umount.patch b/truecrypt/build/truecrypt-7.1a_umount.patch
new file mode 100644
index 00000000..7f3d87f8
--- /dev/null
+++ b/truecrypt/build/truecrypt-7.1a_umount.patch
@@ -0,0 +1,27 @@
+diff -uar truecrypt-7.1a-source.orig/Core/Unix/Linux/CoreLinux.cpp truecrypt-7.1a-source/Core/Unix/Linux/CoreLinux.cpp
+--- truecrypt-7.1a-source.orig/Core/Unix/Linux/CoreLinux.cpp 2012-02-07 11:36:48.000000000 +0100
++++ truecrypt-7.1a-source/Core/Unix/Linux/CoreLinux.cpp 2012-03-31 13:05:41.065113488 +0200
+@@ -91,13 +91,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;
+ }