summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-06-06 05:23:46 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-06-06 05:23:46 +0800
commitd38676fb3e4bb84b5d354e27fdd28c517ac9af58 (patch)
tree938b0bafd211d262fb76af1826c54eef4d63fae7
parentf43cac6a35ca44cd624e06b905876b0cf7378b20 (diff)
downloadmarcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.tar
marcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.tar.gz
marcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.tar.bz2
marcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.tar.lz
marcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.tar.xz
marcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.tar.zst
marcuscom-ports-d38676fb3e4bb84b5d354e27fdd28c517ac9af58.zip
Update 2.31.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14181 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--archivers/file-roller/Makefile64
-rw-r--r--archivers/file-roller/distinfo3
-rw-r--r--archivers/file-roller/files/patch-src_fr-command-tar.c12
-rw-r--r--archivers/file-roller/files/patch-src_fr-command-zip.c39
-rw-r--r--archivers/file-roller/pkg-descr21
-rw-r--r--archivers/file-roller/pkg-plist349
6 files changed, 488 insertions, 0 deletions
diff --git a/archivers/file-roller/Makefile b/archivers/file-roller/Makefile
new file mode 100644
index 000000000..a4897190b
--- /dev/null
+++ b/archivers/file-roller/Makefile
@@ -0,0 +1,64 @@
+# New ports collection makefile for: fileroller
+# Date created: 18 May 2002
+# Whom: Anders Nordby <anders@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+PORTNAME= file-roller
+PORTVERSION= 2.31.1
+PORTEPOCH= 1
+CATEGORIES= archivers gnome
+MASTER_SITES= GNOME
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= An archive manager for zip files, tar, etc
+
+OPTIONS= NAUTILUS "Enable Nautilus extension" on
+
+RUN_DEPENDS= ${LOCALBASE}/bin/gtar:${PORTSDIR}/archivers/gtar \
+ ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip
+
+USE_LDCONFIG= yes
+USE_BZIP2= yes
+USE_GETTEXT= yes
+INSTALLS_OMF= yes
+INSTALLS_ICONS= yes
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix intlhack gnomehack desktopfileutils gnomedocutils \
+ gtk20 gconf2
+USE_XORG= sm
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+PORTDOCS= AUTHORS NEWS README TODO ChangeLog
+GCONF_SCHEMAS= file-roller.schemas
+
+.include <bsd.port.pre.mk>
+
+.if !defined(WITHOUT_NAUTILUS)
+USE_GNOME+= nautilus2
+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:
+ @-update-desktop-database
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for f in ${PORTDOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/archivers/file-roller/distinfo b/archivers/file-roller/distinfo
new file mode 100644
index 000000000..62d7f3316
--- /dev/null
+++ b/archivers/file-roller/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/file-roller-2.31.1.tar.bz2) = 33d5e9a557c30603ff58c9603ad33e48
+SHA256 (gnome2/file-roller-2.31.1.tar.bz2) = cdad6f4261f7f70b1759c137b8343e4f3c7c0b9397334994be12a364e0de823b
+SIZE (gnome2/file-roller-2.31.1.tar.bz2) = 1830690
diff --git a/archivers/file-roller/files/patch-src_fr-command-tar.c b/archivers/file-roller/files/patch-src_fr-command-tar.c
new file mode 100644
index 000000000..78843a28c
--- /dev/null
+++ b/archivers/file-roller/files/patch-src_fr-command-tar.c
@@ -0,0 +1,12 @@
+--- 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-roller/files/patch-src_fr-command-zip.c b/archivers/file-roller/files/patch-src_fr-command-zip.c
new file mode 100644
index 000000000..ee9ec93de
--- /dev/null
+++ b/archivers/file-roller/files/patch-src_fr-command-zip.c
@@ -0,0 +1,39 @@
+--- src/fr-command-zip.c.orig 2010-01-02 17:02:44.000000000 -0500
++++ src/fr-command-zip.c 2010-01-02 17:08:03.000000000 -0500
+@@ -187,7 +187,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);
+@@ -302,7 +306,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");
+@@ -334,7 +342,11 @@ fr_command_zip_extract (FrCommand *comm
+ static void
+ fr_command_zip_test (FrCommand *comm)
+ {
+- fr_process_begin_command (comm->process, "unzip");
++#ifdef __FreeBSD__
++ fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip");
++#else
++ fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/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-roller/pkg-descr b/archivers/file-roller/pkg-descr
new file mode 100644
index 000000000..703a89829
--- /dev/null
+++ b/archivers/file-roller/pkg-descr
@@ -0,0 +1,21 @@
+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/
+
+- Anders Nordby <anders@FreeBSD.org>
diff --git a/archivers/file-roller/pkg-plist b/archivers/file-roller/pkg-plist
new file mode 100644
index 000000000..b45025293
--- /dev/null
+++ b/archivers/file-roller/pkg-plist
@@ -0,0 +1,349 @@
+bin/file-roller
+%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-fileroller.la
+%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-fileroller.so
+libexec/file-roller/isoinfo.sh
+libexec/file-roller/rpm2cpio
+share/applications/file-roller.desktop
+%%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
+%%DATADIR%%/ui/add-options.ui
+%%DATADIR%%/ui/batch-add-files.ui
+%%DATADIR%%/ui/batch-password.ui
+%%DATADIR%%/ui/delete.ui
+%%DATADIR%%/ui/new.ui
+%%DATADIR%%/ui/open-with.ui
+%%DATADIR%%/ui/password.ui
+%%DATADIR%%/ui/properties.ui
+%%DATADIR%%/ui/update.ui
+share/gnome/help/file-roller/C/figures/file-roller_home.png
+share/gnome/help/file-roller/C/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/C/figures/file-roller_main_window.png
+share/gnome/help/file-roller/C/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/C/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/C/file-roller.xml
+share/gnome/help/file-roller/C/legal.xml
+share/gnome/help/file-roller/bg/figures/file-roller_home.png
+share/gnome/help/file-roller/bg/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/bg/figures/file-roller_main_window.png
+share/gnome/help/file-roller/bg/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/bg/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/bg/file-roller.xml
+share/gnome/help/file-roller/ca/figures/file-roller_home.png
+share/gnome/help/file-roller/ca/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/ca/figures/file-roller_main_window.png
+share/gnome/help/file-roller/ca/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/ca/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/ca/file-roller.xml
+share/gnome/help/file-roller/cs/figures/file-roller_home.png
+share/gnome/help/file-roller/cs/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/cs/figures/file-roller_main_window.png
+share/gnome/help/file-roller/cs/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/cs/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/cs/file-roller.xml
+share/gnome/help/file-roller/de/figures/file-roller_home.png
+share/gnome/help/file-roller/de/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/de/figures/file-roller_main_window.png
+share/gnome/help/file-roller/de/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/de/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/de/file-roller.xml
+share/gnome/help/file-roller/el/figures/file-roller_home.png
+share/gnome/help/file-roller/el/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/el/figures/file-roller_main_window.png
+share/gnome/help/file-roller/el/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/el/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/el/file-roller.xml
+share/gnome/help/file-roller/en_GB/figures/file-roller_home.png
+share/gnome/help/file-roller/en_GB/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/en_GB/figures/file-roller_main_window.png
+share/gnome/help/file-roller/en_GB/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/en_GB/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/en_GB/file-roller.xml
+share/gnome/help/file-roller/es/figures/file-roller_home.png
+share/gnome/help/file-roller/es/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/es/figures/file-roller_main_window.png
+share/gnome/help/file-roller/es/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/es/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/es/file-roller.xml
+share/gnome/help/file-roller/fi/figures/file-roller_home.png
+share/gnome/help/file-roller/fi/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/fi/figures/file-roller_main_window.png
+share/gnome/help/file-roller/fi/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/fi/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/fi/file-roller.xml
+share/gnome/help/file-roller/fr/figures/file-roller_home.png
+share/gnome/help/file-roller/fr/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/fr/figures/file-roller_main_window.png
+share/gnome/help/file-roller/fr/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/fr/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/fr/file-roller.xml
+share/gnome/help/file-roller/it/figures/file-roller_home.png
+share/gnome/help/file-roller/it/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/it/figures/file-roller_main_window.png
+share/gnome/help/file-roller/it/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/it/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/it/file-roller.xml
+share/gnome/help/file-roller/nl/figures/file-roller_home.png
+share/gnome/help/file-roller/nl/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/nl/figures/file-roller_main_window.png
+share/gnome/help/file-roller/nl/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/nl/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/nl/file-roller.xml
+share/gnome/help/file-roller/oc/figures/file-roller_home.png
+share/gnome/help/file-roller/oc/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/oc/figures/file-roller_main_window.png
+share/gnome/help/file-roller/oc/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/oc/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/oc/file-roller.xml
+share/gnome/help/file-roller/ru/figures/file-roller_home.png
+share/gnome/help/file-roller/ru/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/ru/figures/file-roller_main_window.png
+share/gnome/help/file-roller/ru/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/ru/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/ru/file-roller.xml
+share/gnome/help/file-roller/sv/figures/file-roller_home.png
+share/gnome/help/file-roller/sv/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/sv/figures/file-roller_main_window.png
+share/gnome/help/file-roller/sv/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/sv/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/sv/file-roller.xml
+share/gnome/help/file-roller/uk/figures/file-roller_home.png
+share/gnome/help/file-roller/uk/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/uk/figures/file-roller_main_window.png
+share/gnome/help/file-roller/uk/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/uk/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/uk/file-roller.xml
+share/gnome/help/file-roller/vi/figures/file-roller_home.png
+share/gnome/help/file-roller/vi/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/vi/figures/file-roller_main_window.png
+share/gnome/help/file-roller/vi/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/vi/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/vi/file-roller.xml
+share/gnome/help/file-roller/zh_CN/figures/file-roller_home.png
+share/gnome/help/file-roller/zh_CN/figures/file-roller_leftarrow.png
+share/gnome/help/file-roller/zh_CN/figures/file-roller_main_window.png
+share/gnome/help/file-roller/zh_CN/figures/file-roller_rightarrow.png
+share/gnome/help/file-roller/zh_CN/figures/file-roller_uparrow.png
+share/gnome/help/file-roller/zh_CN/file-roller.xml
+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/32x32/apps/file-roller.png
+share/icons/hicolor/scalable/apps/file-roller.svg
+share/locale/af/LC_MESSAGES/file-roller.mo
+share/locale/am/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/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/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/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/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/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@latin/LC_MESSAGES/file-roller.mo
+share/locale/sr@ije/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/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/omf/file-roller/file-roller-C.omf
+share/omf/file-roller/file-roller-ca.omf
+share/omf/file-roller/file-roller-cs.omf
+share/omf/file-roller/file-roller-bg.omf
+share/omf/file-roller/file-roller-de.omf
+share/omf/file-roller/file-roller-el.omf
+share/omf/file-roller/file-roller-en_GB.omf
+share/omf/file-roller/file-roller-es.omf
+share/omf/file-roller/file-roller-fi.omf
+share/omf/file-roller/file-roller-fr.omf
+share/omf/file-roller/file-roller-it.omf
+share/omf/file-roller/file-roller-nl.omf
+share/omf/file-roller/file-roller-oc.omf
+share/omf/file-roller/file-roller-ru.omf
+share/omf/file-roller/file-roller-sv.omf
+share/omf/file-roller/file-roller-uk.omf
+share/omf/file-roller/file-roller-vi.omf
+share/omf/file-roller/file-roller-zh_CN.omf
+@dirrm share/omf/file-roller
+@dirrm share/gnome/help/file-roller/zh_CN/figures
+@dirrm share/gnome/help/file-roller/zh_CN
+@dirrm share/gnome/help/file-roller/vi/figures
+@dirrm share/gnome/help/file-roller/vi
+@dirrm share/gnome/help/file-roller/uk/figures
+@dirrm share/gnome/help/file-roller/uk
+@dirrm share/gnome/help/file-roller/sv/figures
+@dirrm share/gnome/help/file-roller/sv
+@dirrm share/gnome/help/file-roller/ru/figures
+@dirrm share/gnome/help/file-roller/ru
+@dirrm share/gnome/help/file-roller/oc/figures
+@dirrm share/gnome/help/file-roller/oc
+@dirrm share/gnome/help/file-roller/nl/figures
+@dirrm share/gnome/help/file-roller/nl
+@dirrm share/gnome/help/file-roller/it/figures
+@dirrm share/gnome/help/file-roller/it
+@dirrm share/gnome/help/file-roller/fr/figures
+@dirrm share/gnome/help/file-roller/fr
+@dirrm share/gnome/help/file-roller/fi/figures
+@dirrm share/gnome/help/file-roller/fi
+@dirrm share/gnome/help/file-roller/es/figures
+@dirrm share/gnome/help/file-roller/es
+@dirrm share/gnome/help/file-roller/en_GB/figures
+@dirrm share/gnome/help/file-roller/en_GB
+@dirrm share/gnome/help/file-roller/el/figures
+@dirrm share/gnome/help/file-roller/el
+@dirrm share/gnome/help/file-roller/de/figures
+@dirrm share/gnome/help/file-roller/de
+@dirrm share/gnome/help/file-roller/cs/figures
+@dirrm share/gnome/help/file-roller/cs
+@dirrm share/gnome/help/file-roller/ca/figures
+@dirrm share/gnome/help/file-roller/ca
+@dirrm share/gnome/help/file-roller/bg/figures
+@dirrm share/gnome/help/file-roller/bg
+@dirrm share/gnome/help/file-roller/C/figures
+@dirrm share/gnome/help/file-roller/C
+@dirrm share/gnome/help/file-roller
+@dirrm %%DATADIR%%/ui
+@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
+@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
+@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
+@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/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/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/kk/LC_MESSAGES
+@dirrmtry share/locale/kk
+@dirrmtry share/locale/hy/LC_MESSAGES
+@dirrmtry share/locale/hy
+@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/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