perfinion 15/07/05 09:29:36
Added: 0.3.1-add-support-symlinks.patch
0.3.1-fix-kde-ark.patch
Log:
fix kde ark support thanks to Alex Efros, bug 553722
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key
0x7EF137EC935B0EAF)
Revision Changes Path
1.1
xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch?rev=1.1&content-type=text/plain
Index: 0.3.1-add-support-symlinks.patch
===================================================================
diff -ur thunar-archive-plugin-0.3.1.old/scripts/Makefile.am
thunar-archive-plugin-0.3.1/scripts/Makefile.am
--- thunar-archive-plugin-0.3.1.old/scripts/Makefile.am 2013-05-11
13:48:30.000000000 +0400
+++ thunar-archive-plugin-0.3.1/scripts/Makefile.am 2015-07-05
12:55:32.052090677 +0400
@@ -9,8 +9,9 @@
install-exec-hook:
$(mkinstalldirs) $(DESTDIR)$(wrapperdir)
-( cd $(DESTDIR)$(wrapperdir) ; \
- test -f gnome-file-roller.tap \
- || ln -sf file-roller.tap gnome-file-roller.tap )
+ ln -sf ark.tap kde4-ark.tap; \
+ ln -sf file-roller.tap gnome-file-roller.tap; \
+ ln -sf file-roller.tap org.gnome.FileRoller.tap; )
EXTRA_DIST = \
$(wrapper_SCRIPTS) \
1.1
xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch?rev=1.1&content-type=text/plain
Index: 0.3.1-fix-kde-ark.patch
===================================================================
diff -ur thunar-archive-plugin-0.3.1.old/scripts/ark.tap
thunar-archive-plugin-0.3.1/scripts/ark.tap
--- thunar-archive-plugin-0.3.1.old/scripts/ark.tap 2013-05-11
13:48:30.000000000 +0400
+++ thunar-archive-plugin-0.3.1/scripts/ark.tap 2015-07-05 12:56:25.288680104
+0400
@@ -30,15 +30,15 @@
# check the action
case $action in
create)
- exec ark --add "$@"
+ exec ark --dialog --add "$@"
;;
extract-here)
- exec ark --extract-to "$folder" "$@"
+ exec ark --batch --destination "$folder" "$@"
;;
extract-to)
- exec ark --extract "$@"
+ exec ark --batch --dialog --autodestination "$@"
;;
*)