diff options
Diffstat (limited to 'archivers/file-roller3')
-rw-r--r-- | archivers/file-roller3/Makefile | 63 | ||||
-rw-r--r-- | archivers/file-roller3/distinfo | 2 | ||||
-rw-r--r-- | archivers/file-roller3/files/patch-src_fr-command-tar.c | 12 | ||||
-rw-r--r-- | archivers/file-roller3/files/patch-src_fr-command-zip.c | 38 | ||||
-rw-r--r-- | archivers/file-roller3/pkg-descr | 19 | ||||
-rw-r--r-- | archivers/file-roller3/pkg-plist | 711 |
6 files changed, 0 insertions, 845 deletions
diff --git a/archivers/file-roller3/Makefile b/archivers/file-roller3/Makefile deleted file mode 100644 index 8d2d6ad51..000000000 --- a/archivers/file-roller3/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# Created by: Anders Nordby <anders@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= file-roller -PORTVERSION= 3.6.2 -CATEGORIES= archivers gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome3 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An archive manager for zip files, tar, etc - -BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool -RUN_DEPENDS= ${LOCALBASE}/bin/gtar:${PORTSDIR}/archivers/gtar \ - ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip - -CONFLICTS= file-roller-2.[0-9]* - -NO_STAGE= yes -LATEST_LINK= file-roller3 -USE_LDCONFIG= yes -USE_XZ= yes -USES= desktop-file-utils gettext gmake pathfix pkgconfig -INSTALLS_ICONS= yes -USE_GNOME= gconf2 gnomeprefix gtk30 intlhack \ - introspection:build -USE_XORG= sm -GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS= --disable-packagekit - -PORTDOCS= AUTHORS NEWS README TODO ChangeLog -GLIB_SCHEMAS= org.gnome.FileRoller.gschema.xml - -OPTIONS_DEFINE= NAUTILUS -OPTIONS_DEFAULT=NAUTILUS -NAUTILUS_DESC= Enable Nautilus extension - -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MNAUTILUS} -USE_GNOME+= nautilus3 -PLIST_SUB+= NAUTILUS="" -.else -PLIST_SUB+= NAUTILUS="@comment " -CONFIGURE_ARGS+=--disable-nautilus-actions -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/src/fr-command-tar.c \ - ${WRKSRC}/src/fr-command-zip.c - -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/archivers/file-roller3/distinfo b/archivers/file-roller3/distinfo deleted file mode 100644 index 8b3bd31de..000000000 --- a/archivers/file-roller3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (gnome3/file-roller-3.6.2.tar.xz) = 47b026c827fcb0db4df51bf81c1e90f829f287fe2c9b9e65f167a2ef5bfec5f1 -SIZE (gnome3/file-roller-3.6.2.tar.xz) = 1483616 diff --git a/archivers/file-roller3/files/patch-src_fr-command-tar.c b/archivers/file-roller3/files/patch-src_fr-command-tar.c deleted file mode 100644 index 78843a28c..000000000 --- a/archivers/file-roller3/files/patch-src_fr-command-tar.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/fr-command-tar.c.orig Sun Oct 15 12:33:56 2006 -+++ src/fr-command-tar.c Mon Oct 16 19:18:03 2006 -@@ -231,6 +231,9 @@ - #if defined (__SVR4) && defined (__sun) - if (g_file_test ("/usr/sfw/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) - command = g_strdup ("/usr/sfw/bin/gtar"); -+#elif defined(__FreeBSD__) -+ if (g_file_test ("%%LOCALBASE%%/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) -+ command = g_strdup ("%%LOCALBASE%%/bin/gtar"); - #endif - if (command != NULL) - fr_process_begin_command (comm->process, command); diff --git a/archivers/file-roller3/files/patch-src_fr-command-zip.c b/archivers/file-roller3/files/patch-src_fr-command-zip.c deleted file mode 100644 index 5995813eb..000000000 --- a/archivers/file-roller3/files/patch-src_fr-command-zip.c +++ /dev/null @@ -1,38 +0,0 @@ ---- src/fr-command-zip.c.orig 2010-11-16 08:32:18.000000000 +0000 -+++ src/fr-command-zip.c 2011-01-20 16:55:45.000000000 +0000 -@@ -186,7 +186,11 @@ fr_command_zip_list (FrCommand *comm) - { - fr_process_set_out_line_func (comm->process, list__process_line, comm); - -+#ifdef __FreeBSD__ -+ fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip"); -+#else - fr_process_begin_command (comm->process, "unzip"); -+#endif - fr_process_set_begin_func (comm->process, list__begin, comm); - fr_process_add_arg (comm->process, "-ZTs"); - fr_process_add_arg (comm->process, comm->filename); -@@ -301,7 +305,11 @@ fr_command_zip_extract (FrCommand *comm - process_line__common, - comm); - -+#ifdef __FreeBSD__ -+ fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip"); -+#else - fr_process_begin_command (comm->process, "unzip"); -+#endif - - if (dest_dir != NULL) { - fr_process_add_arg (comm->process, "-d"); -@@ -333,7 +341,11 @@ fr_command_zip_extract (FrCommand *comm - static void - fr_command_zip_test (FrCommand *comm) - { -+#ifdef __FreeBSD__ -+ fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip"); -+#else - fr_process_begin_command (comm->process, "unzip"); -+#endif - fr_process_add_arg (comm->process, "-t"); - add_password_arg (comm, comm->password); - fr_process_add_arg (comm->process, comm->filename); diff --git a/archivers/file-roller3/pkg-descr b/archivers/file-roller3/pkg-descr deleted file mode 100644 index 75feec94b..000000000 --- a/archivers/file-roller3/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -File Roller is an archive manager for the GNOME environment. It is only a -front-end (a graphical interface) to archiving programs like tar and zip. -The supported file types are: - -* Tar archives uncompressed (.tar) or compressed with gzip (.tar.gz , .tgz), - bzip (.tar.bz , .tbz), bzip2 (.tar.bz2 , .tbz2), compress (.tar.Z , .taz), - lzop (.tar.lzo , .tzo) -* Zip archives (.zip) -* Jar archives (.jar , .ear , .war) -* Lha archives (.lzh) -* Rar archives (.rar) -* Single files compressed with gzip, bzip, bzip2, compress, lzop - -File Roller also has a document viewer based on bonobo that lets you view files -of any type for which you have a viewer. - -Former WinZip users may find this program useful. It serves the same purpose. - -WWW: http://fileroller.sourceforge.net/ diff --git a/archivers/file-roller3/pkg-plist b/archivers/file-roller3/pkg-plist deleted file mode 100644 index bf0cd6235..000000000 --- a/archivers/file-roller3/pkg-plist +++ /dev/null @@ -1,711 +0,0 @@ -bin/file-roller -%%NAUTILUS%%lib/nautilus/extensions-3.0/libnautilus-fileroller.a -%%NAUTILUS%%lib/nautilus/extensions-3.0/libnautilus-fileroller.la -%%NAUTILUS%%lib/nautilus/extensions-3.0/libnautilus-fileroller.so -libexec/file-roller/isoinfo.sh -libexec/file-roller/rpm2cpio -share/GConf/gsettings/file-roller.convert -share/applications/file-roller.desktop -share/dbus-1/services/org.gnome.FileRoller.service -%%DATADIR%%/icons/hicolor/16x16/actions/add-files-to-archive.png -%%DATADIR%%/icons/hicolor/16x16/actions/add-folder-to-archive.png -%%DATADIR%%/icons/hicolor/16x16/actions/extract-archive.png -%%DATADIR%%/icons/hicolor/24x24/actions/add-files-to-archive.png -%%DATADIR%%/icons/hicolor/24x24/actions/add-folder-to-archive.png -%%DATADIR%%/icons/hicolor/24x24/actions/extract-archive.png -%%DATADIR%%/packages.match -share/help/C/file-roller/archive-create.page -share/help/C/file-roller/archive-edit.page -share/help/C/file-roller/archive-extract-advanced-options.page -share/help/C/file-roller/archive-extract.page -share/help/C/file-roller/archive-open.page -share/help/C/file-roller/archive-view.page -share/help/C/file-roller/figures/file-roller-main-window.png -share/help/C/file-roller/figures/file-roller-open-recent.png -share/help/C/file-roller/index.page -share/help/C/file-roller/introduction.page -share/help/C/file-roller/keyboard-shortcuts.page -share/help/C/file-roller/password-protection.page -share/help/C/file-roller/supported-formats.page -share/help/C/file-roller/test-integrity.page -share/help/C/file-roller/troubleshooting-archive-open.page -share/help/C/file-roller/troubleshooting-password.page -share/help/bg/file-roller/archive-create.page -share/help/bg/file-roller/archive-edit.page -share/help/bg/file-roller/archive-extract-advanced-options.page -share/help/bg/file-roller/archive-extract.page -share/help/bg/file-roller/archive-open.page -share/help/bg/file-roller/archive-view.page -share/help/bg/file-roller/figures/file-roller-main-window.png -share/help/bg/file-roller/figures/file-roller-open-recent.png -share/help/bg/file-roller/index.page -share/help/bg/file-roller/introduction.page -share/help/bg/file-roller/keyboard-shortcuts.page -share/help/bg/file-roller/password-protection.page -share/help/bg/file-roller/supported-formats.page -share/help/bg/file-roller/test-integrity.page -share/help/bg/file-roller/troubleshooting-archive-open.page -share/help/bg/file-roller/troubleshooting-password.page -share/help/ca/file-roller/archive-create.page -share/help/ca/file-roller/archive-edit.page -share/help/ca/file-roller/archive-extract-advanced-options.page -share/help/ca/file-roller/archive-extract.page -share/help/ca/file-roller/archive-open.page -share/help/ca/file-roller/archive-view.page -share/help/ca/file-roller/figures/file-roller-main-window.png -share/help/ca/file-roller/figures/file-roller-open-recent.png -share/help/ca/file-roller/index.page -share/help/ca/file-roller/introduction.page -share/help/ca/file-roller/keyboard-shortcuts.page -share/help/ca/file-roller/password-protection.page -share/help/ca/file-roller/supported-formats.page -share/help/ca/file-roller/test-integrity.page -share/help/ca/file-roller/troubleshooting-archive-open.page -share/help/ca/file-roller/troubleshooting-password.page -share/help/cs/file-roller/archive-create.page -share/help/cs/file-roller/archive-edit.page -share/help/cs/file-roller/archive-extract-advanced-options.page -share/help/cs/file-roller/archive-extract.page -share/help/cs/file-roller/archive-open.page -share/help/cs/file-roller/archive-view.page -share/help/cs/file-roller/figures/file-roller-main-window.png -share/help/cs/file-roller/figures/file-roller-open-recent.png -share/help/cs/file-roller/index.page -share/help/cs/file-roller/introduction.page -share/help/cs/file-roller/keyboard-shortcuts.page -share/help/cs/file-roller/password-protection.page -share/help/cs/file-roller/supported-formats.page -share/help/cs/file-roller/test-integrity.page -share/help/cs/file-roller/troubleshooting-archive-open.page -share/help/cs/file-roller/troubleshooting-password.page -share/help/da/file-roller/archive-create.page -share/help/da/file-roller/archive-edit.page -share/help/da/file-roller/archive-extract-advanced-options.page -share/help/da/file-roller/archive-extract.page -share/help/da/file-roller/archive-open.page -share/help/da/file-roller/archive-view.page -share/help/da/file-roller/figures/file-roller-main-window.png -share/help/da/file-roller/figures/file-roller-open-recent.png -share/help/da/file-roller/index.page -share/help/da/file-roller/introduction.page -share/help/da/file-roller/keyboard-shortcuts.page -share/help/da/file-roller/password-protection.page -share/help/da/file-roller/supported-formats.page -share/help/da/file-roller/test-integrity.page -share/help/da/file-roller/troubleshooting-archive-open.page -share/help/da/file-roller/troubleshooting-password.page -share/help/de/file-roller/archive-create.page -share/help/de/file-roller/archive-edit.page -share/help/de/file-roller/archive-extract-advanced-options.page -share/help/de/file-roller/archive-extract.page -share/help/de/file-roller/archive-open.page -share/help/de/file-roller/archive-view.page -share/help/de/file-roller/figures/file-roller-main-window.png -share/help/de/file-roller/figures/file-roller-open-recent.png -share/help/de/file-roller/index.page -share/help/de/file-roller/introduction.page -share/help/de/file-roller/keyboard-shortcuts.page -share/help/de/file-roller/password-protection.page -share/help/de/file-roller/supported-formats.page -share/help/de/file-roller/test-integrity.page -share/help/de/file-roller/troubleshooting-archive-open.page -share/help/de/file-roller/troubleshooting-password.page -share/help/el/file-roller/archive-create.page -share/help/el/file-roller/archive-edit.page -share/help/el/file-roller/archive-extract-advanced-options.page -share/help/el/file-roller/archive-extract.page -share/help/el/file-roller/archive-open.page -share/help/el/file-roller/archive-view.page -share/help/el/file-roller/figures/file-roller-main-window.png -share/help/el/file-roller/figures/file-roller-open-recent.png -share/help/el/file-roller/index.page -share/help/el/file-roller/introduction.page -share/help/el/file-roller/keyboard-shortcuts.page -share/help/el/file-roller/password-protection.page -share/help/el/file-roller/supported-formats.page -share/help/el/file-roller/test-integrity.page -share/help/el/file-roller/troubleshooting-archive-open.page -share/help/el/file-roller/troubleshooting-password.page -share/help/en_GB/file-roller/archive-create.page -share/help/en_GB/file-roller/archive-edit.page -share/help/en_GB/file-roller/archive-extract-advanced-options.page -share/help/en_GB/file-roller/archive-extract.page -share/help/en_GB/file-roller/archive-open.page -share/help/en_GB/file-roller/archive-view.page -share/help/en_GB/file-roller/figures/file-roller-main-window.png -share/help/en_GB/file-roller/figures/file-roller-open-recent.png -share/help/en_GB/file-roller/index.page -share/help/en_GB/file-roller/introduction.page -share/help/en_GB/file-roller/keyboard-shortcuts.page -share/help/en_GB/file-roller/password-protection.page -share/help/en_GB/file-roller/supported-formats.page -share/help/en_GB/file-roller/test-integrity.page -share/help/en_GB/file-roller/troubleshooting-archive-open.page -share/help/en_GB/file-roller/troubleshooting-password.page -share/help/es/file-roller/archive-create.page -share/help/es/file-roller/archive-edit.page -share/help/es/file-roller/archive-extract-advanced-options.page -share/help/es/file-roller/archive-extract.page -share/help/es/file-roller/archive-open.page -share/help/es/file-roller/archive-view.page -share/help/es/file-roller/figures/file-roller-main-window.png -share/help/es/file-roller/figures/file-roller-open-recent.png -share/help/es/file-roller/index.page -share/help/es/file-roller/introduction.page -share/help/es/file-roller/keyboard-shortcuts.page -share/help/es/file-roller/password-protection.page -share/help/es/file-roller/supported-formats.page -share/help/es/file-roller/test-integrity.page -share/help/es/file-roller/troubleshooting-archive-open.page -share/help/es/file-roller/troubleshooting-password.page -share/help/eu/file-roller/archive-create.page -share/help/eu/file-roller/archive-edit.page -share/help/eu/file-roller/archive-extract-advanced-options.page -share/help/eu/file-roller/archive-extract.page -share/help/eu/file-roller/archive-open.page -share/help/eu/file-roller/archive-view.page -share/help/eu/file-roller/figures/file-roller-main-window.png -share/help/eu/file-roller/figures/file-roller-open-recent.png -share/help/eu/file-roller/index.page -share/help/eu/file-roller/introduction.page -share/help/eu/file-roller/keyboard-shortcuts.page -share/help/eu/file-roller/password-protection.page -share/help/eu/file-roller/supported-formats.page -share/help/eu/file-roller/test-integrity.page -share/help/eu/file-roller/troubleshooting-archive-open.page -share/help/eu/file-roller/troubleshooting-password.page -share/help/fi/file-roller/archive-create.page -share/help/fi/file-roller/archive-edit.page -share/help/fi/file-roller/archive-extract-advanced-options.page -share/help/fi/file-roller/archive-extract.page -share/help/fi/file-roller/archive-open.page -share/help/fi/file-roller/archive-view.page -share/help/fi/file-roller/figures/file-roller-main-window.png -share/help/fi/file-roller/figures/file-roller-open-recent.png -share/help/fi/file-roller/index.page -share/help/fi/file-roller/introduction.page -share/help/fi/file-roller/keyboard-shortcuts.page -share/help/fi/file-roller/password-protection.page -share/help/fi/file-roller/supported-formats.page -share/help/fi/file-roller/test-integrity.page -share/help/fi/file-roller/troubleshooting-archive-open.page -share/help/fi/file-roller/troubleshooting-password.page -share/help/fr/file-roller/archive-create.page -share/help/fr/file-roller/archive-edit.page -share/help/fr/file-roller/archive-extract-advanced-options.page -share/help/fr/file-roller/archive-extract.page -share/help/fr/file-roller/archive-open.page -share/help/fr/file-roller/archive-view.page -share/help/fr/file-roller/figures/file-roller-main-window.png -share/help/fr/file-roller/figures/file-roller-open-recent.png -share/help/fr/file-roller/index.page -share/help/fr/file-roller/introduction.page -share/help/fr/file-roller/keyboard-shortcuts.page -share/help/fr/file-roller/password-protection.page -share/help/fr/file-roller/supported-formats.page -share/help/fr/file-roller/test-integrity.page -share/help/fr/file-roller/troubleshooting-archive-open.page -share/help/fr/file-roller/troubleshooting-password.page -share/help/gl/file-roller/archive-create.page -share/help/gl/file-roller/archive-edit.page -share/help/gl/file-roller/archive-extract-advanced-options.page -share/help/gl/file-roller/archive-extract.page -share/help/gl/file-roller/archive-open.page -share/help/gl/file-roller/archive-view.page -share/help/gl/file-roller/figures/file-roller-main-window.png -share/help/gl/file-roller/figures/file-roller-open-recent.png -share/help/gl/file-roller/index.page -share/help/gl/file-roller/introduction.page -share/help/gl/file-roller/keyboard-shortcuts.page -share/help/gl/file-roller/password-protection.page -share/help/gl/file-roller/supported-formats.page -share/help/gl/file-roller/test-integrity.page -share/help/gl/file-roller/troubleshooting-archive-open.page -share/help/gl/file-roller/troubleshooting-password.page -share/help/hu/file-roller/archive-create.page -share/help/hu/file-roller/archive-edit.page -share/help/hu/file-roller/archive-extract-advanced-options.page -share/help/hu/file-roller/archive-extract.page -share/help/hu/file-roller/archive-open.page -share/help/hu/file-roller/archive-view.page -share/help/hu/file-roller/figures/file-roller-main-window.png -share/help/hu/file-roller/figures/file-roller-open-recent.png -share/help/hu/file-roller/index.page -share/help/hu/file-roller/introduction.page -share/help/hu/file-roller/keyboard-shortcuts.page -share/help/hu/file-roller/password-protection.page -share/help/hu/file-roller/supported-formats.page -share/help/hu/file-roller/test-integrity.page -share/help/hu/file-roller/troubleshooting-archive-open.page -share/help/hu/file-roller/troubleshooting-password.page -share/help/it/file-roller/archive-create.page -share/help/it/file-roller/archive-edit.page -share/help/it/file-roller/archive-extract-advanced-options.page -share/help/it/file-roller/archive-extract.page -share/help/it/file-roller/archive-open.page -share/help/it/file-roller/archive-view.page -share/help/it/file-roller/figures/file-roller-main-window.png -share/help/it/file-roller/figures/file-roller-open-recent.png -share/help/it/file-roller/index.page -share/help/it/file-roller/introduction.page -share/help/it/file-roller/keyboard-shortcuts.page -share/help/it/file-roller/password-protection.page -share/help/it/file-roller/supported-formats.page -share/help/it/file-roller/test-integrity.page -share/help/it/file-roller/troubleshooting-archive-open.page -share/help/it/file-roller/troubleshooting-password.page -share/help/ja/file-roller/archive-create.page -share/help/ja/file-roller/archive-edit.page -share/help/ja/file-roller/archive-extract-advanced-options.page -share/help/ja/file-roller/archive-extract.page -share/help/ja/file-roller/archive-open.page -share/help/ja/file-roller/archive-view.page -share/help/ja/file-roller/figures/file-roller-main-window.png -share/help/ja/file-roller/figures/file-roller-open-recent.png -share/help/ja/file-roller/index.page -share/help/ja/file-roller/introduction.page -share/help/ja/file-roller/keyboard-shortcuts.page -share/help/ja/file-roller/password-protection.page -share/help/ja/file-roller/supported-formats.page -share/help/ja/file-roller/test-integrity.page -share/help/ja/file-roller/troubleshooting-archive-open.page -share/help/ja/file-roller/troubleshooting-password.page -share/help/nl/file-roller/archive-create.page -share/help/nl/file-roller/archive-edit.page -share/help/nl/file-roller/archive-extract-advanced-options.page -share/help/nl/file-roller/archive-extract.page -share/help/nl/file-roller/archive-open.page -share/help/nl/file-roller/archive-view.page -share/help/nl/file-roller/figures/file-roller-main-window.png -share/help/nl/file-roller/figures/file-roller-open-recent.png -share/help/nl/file-roller/index.page -share/help/nl/file-roller/introduction.page -share/help/nl/file-roller/keyboard-shortcuts.page -share/help/nl/file-roller/password-protection.page -share/help/nl/file-roller/supported-formats.page -share/help/nl/file-roller/test-integrity.page -share/help/nl/file-roller/troubleshooting-archive-open.page -share/help/nl/file-roller/troubleshooting-password.page -share/help/oc/file-roller/archive-create.page -share/help/oc/file-roller/archive-edit.page -share/help/oc/file-roller/archive-extract-advanced-options.page -share/help/oc/file-roller/archive-extract.page -share/help/oc/file-roller/archive-open.page -share/help/oc/file-roller/archive-view.page -share/help/oc/file-roller/figures/file-roller-main-window.png -share/help/oc/file-roller/figures/file-roller-open-recent.png -share/help/oc/file-roller/index.page -share/help/oc/file-roller/introduction.page -share/help/oc/file-roller/keyboard-shortcuts.page -share/help/oc/file-roller/password-protection.page -share/help/oc/file-roller/supported-formats.page -share/help/oc/file-roller/test-integrity.page -share/help/oc/file-roller/troubleshooting-archive-open.page -share/help/oc/file-roller/troubleshooting-password.page -share/help/ru/file-roller/archive-create.page -share/help/ru/file-roller/archive-edit.page -share/help/ru/file-roller/archive-extract-advanced-options.page -share/help/ru/file-roller/archive-extract.page -share/help/ru/file-roller/archive-open.page -share/help/ru/file-roller/archive-view.page -share/help/ru/file-roller/figures/file-roller-main-window.png -share/help/ru/file-roller/figures/file-roller-open-recent.png -share/help/ru/file-roller/index.page -share/help/ru/file-roller/introduction.page -share/help/ru/file-roller/keyboard-shortcuts.page -share/help/ru/file-roller/password-protection.page -share/help/ru/file-roller/supported-formats.page -share/help/ru/file-roller/test-integrity.page -share/help/ru/file-roller/troubleshooting-archive-open.page -share/help/ru/file-roller/troubleshooting-password.page -share/help/sl/file-roller/archive-create.page -share/help/sl/file-roller/archive-edit.page -share/help/sl/file-roller/archive-extract-advanced-options.page -share/help/sl/file-roller/archive-extract.page -share/help/sl/file-roller/archive-open.page -share/help/sl/file-roller/archive-view.page -share/help/sl/file-roller/figures/file-roller-main-window.png -share/help/sl/file-roller/figures/file-roller-open-recent.png -share/help/sl/file-roller/index.page -share/help/sl/file-roller/introduction.page -share/help/sl/file-roller/keyboard-shortcuts.page -share/help/sl/file-roller/password-protection.page -share/help/sl/file-roller/supported-formats.page -share/help/sl/file-roller/test-integrity.page -share/help/sl/file-roller/troubleshooting-archive-open.page -share/help/sl/file-roller/troubleshooting-password.page -share/help/sv/file-roller/archive-create.page -share/help/sv/file-roller/archive-edit.page -share/help/sv/file-roller/archive-extract-advanced-options.page -share/help/sv/file-roller/archive-extract.page -share/help/sv/file-roller/archive-open.page -share/help/sv/file-roller/archive-view.page -share/help/sv/file-roller/figures/file-roller-main-window.png -share/help/sv/file-roller/figures/file-roller-open-recent.png -share/help/sv/file-roller/index.page -share/help/sv/file-roller/introduction.page -share/help/sv/file-roller/keyboard-shortcuts.page -share/help/sv/file-roller/password-protection.page -share/help/sv/file-roller/supported-formats.page -share/help/sv/file-roller/test-integrity.page -share/help/sv/file-roller/troubleshooting-archive-open.page -share/help/sv/file-roller/troubleshooting-password.page -share/help/te/file-roller/archive-create.page -share/help/te/file-roller/archive-edit.page -share/help/te/file-roller/archive-extract-advanced-options.page -share/help/te/file-roller/archive-extract.page -share/help/te/file-roller/archive-open.page -share/help/te/file-roller/archive-view.page -share/help/te/file-roller/figures/file-roller-main-window.png -share/help/te/file-roller/figures/file-roller-open-recent.png -share/help/te/file-roller/index.page -share/help/te/file-roller/introduction.page -share/help/te/file-roller/keyboard-shortcuts.page -share/help/te/file-roller/password-protection.page -share/help/te/file-roller/supported-formats.page -share/help/te/file-roller/test-integrity.page -share/help/te/file-roller/troubleshooting-archive-open.page -share/help/te/file-roller/troubleshooting-password.page -share/help/uk/file-roller/archive-create.page -share/help/uk/file-roller/archive-edit.page -share/help/uk/file-roller/archive-extract-advanced-options.page -share/help/uk/file-roller/archive-extract.page -share/help/uk/file-roller/archive-open.page -share/help/uk/file-roller/archive-view.page -share/help/uk/file-roller/figures/file-roller-main-window.png -share/help/uk/file-roller/figures/file-roller-open-recent.png -share/help/uk/file-roller/index.page -share/help/uk/file-roller/introduction.page -share/help/uk/file-roller/keyboard-shortcuts.page -share/help/uk/file-roller/password-protection.page -share/help/uk/file-roller/supported-formats.page -share/help/uk/file-roller/test-integrity.page -share/help/uk/file-roller/troubleshooting-archive-open.page -share/help/uk/file-roller/troubleshooting-password.page -share/help/vi/file-roller/archive-create.page -share/help/vi/file-roller/archive-edit.page -share/help/vi/file-roller/archive-extract-advanced-options.page -share/help/vi/file-roller/archive-extract.page -share/help/vi/file-roller/archive-open.page -share/help/vi/file-roller/archive-view.page -share/help/vi/file-roller/figures/file-roller-main-window.png -share/help/vi/file-roller/figures/file-roller-open-recent.png -share/help/vi/file-roller/index.page -share/help/vi/file-roller/introduction.page -share/help/vi/file-roller/keyboard-shortcuts.page -share/help/vi/file-roller/password-protection.page -share/help/vi/file-roller/supported-formats.page -share/help/vi/file-roller/test-integrity.page -share/help/vi/file-roller/troubleshooting-archive-open.page -share/help/vi/file-roller/troubleshooting-password.page -share/help/zh_CN/file-roller/archive-create.page -share/help/zh_CN/file-roller/archive-edit.page -share/help/zh_CN/file-roller/archive-extract-advanced-options.page -share/help/zh_CN/file-roller/archive-extract.page -share/help/zh_CN/file-roller/archive-open.page -share/help/zh_CN/file-roller/archive-view.page -share/help/zh_CN/file-roller/figures/file-roller-main-window.png -share/help/zh_CN/file-roller/figures/file-roller-open-recent.png -share/help/zh_CN/file-roller/index.page -share/help/zh_CN/file-roller/introduction.page -share/help/zh_CN/file-roller/keyboard-shortcuts.page -share/help/zh_CN/file-roller/password-protection.page -share/help/zh_CN/file-roller/supported-formats.page -share/help/zh_CN/file-roller/test-integrity.page -share/help/zh_CN/file-roller/troubleshooting-archive-open.page -share/help/zh_CN/file-roller/troubleshooting-password.page -share/help/zh_HK/file-roller/archive-create.page -share/help/zh_HK/file-roller/archive-edit.page -share/help/zh_HK/file-roller/archive-extract-advanced-options.page -share/help/zh_HK/file-roller/archive-extract.page -share/help/zh_HK/file-roller/archive-open.page -share/help/zh_HK/file-roller/archive-view.page -share/help/zh_HK/file-roller/figures/file-roller-main-window.png -share/help/zh_HK/file-roller/figures/file-roller-open-recent.png -share/help/zh_HK/file-roller/index.page -share/help/zh_HK/file-roller/introduction.page -share/help/zh_HK/file-roller/keyboard-shortcuts.page -share/help/zh_HK/file-roller/password-protection.page -share/help/zh_HK/file-roller/supported-formats.page -share/help/zh_HK/file-roller/test-integrity.page -share/help/zh_HK/file-roller/troubleshooting-archive-open.page -share/help/zh_HK/file-roller/troubleshooting-password.page -share/help/zh_TW/file-roller/archive-create.page -share/help/zh_TW/file-roller/archive-edit.page -share/help/zh_TW/file-roller/archive-extract-advanced-options.page -share/help/zh_TW/file-roller/archive-extract.page -share/help/zh_TW/file-roller/archive-open.page -share/help/zh_TW/file-roller/archive-view.page -share/help/zh_TW/file-roller/figures/file-roller-main-window.png -share/help/zh_TW/file-roller/figures/file-roller-open-recent.png -share/help/zh_TW/file-roller/index.page -share/help/zh_TW/file-roller/introduction.page -share/help/zh_TW/file-roller/keyboard-shortcuts.page -share/help/zh_TW/file-roller/password-protection.page -share/help/zh_TW/file-roller/supported-formats.page -share/help/zh_TW/file-roller/test-integrity.page -share/help/zh_TW/file-roller/troubleshooting-archive-open.page -share/help/zh_TW/file-roller/troubleshooting-password.page -share/icons/hicolor/16x16/apps/file-roller.png -share/icons/hicolor/22x22/apps/file-roller.png -share/icons/hicolor/24x24/apps/file-roller.png -share/icons/hicolor/256x256/apps/file-roller.png -share/icons/hicolor/32x32/apps/file-roller.png -share/icons/hicolor/48x48/apps/file-roller.png -share/locale/af/LC_MESSAGES/file-roller.mo -share/locale/am/LC_MESSAGES/file-roller.mo -share/locale/an/LC_MESSAGES/file-roller.mo -share/locale/ar/LC_MESSAGES/file-roller.mo -share/locale/as/LC_MESSAGES/file-roller.mo -share/locale/ast/LC_MESSAGES/file-roller.mo -share/locale/az/LC_MESSAGES/file-roller.mo -share/locale/be/LC_MESSAGES/file-roller.mo -share/locale/be@latin/LC_MESSAGES/file-roller.mo -share/locale/bg/LC_MESSAGES/file-roller.mo -share/locale/bn/LC_MESSAGES/file-roller.mo -share/locale/bn_IN/LC_MESSAGES/file-roller.mo -share/locale/br/LC_MESSAGES/file-roller.mo -share/locale/bs/LC_MESSAGES/file-roller.mo -share/locale/ca/LC_MESSAGES/file-roller.mo -share/locale/ca@valencia/LC_MESSAGES/file-roller.mo -share/locale/cs/LC_MESSAGES/file-roller.mo -share/locale/csb/LC_MESSAGES/file-roller.mo -share/locale/cy/LC_MESSAGES/file-roller.mo -share/locale/da/LC_MESSAGES/file-roller.mo -share/locale/de/LC_MESSAGES/file-roller.mo -share/locale/dz/LC_MESSAGES/file-roller.mo -share/locale/el/LC_MESSAGES/file-roller.mo -share/locale/en@shaw/LC_MESSAGES/file-roller.mo -share/locale/en_CA/LC_MESSAGES/file-roller.mo -share/locale/en_GB/LC_MESSAGES/file-roller.mo -share/locale/eo/LC_MESSAGES/file-roller.mo -share/locale/es/LC_MESSAGES/file-roller.mo -share/locale/et/LC_MESSAGES/file-roller.mo -share/locale/eu/LC_MESSAGES/file-roller.mo -share/locale/fa/LC_MESSAGES/file-roller.mo -share/locale/fi/LC_MESSAGES/file-roller.mo -share/locale/fr/LC_MESSAGES/file-roller.mo -share/locale/fur/LC_MESSAGES/file-roller.mo -share/locale/fy/LC_MESSAGES/file-roller.mo -share/locale/ga/LC_MESSAGES/file-roller.mo -share/locale/gl/LC_MESSAGES/file-roller.mo -share/locale/gu/LC_MESSAGES/file-roller.mo -share/locale/he/LC_MESSAGES/file-roller.mo -share/locale/hi/LC_MESSAGES/file-roller.mo -share/locale/hr/LC_MESSAGES/file-roller.mo -share/locale/hu/LC_MESSAGES/file-roller.mo -share/locale/hy/LC_MESSAGES/file-roller.mo -share/locale/id/LC_MESSAGES/file-roller.mo -share/locale/is/LC_MESSAGES/file-roller.mo -share/locale/it/LC_MESSAGES/file-roller.mo -share/locale/ja/LC_MESSAGES/file-roller.mo -share/locale/ka/LC_MESSAGES/file-roller.mo -share/locale/kk/LC_MESSAGES/file-roller.mo -share/locale/km/LC_MESSAGES/file-roller.mo -share/locale/kn/LC_MESSAGES/file-roller.mo -share/locale/ko/LC_MESSAGES/file-roller.mo -share/locale/ku/LC_MESSAGES/file-roller.mo -share/locale/lt/LC_MESSAGES/file-roller.mo -share/locale/lv/LC_MESSAGES/file-roller.mo -share/locale/mai/LC_MESSAGES/file-roller.mo -share/locale/mg/LC_MESSAGES/file-roller.mo -share/locale/mk/LC_MESSAGES/file-roller.mo -share/locale/ml/LC_MESSAGES/file-roller.mo -share/locale/mn/LC_MESSAGES/file-roller.mo -share/locale/mr/LC_MESSAGES/file-roller.mo -share/locale/ms/LC_MESSAGES/file-roller.mo -share/locale/my/LC_MESSAGES/file-roller.mo -share/locale/nb/LC_MESSAGES/file-roller.mo -share/locale/nds/LC_MESSAGES/file-roller.mo -share/locale/ne/LC_MESSAGES/file-roller.mo -share/locale/nl/LC_MESSAGES/file-roller.mo -share/locale/nn/LC_MESSAGES/file-roller.mo -share/locale/oc/LC_MESSAGES/file-roller.mo -share/locale/or/LC_MESSAGES/file-roller.mo -share/locale/pa/LC_MESSAGES/file-roller.mo -share/locale/pl/LC_MESSAGES/file-roller.mo -share/locale/ps/LC_MESSAGES/file-roller.mo -share/locale/pt/LC_MESSAGES/file-roller.mo -share/locale/pt_BR/LC_MESSAGES/file-roller.mo -share/locale/ro/LC_MESSAGES/file-roller.mo -share/locale/ru/LC_MESSAGES/file-roller.mo -share/locale/rw/LC_MESSAGES/file-roller.mo -share/locale/si/LC_MESSAGES/file-roller.mo -share/locale/sk/LC_MESSAGES/file-roller.mo -share/locale/sl/LC_MESSAGES/file-roller.mo -share/locale/sq/LC_MESSAGES/file-roller.mo -share/locale/sr/LC_MESSAGES/file-roller.mo -share/locale/sr@ije/LC_MESSAGES/file-roller.mo -share/locale/sr@latin/LC_MESSAGES/file-roller.mo -share/locale/sv/LC_MESSAGES/file-roller.mo -share/locale/ta/LC_MESSAGES/file-roller.mo -share/locale/te/LC_MESSAGES/file-roller.mo -share/locale/th/LC_MESSAGES/file-roller.mo -share/locale/tk/LC_MESSAGES/file-roller.mo -share/locale/tr/LC_MESSAGES/file-roller.mo -share/locale/ug/LC_MESSAGES/file-roller.mo -share/locale/uk/LC_MESSAGES/file-roller.mo -share/locale/ur/LC_MESSAGES/file-roller.mo -share/locale/ur_PK/LC_MESSAGES/file-roller.mo -share/locale/vi/LC_MESSAGES/file-roller.mo -share/locale/xh/LC_MESSAGES/file-roller.mo -share/locale/zh_CN/LC_MESSAGES/file-roller.mo -share/locale/zh_HK/LC_MESSAGES/file-roller.mo -share/locale/zh_TW/LC_MESSAGES/file-roller.mo -share/locale/zu/LC_MESSAGES/file-roller.mo -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ur_PK/LC_MESSAGES -@dirrmtry share/locale/ur_PK -@dirrmtry share/locale/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/my/LC_MESSAGES -@dirrmtry share/locale/my -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/fy/LC_MESSAGES -@dirrmtry share/locale/fy -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/csb/LC_MESSAGES -@dirrmtry share/locale/csb -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/an/LC_MESSAGES -@dirrmtry share/locale/an -@dirrm share/help/zh_TW/file-roller/figures -@dirrm share/help/zh_TW/file-roller -@dirrmtry share/help/zh_TW -@dirrm share/help/zh_HK/file-roller/figures -@dirrm share/help/zh_HK/file-roller -@dirrmtry share/help/zh_HK -@dirrm share/help/zh_CN/file-roller/figures -@dirrm share/help/zh_CN/file-roller -@dirrmtry share/help/zh_CN -@dirrm share/help/vi/file-roller/figures -@dirrm share/help/vi/file-roller -@dirrmtry share/help/vi -@dirrm share/help/uk/file-roller/figures -@dirrm share/help/uk/file-roller -@dirrmtry share/help/uk -@dirrm share/help/te/file-roller/figures -@dirrm share/help/te/file-roller -@dirrmtry share/help/te -@dirrm share/help/sv/file-roller/figures -@dirrm share/help/sv/file-roller -@dirrmtry share/help/sv -@dirrm share/help/sl/file-roller/figures -@dirrm share/help/sl/file-roller -@dirrmtry share/help/sl -@dirrm share/help/ru/file-roller/figures -@dirrm share/help/ru/file-roller -@dirrmtry share/help/ru -@dirrm share/help/oc/file-roller/figures -@dirrm share/help/oc/file-roller -@dirrmtry share/help/oc -@dirrm share/help/nl/file-roller/figures -@dirrm share/help/nl/file-roller -@dirrmtry share/help/nl -@dirrm share/help/ja/file-roller/figures -@dirrm share/help/ja/file-roller -@dirrmtry share/help/ja -@dirrm share/help/it/file-roller/figures -@dirrm share/help/it/file-roller -@dirrmtry share/help/it -@dirrm share/help/hu/file-roller/figures -@dirrm share/help/hu/file-roller -@dirrmtry share/help/hu -@dirrm share/help/gl/file-roller/figures -@dirrm share/help/gl/file-roller -@dirrmtry share/help/gl -@dirrm share/help/fr/file-roller/figures -@dirrm share/help/fr/file-roller -@dirrmtry share/help/fr -@dirrm share/help/fi/file-roller/figures -@dirrm share/help/fi/file-roller -@dirrmtry share/help/fi -@dirrm share/help/eu/file-roller/figures -@dirrm share/help/eu/file-roller -@dirrmtry share/help/eu -@dirrm share/help/es/file-roller/figures -@dirrm share/help/es/file-roller -@dirrmtry share/help/es -@dirrm share/help/en_GB/file-roller/figures -@dirrm share/help/en_GB/file-roller -@dirrmtry share/help/en_GB -@dirrm share/help/el/file-roller/figures -@dirrm share/help/el/file-roller -@dirrmtry share/help/el -@dirrm share/help/de/file-roller/figures -@dirrm share/help/de/file-roller -@dirrmtry share/help/de -@dirrm share/help/da/file-roller/figures -@dirrm share/help/da/file-roller -@dirrmtry share/help/da -@dirrm share/help/cs/file-roller/figures -@dirrm share/help/cs/file-roller -@dirrmtry share/help/cs -@dirrm share/help/ca/file-roller/figures -@dirrm share/help/ca/file-roller -@dirrmtry share/help/ca -@dirrm share/help/bg/file-roller/figures -@dirrm share/help/bg/file-roller -@dirrmtry share/help/bg -@dirrm share/help/C/file-roller/figures -@dirrm share/help/C/file-roller -@dirrmtry share/help/C -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm libexec/file-roller |