Gentoo Archives: gentoo-commits

From: "Jason Zaman (perfinion)" <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-extra/thunar-archive-plugin/files: 0.3.1-add-support-symlinks.patch 0.3.1-fix-kde-ark.patch
Date: Sun, 05 Jul 2015 09:29:43
Message-Id: 20150705092936.AA528754@oystercatcher.gentoo.org
1 perfinion 15/07/05 09:29:36
2
3 Added: 0.3.1-add-support-symlinks.patch
4 0.3.1-fix-kde-ark.patch
5 Log:
6 fix kde ark support thanks to Alex Efros, bug 553722
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x7EF137EC935B0EAF)
9
10 Revision Changes Path
11 1.1 xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch
12
13 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
14 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
15
16 Index: 0.3.1-add-support-symlinks.patch
17 ===================================================================
18 diff -ur thunar-archive-plugin-0.3.1.old/scripts/Makefile.am thunar-archive-plugin-0.3.1/scripts/Makefile.am
19 --- thunar-archive-plugin-0.3.1.old/scripts/Makefile.am 2013-05-11 13:48:30.000000000 +0400
20 +++ thunar-archive-plugin-0.3.1/scripts/Makefile.am 2015-07-05 12:55:32.052090677 +0400
21 @@ -9,8 +9,9 @@
22 install-exec-hook:
23 $(mkinstalldirs) $(DESTDIR)$(wrapperdir)
24 -( cd $(DESTDIR)$(wrapperdir) ; \
25 - test -f gnome-file-roller.tap \
26 - || ln -sf file-roller.tap gnome-file-roller.tap )
27 + ln -sf ark.tap kde4-ark.tap; \
28 + ln -sf file-roller.tap gnome-file-roller.tap; \
29 + ln -sf file-roller.tap org.gnome.FileRoller.tap; )
30
31 EXTRA_DIST = \
32 $(wrapper_SCRIPTS) \
33
34
35
36 1.1 xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch
37
38 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
39 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
40
41 Index: 0.3.1-fix-kde-ark.patch
42 ===================================================================
43 diff -ur thunar-archive-plugin-0.3.1.old/scripts/ark.tap thunar-archive-plugin-0.3.1/scripts/ark.tap
44 --- thunar-archive-plugin-0.3.1.old/scripts/ark.tap 2013-05-11 13:48:30.000000000 +0400
45 +++ thunar-archive-plugin-0.3.1/scripts/ark.tap 2015-07-05 12:56:25.288680104 +0400
46 @@ -30,15 +30,15 @@
47 # check the action
48 case $action in
49 create)
50 - exec ark --add "$@"
51 + exec ark --dialog --add "$@"
52 ;;
53
54 extract-here)
55 - exec ark --extract-to "$folder" "$@"
56 + exec ark --batch --destination "$folder" "$@"
57 ;;
58
59 extract-to)
60 - exec ark --extract "$@"
61 + exec ark --batch --dialog --autodestination "$@"
62 ;;
63
64 *)