View | Details | Raw Unified | Return to bug 261839
Collapse All | Expand All

(-)b/archivers/file-roller/Makefile (+5 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	file-roller
3
PORTNAME=	file-roller
4
PORTVERSION=	3.40.0
4
PORTVERSION=	3.40.0
5
PORTREVISION=	1
5
PORTEPOCH=	1
6
PORTEPOCH=	1
6
CATEGORIES=	archivers gnome
7
CATEGORIES=	archivers gnome
7
MASTER_SITES=	GNOME
8
MASTER_SITES=	GNOME
Lines 62-66 post-patch: Link Here
62
	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
63
	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
63
		${WRKSRC}/src/fr-command-tar.c \
64
		${WRKSRC}/src/fr-command-tar.c \
64
		${WRKSRC}/src/fr-command-zip.c
65
		${WRKSRC}/src/fr-command-zip.c
66
	@${REINPLACE_CMD} -e 's|"7z"|"7zz"|g' \
67
		${WRKSRC}/src/fr-archive-libarchive.c \
68
		${WRKSRC}/src/fr-command-7z.c \
69
		${WRKSRC}/src/fr-command-tar.c
65
70
66
.include <bsd.port.mk>
71
.include <bsd.port.mk>
(-)b/archivers/file-roller/files/patch-src_fr-command-7z.c (-1 / +16 lines)
Added Link Here
0
- 
1
--- src/fr-command-7z.c.orig	2021-05-01 19:02:13 UTC
2
+++ src/fr-command-7z.c
3
@@ -325,8 +325,11 @@ fr_command_7z_add (FrCommand  *command,
4
 	fr_process_add_arg (command->process, "-bd");
5
 	fr_process_add_arg (command->process, "-bb1");
6
 	fr_process_add_arg (command->process, "-y");
7
-	if (follow_links)
8
-		fr_process_add_arg (command->process, "-l");
9
+	if (! follow_links)
10
+        {
11
+		fr_process_add_arg (command->process, "-snh");
12
+		fr_process_add_arg (command->process, "-snl");
13
+        }
14
 	add_password_arg (command, archive->password, FALSE);
15
 	if ((archive->password != NULL)
16
 	    && (*archive->password != 0)

Return to bug 261839