summaryrefslogtreecommitdiffstats
path: root/x11-fm
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2011-03-08 19:10:42 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2011-03-08 19:10:42 +0800
commit288f700259f16edb0acca58c8770b98b0dda01ec (patch)
tree828629c20603e3b61d7a50480736b741e8d2e566 /x11-fm
parentbe9b006f435814bfc6ff6af4c0291a9634a8119f (diff)
downloadmarcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.tar
marcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.tar.gz
marcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.tar.bz2
marcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.tar.lz
marcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.tar.xz
marcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.tar.zst
marcuscom-ports-288f700259f16edb0acca58c8770b98b0dda01ec.zip
Chase libnotify shlib bump.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15407 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-fm')
-rw-r--r--x11-fm/thunar/Makefile159
-rw-r--r--x11-fm/thunar/distinfo2
-rw-r--r--x11-fm/thunar/pkg-descr8
-rw-r--r--x11-fm/thunar/pkg-plist460
4 files changed, 629 insertions, 0 deletions
diff --git a/x11-fm/thunar/Makefile b/x11-fm/thunar/Makefile
new file mode 100644
index 000000000..b506a2e63
--- /dev/null
+++ b/x11-fm/thunar/Makefile
@@ -0,0 +1,159 @@
+# New ports collection makefile for: thunar
+# Date created: 19.04.2006
+# Whom: Oliver Lehmann <oliver@FreeBSD.org>
+#
+# $FreeBSD: ports/x11-fm/thunar/Makefile,v 1.28 2011/03/04 02:15:10 wen Exp $
+#
+
+PORTNAME= Thunar
+PORTVERSION= 1.2.1
+PORTREVISION= 2
+CATEGORIES= x11-fm xfce
+MASTER_SITES= ${MASTER_SITE_XFCE}
+MASTER_SITE_SUBDIR= src/xfce/${PORTNAME:L}/${PORTVERSION:R}
+DIST_SUBDIR= xfce4
+
+MAINTAINER= oliver@FreeBSD.org
+COMMENT= XFce 4 file manager
+
+LIB_DEPENDS= tumbler-1.0:${PORTSDIR}/deskutils/xfce4-tumbler
+
+GNU_CONFIGURE= yes
+INSTALLS_ICONS= yes
+USE_BZIP2= yes
+USE_PERL5= yes
+USE_GMAKE= yes
+USE_GNOME= desktopfileutils glib20 gnomehack gtk20 intltool intlhack pkgconfig gdkpixbuf2
+USE_LDCONFIG= yes
+USE_XFCE= configenv libexo libmenu libutil
+USE_XORG= sm x11
+
+OPTIONS= DBUS "Enable D-BUS support" on \
+ NLS "Enable Native Language Support" on \
+ STARTUP "Enable startup notification support" on \
+ NOTIFY "Enable mount notifications support" on \
+ APIDOCS "Install api documentation" on \
+ PLUG_APR "Thunar Advanced Properties plugin" on \
+ PLUG_APR_EXIF "Exif support for the APR plugin" off \
+ PLUG_SBR "Thunar Simple Builtin Renamers plugin" on \
+ PLUG_SBR_PCRE "Regular expression support for the SBR plugin" off \
+ PLUG_TPA "Thunar Trash Panel Applet plugin" on \
+ PLUG_UCA "Thunar User Customizable Actions plugin" on \
+ PLUG_WALL "Thunar Wallpaper plugin" on
+
+CONFIGURE_ARGS+= --disable-debug \
+ --enable-gio-unix \
+ --disable-gudev
+
+MAN1= Thunar.1
+
+.include <bsd.port.pre.mk>
+
+.if !defined(WITHOUT_DBUS)
+LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
+CONFIGURE_ARGS+=--enable-dbus
+PLIST_SUB+= WITH_DBUS=""
+.else
+CONFIGURE_ARGS+=--disable-dbus
+PLIST_SUB+= WITH_DBUS="@comment "
+.endif
+
+.if !defined(WITHOUT_NLS)
+USE_GETTEXT= yes
+CONFIGURE_ARGS+=--enable-nls
+PLIST_SUB+= NLS=""
+.else
+CONFIGURE_ARGS+=--disable-nls
+PLIST_SUB+= NLS="@comment "
+.endif
+
+.if !defined(WITHOUT_NOTIFY)
+LIB_DEPENDS+= notify.4:${PORTSDIR}/devel/libnotify
+CONFIGURE_ARGS+=--enable-notifications
+.else
+CONFIGURE_ARGS+=--disable-notifications
+.endif
+
+.if defined(WITHOUT_APIDOCS)
+CONFIGURE_ARGS+= --without-html-dir
+PLIST_SUB+= APIDOCS="@comment "
+.else
+CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/gtk-doc/html
+PLIST_SUB+= APIDOCS=""
+.endif
+
+.if !defined(WITHOUT_PLUG_APR)
+CONFIGURE_ARGS+=--enable-apr-plugin
+PLIST_SUB+= PLUGIN_APR=""
+.if defined(WITH_PLUG_APR_EXIF)
+LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif
+CONFIGURE_ARGS+=--enable-exif
+.else
+CONFIGURE_ARGS+=--disable-exif
+.endif
+.else
+CONFIGURE_ARGS+=--disable-apr-plugin --disable-exif
+PLIST_SUB+= PLUGIN_APR="@comment "
+.endif
+
+.if !defined(WITHOUT_PLUG_SBR)
+CONFIGURE_ARGS+=--enable-sbr-plugin
+PLIST_SUB+= PLUGIN_SBR=""
+.if defined(WITH_PLUG_SBR_PCRE)
+LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre
+CONFIGURE_ARGS+=--enable-pcre
+.else
+CONFIGURE_ARGS+=--disable-pcre
+.endif
+.else
+CONFIGURE_ARGS+=--disable-sbr-plugin --disable-pcre
+PLIST_SUB+= PLUGIN_SBR="@comment "
+.endif
+
+.if !defined(WITHOUT_PLUG_TPA)
+#USE_XFCE+= xfcehack
+CONFIGURE_ARGS+=--enable-tpa-plugin
+PLIST_SUB+= PLUGIN_TPA=""
+USE_XFCE+= panel
+.else
+CONFIGURE_ARGS+=--disable-tpa-plugin
+PLIST_SUB+= PLUGIN_TPA="@comment "
+.endif
+
+.if !defined(WITHOUT_PLUG_UCA)
+CONFIGURE_ARGS+=--enable-uca-plugin
+PLIST_SUB+= PLUGIN_UCA=""
+.else
+CONFIGURE_ARGS+=--disable-uca-plugin
+PLIST_SUB+= PLUGIN_UCA="@comment "
+.endif
+
+.if !defined(WITHOUT_PLUG_WALL)
+CONFIGURE_ARGS+=--enable-wallpaper-plugin
+PLIST_SUB+= PLUGIN_WALL=""
+.else
+CONFIGURE_ARGS+=--disable-wallpaper-plugin
+PLIST_SUB+= PLUGIN_WALL="@comment "
+.endif
+
+.if !defined(WITHOUT_STARTUP)
+LIB_DEPENDS+= startup-notification-1.0:${PORTSDIR}/x11/startup-notification
+CONFIGURE_ARGS+=--enable-startup-notification
+.else
+CONFIGURE_ARGS+=--disable-startup-notification
+.endif
+
+.if (${OSVERSION} < 701000)
+CFLAGS+= -DHAVE_SYS_MOUNT_H
+.endif
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|docdir = .*|docdir = ${DOCSDIR}|' \
+ ${WRKSRC}/docs/Makefile.in
+ @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e 's|enable_val|enableval|g' ${WRKSRC}/configure
+
+post-install:
+ @-update-desktop-database
+
+.include <bsd.port.post.mk>
diff --git a/x11-fm/thunar/distinfo b/x11-fm/thunar/distinfo
new file mode 100644
index 000000000..9067d9d70
--- /dev/null
+++ b/x11-fm/thunar/distinfo
@@ -0,0 +1,2 @@
+SHA256 (xfce4/Thunar-1.2.1.tar.bz2) = 67e9886895771cf3b51af1ac5e13cb9e3892d2546a1a814869f83be06409a49b
+SIZE (xfce4/Thunar-1.2.1.tar.bz2) = 4181843
diff --git a/x11-fm/thunar/pkg-descr b/x11-fm/thunar/pkg-descr
new file mode 100644
index 000000000..8660ec5c9
--- /dev/null
+++ b/x11-fm/thunar/pkg-descr
@@ -0,0 +1,8 @@
+Thunar is a new modern file manager for the Xfce Desktop Environment.
+Thunar has been designed from the ground up to be fast and easy-to-use.
+Its user interface is clean and intuitive, and does not include any
+confusing or useless options. Thunar is fast and responsive with a good
+start up time and directory load time. Thunar is accessible using
+Assistive Technologies and is fully standards compliant.
+
+WWW: http://thunar.xfce.org/
diff --git a/x11-fm/thunar/pkg-plist b/x11-fm/thunar/pkg-plist
new file mode 100644
index 000000000..e1f942c7d
--- /dev/null
+++ b/x11-fm/thunar/pkg-plist
@@ -0,0 +1,460 @@
+bin/Thunar
+bin/thunar
+bin/thunar-settings
+%%PLUGIN_UCA%%etc/xdg/Thunar/uca.xml
+include/thunarx-2/thunarx/thunarx-config.h
+include/thunarx-2/thunarx/thunarx-file-info.h
+include/thunarx-2/thunarx/thunarx-menu-provider.h
+include/thunarx-2/thunarx/thunarx-preferences-provider.h
+include/thunarx-2/thunarx/thunarx-property-page-provider.h
+include/thunarx-2/thunarx/thunarx-property-page.h
+include/thunarx-2/thunarx/thunarx-provider-factory.h
+include/thunarx-2/thunarx/thunarx-provider-plugin.h
+include/thunarx-2/thunarx/thunarx-renamer-provider.h
+include/thunarx-2/thunarx/thunarx-renamer.h
+include/thunarx-2/thunarx/thunarx.h
+lib/Thunar/ThunarBulkRename
+lib/Thunar/ThunarHelp
+lib/Thunar/thunar-sendto-email
+lib/libthunarx-2.la
+lib/libthunarx-2.so
+lib/libthunarx-2.so.0
+%%PLUGIN_APR%%lib/thunarx-2/thunar-apr.la
+%%PLUGIN_APR%%lib/thunarx-2/thunar-apr.so
+%%PLUGIN_SBR%%lib/thunarx-2/thunar-sbr.la
+%%PLUGIN_SBR%%lib/thunarx-2/thunar-sbr.so
+%%PLUGIN_UCA%%lib/thunarx-2/thunar-uca.la
+%%PLUGIN_UCA%%lib/thunarx-2/thunar-uca.so
+%%PLUGIN_WALL%%lib/thunarx-2/thunar-wallpaper-plugin.la
+%%PLUGIN_WALL%%lib/thunarx-2/thunar-wallpaper-plugin.so
+%%PLUGIN_TPA%%lib/xfce4/panel/plugins/libthunar-tpa.la
+%%PLUGIN_TPA%%lib/xfce4/panel/plugins/libthunar-tpa.so
+libdata/pkgconfig/thunarx-2.pc
+share/Thunar/sendto/thunar-sendto-email.desktop
+share/applications/Thunar-bulk-rename.desktop
+share/applications/Thunar-folder-handler.desktop
+share/applications/Thunar.desktop
+share/applications/thunar-settings.desktop
+%%WITH_DBUS%%share/dbus-1/services/org.xfce.FileManager.service
+%%WITH_DBUS%%share/dbus-1/services/org.xfce.Thunar.service
+%%DOCSDIR%%/README.gtkrc
+%%DOCSDIR%%/README.thunarrc
+%%DOCSDIR%%/html/C/advanced-topics.html
+%%DOCSDIR%%/html/C/copyright.html
+%%DOCSDIR%%/html/C/customizing-thunar.html
+%%DOCSDIR%%/html/C/faq.html
+%%DOCSDIR%%/html/C/images/bulk-rename.png
+%%DOCSDIR%%/html/C/images/file-manager-window.png
+%%DOCSDIR%%/html/C/images/file-properties.png
+%%DOCSDIR%%/html/C/images/preferences-advanced.png
+%%DOCSDIR%%/html/C/images/preferences-behavior.png
+%%DOCSDIR%%/html/C/images/preferences-side-pane.png
+%%DOCSDIR%%/html/C/images/preferences-views.png
+%%DOCSDIR%%/html/C/images/removable-drives-and-media.png
+%%DOCSDIR%%/html/C/images/removable-media-unmount.png
+%%DOCSDIR%%/html/C/images/sendto-menu.png
+%%DOCSDIR%%/html/C/images/visible-columns.png
+%%DOCSDIR%%/html/C/index.html
+%%DOCSDIR%%/html/C/preferences.html
+%%DOCSDIR%%/html/C/support.html
+%%DOCSDIR%%/html/C/the-file-manager-window.html
+%%DOCSDIR%%/html/C/using-removable-media.html
+%%DOCSDIR%%/html/C/working-with-files-and-folders.html
+%%DOCSDIR%%/html/bn/advanced-topics.html
+%%DOCSDIR%%/html/bn/copyright.html
+%%DOCSDIR%%/html/bn/customizing-thunar.html
+%%DOCSDIR%%/html/bn/faq.html
+%%DOCSDIR%%/html/bn/images
+%%DOCSDIR%%/html/bn/index.html
+%%DOCSDIR%%/html/bn/preferences.html
+%%DOCSDIR%%/html/bn/support.html
+%%DOCSDIR%%/html/bn/the-file-manager-window.html
+%%DOCSDIR%%/html/bn/using-removable-media.html
+%%DOCSDIR%%/html/bn/working-with-files-and-folders.html
+%%DOCSDIR%%/html/ca/advanced-topics.html
+%%DOCSDIR%%/html/ca/copyright.html
+%%DOCSDIR%%/html/ca/customizing-thunar.html
+%%DOCSDIR%%/html/ca/faq.html
+%%DOCSDIR%%/html/ca/images
+%%DOCSDIR%%/html/ca/index.html
+%%DOCSDIR%%/html/ca/preferences.html
+%%DOCSDIR%%/html/ca/support.html
+%%DOCSDIR%%/html/ca/the-file-manager-window.html
+%%DOCSDIR%%/html/ca/using-removable-media.html
+%%DOCSDIR%%/html/ca/working-with-files-and-folders.html
+%%DOCSDIR%%/html/da/advanced-topics.html
+%%DOCSDIR%%/html/da/copyright.html
+%%DOCSDIR%%/html/da/customizing-thunar.html
+%%DOCSDIR%%/html/da/faq.html
+%%DOCSDIR%%/html/da/images
+%%DOCSDIR%%/html/da/index.html
+%%DOCSDIR%%/html/da/preferences.html
+%%DOCSDIR%%/html/da/support.html
+%%DOCSDIR%%/html/da/the-file-manager-window.html
+%%DOCSDIR%%/html/da/using-removable-media.html
+%%DOCSDIR%%/html/da/working-with-files-and-folders.html
+%%DOCSDIR%%/html/es/advanced-topics.html
+%%DOCSDIR%%/html/es/copyright.html
+%%DOCSDIR%%/html/es/customizing-thunar.html
+%%DOCSDIR%%/html/es/faq.html
+%%DOCSDIR%%/html/es/images
+%%DOCSDIR%%/html/es/index.html
+%%DOCSDIR%%/html/es/preferences.html
+%%DOCSDIR%%/html/es/support.html
+%%DOCSDIR%%/html/es/the-file-manager-window.html
+%%DOCSDIR%%/html/es/using-removable-media.html
+%%DOCSDIR%%/html/es/working-with-files-and-folders.html
+%%DOCSDIR%%/html/eu/advanced-topics.html
+%%DOCSDIR%%/html/eu/copyright.html
+%%DOCSDIR%%/html/eu/customizing-thunar.html
+%%DOCSDIR%%/html/eu/faq.html
+%%DOCSDIR%%/html/eu/images
+%%DOCSDIR%%/html/eu/index.html
+%%DOCSDIR%%/html/eu/preferences.html
+%%DOCSDIR%%/html/eu/support.html
+%%DOCSDIR%%/html/eu/the-file-manager-window.html
+%%DOCSDIR%%/html/eu/using-removable-media.html
+%%DOCSDIR%%/html/eu/working-with-files-and-folders.html
+%%DOCSDIR%%/html/fr/advanced-topics.html
+%%DOCSDIR%%/html/fr/copyright.html
+%%DOCSDIR%%/html/fr/customizing-thunar.html
+%%DOCSDIR%%/html/fr/faq.html
+%%DOCSDIR%%/html/fr/images/bulk-rename.png
+%%DOCSDIR%%/html/fr/images/file-manager-window.png
+%%DOCSDIR%%/html/fr/images/file-properties.png
+%%DOCSDIR%%/html/fr/images/preferences-advanced.png
+%%DOCSDIR%%/html/fr/images/preferences-behavior.png
+%%DOCSDIR%%/html/fr/images/preferences-side-pane.png
+%%DOCSDIR%%/html/fr/images/preferences-views.png
+%%DOCSDIR%%/html/fr/images/removable-drives-and-media.png
+%%DOCSDIR%%/html/fr/images/removable-media-unmount.png
+%%DOCSDIR%%/html/fr/images/sendto-menu.png
+%%DOCSDIR%%/html/fr/images/visible-columns.png
+%%DOCSDIR%%/html/fr/index.html
+%%DOCSDIR%%/html/fr/preferences.html
+%%DOCSDIR%%/html/fr/support.html
+%%DOCSDIR%%/html/fr/the-file-manager-window.html
+%%DOCSDIR%%/html/fr/using-removable-media.html
+%%DOCSDIR%%/html/fr/working-with-files-and-folders.html
+%%DOCSDIR%%/html/gl/advanced-topics.html
+%%DOCSDIR%%/html/gl/copyright.html
+%%DOCSDIR%%/html/gl/customizing-thunar.html
+%%DOCSDIR%%/html/gl/faq.html
+%%DOCSDIR%%/html/gl/images
+%%DOCSDIR%%/html/gl/index.html
+%%DOCSDIR%%/html/gl/preferences.html
+%%DOCSDIR%%/html/gl/support.html
+%%DOCSDIR%%/html/gl/the-file-manager-window.html
+%%DOCSDIR%%/html/gl/using-removable-media.html
+%%DOCSDIR%%/html/gl/working-with-files-and-folders.html
+%%DOCSDIR%%/html/id/advanced-topics.html
+%%DOCSDIR%%/html/id/copyright.html
+%%DOCSDIR%%/html/id/customizing-thunar.html
+%%DOCSDIR%%/html/id/faq.html
+%%DOCSDIR%%/html/id/images
+%%DOCSDIR%%/html/id/index.html
+%%DOCSDIR%%/html/id/preferences.html
+%%DOCSDIR%%/html/id/support.html
+%%DOCSDIR%%/html/id/the-file-manager-window.html
+%%DOCSDIR%%/html/id/using-removable-media.html
+%%DOCSDIR%%/html/id/working-with-files-and-folders.html
+%%DOCSDIR%%/html/it/advanced-topics.html
+%%DOCSDIR%%/html/it/copyright.html
+%%DOCSDIR%%/html/it/customizing-thunar.html
+%%DOCSDIR%%/html/it/faq.html
+%%DOCSDIR%%/html/it/images
+%%DOCSDIR%%/html/it/index.html
+%%DOCSDIR%%/html/it/preferences.html
+%%DOCSDIR%%/html/it/support.html
+%%DOCSDIR%%/html/it/the-file-manager-window.html
+%%DOCSDIR%%/html/it/using-removable-media.html
+%%DOCSDIR%%/html/it/working-with-files-and-folders.html
+%%DOCSDIR%%/html/ja/advanced-topics.html
+%%DOCSDIR%%/html/ja/copyright.html
+%%DOCSDIR%%/html/ja/customizing-thunar.html
+%%DOCSDIR%%/html/ja/faq.html
+%%DOCSDIR%%/html/ja/images/bulk-rename.png
+%%DOCSDIR%%/html/ja/images/file-manager-window.png
+%%DOCSDIR%%/html/ja/images/file-properties.png
+%%DOCSDIR%%/html/ja/images/preferences-advanced.png
+%%DOCSDIR%%/html/ja/images/preferences-behavior.png
+%%DOCSDIR%%/html/ja/images/preferences-side-pane.png
+%%DOCSDIR%%/html/ja/images/preferences-views.png
+%%DOCSDIR%%/html/ja/images/removable-drives-and-media.png
+%%DOCSDIR%%/html/ja/images/removable-media-unmount.png
+%%DOCSDIR%%/html/ja/images/sendto-menu.png
+%%DOCSDIR%%/html/ja/images/visible-columns.png
+%%DOCSDIR%%/html/ja/index.html
+%%DOCSDIR%%/html/ja/preferences.html
+%%DOCSDIR%%/html/ja/support.html
+%%DOCSDIR%%/html/ja/the-file-manager-window.html
+%%DOCSDIR%%/html/ja/using-removable-media.html
+%%DOCSDIR%%/html/ja/working-with-files-and-folders.html
+%%DOCSDIR%%/html/nl/advanced-topics.html
+%%DOCSDIR%%/html/nl/copyright.html
+%%DOCSDIR%%/html/nl/customizing-thunar.html
+%%DOCSDIR%%/html/nl/faq.html
+%%DOCSDIR%%/html/nl/images
+%%DOCSDIR%%/html/nl/index.html
+%%DOCSDIR%%/html/nl/preferences.html
+%%DOCSDIR%%/html/nl/support.html
+%%DOCSDIR%%/html/nl/the-file-manager-window.html
+%%DOCSDIR%%/html/nl/using-removable-media.html
+%%DOCSDIR%%/html/nl/working-with-files-and-folders.html
+%%DOCSDIR%%/html/pl/advanced-topics.html
+%%DOCSDIR%%/html/pl/copyright.html
+%%DOCSDIR%%/html/pl/customizing-thunar.html
+%%DOCSDIR%%/html/pl/faq.html
+%%DOCSDIR%%/html/pl/images/bulk-rename.png
+%%DOCSDIR%%/html/pl/images/file-manager-window.png
+%%DOCSDIR%%/html/pl/images/file-properties.png
+%%DOCSDIR%%/html/pl/images/preferences-advanced.png
+%%DOCSDIR%%/html/pl/images/preferences-behavior.png
+%%DOCSDIR%%/html/pl/images/preferences-side-pane.png
+%%DOCSDIR%%/html/pl/images/preferences-views.png
+%%DOCSDIR%%/html/pl/images/removable-drives-and-media.png
+%%DOCSDIR%%/html/pl/images/removable-media-unmount.png
+%%DOCSDIR%%/html/pl/images/sendto-menu.png
+%%DOCSDIR%%/html/pl/images/visible-columns.png
+%%DOCSDIR%%/html/pl/index.html
+%%DOCSDIR%%/html/pl/preferences.html
+%%DOCSDIR%%/html/pl/support.html
+%%DOCSDIR%%/html/pl/the-file-manager-window.html
+%%DOCSDIR%%/html/pl/using-removable-media.html
+%%DOCSDIR%%/html/pl/working-with-files-and-folders.html
+%%DOCSDIR%%/html/ru/advanced-topics.html
+%%DOCSDIR%%/html/ru/copyright.html
+%%DOCSDIR%%/html/ru/customizing-thunar.html
+%%DOCSDIR%%/html/ru/faq.html
+%%DOCSDIR%%/html/ru/images
+%%DOCSDIR%%/html/ru/index.html
+%%DOCSDIR%%/html/ru/preferences.html
+%%DOCSDIR%%/html/ru/support.html
+%%DOCSDIR%%/html/ru/the-file-manager-window.html
+%%DOCSDIR%%/html/ru/using-removable-media.html
+%%DOCSDIR%%/html/ru/working-with-files-and-folders.html
+%%DOCSDIR%%/html/sv/advanced-topics.html
+%%DOCSDIR%%/html/sv/copyright.html
+%%DOCSDIR%%/html/sv/customizing-thunar.html
+%%DOCSDIR%%/html/sv/faq.html
+%%DOCSDIR%%/html/sv/images
+%%DOCSDIR%%/html/sv/index.html
+%%DOCSDIR%%/html/sv/preferences.html
+%%DOCSDIR%%/html/sv/support.html
+%%DOCSDIR%%/html/sv/the-file-manager-window.html
+%%DOCSDIR%%/html/sv/using-removable-media.html
+%%DOCSDIR%%/html/sv/working-with-files-and-folders.html
+%%DOCSDIR%%/html/thunar.css
+%%DOCSDIR%%/html/tr/advanced-topics.html
+%%DOCSDIR%%/html/tr/copyright.html
+%%DOCSDIR%%/html/tr/customizing-thunar.html
+%%DOCSDIR%%/html/tr/faq.html
+%%DOCSDIR%%/html/tr/images
+%%DOCSDIR%%/html/tr/index.html
+%%DOCSDIR%%/html/tr/preferences.html
+%%DOCSDIR%%/html/tr/support.html
+%%DOCSDIR%%/html/tr/the-file-manager-window.html
+%%DOCSDIR%%/html/tr/using-removable-media.html
+%%DOCSDIR%%/html/tr/working-with-files-and-folders.html
+%%DOCSDIR%%/html/ug/advanced-topics.html
+%%DOCSDIR%%/html/ug/copyright.html
+%%DOCSDIR%%/html/ug/customizing-thunar.html
+%%DOCSDIR%%/html/ug/faq.html
+%%DOCSDIR%%/html/ug/images
+%%DOCSDIR%%/html/ug/index.html
+%%DOCSDIR%%/html/ug/preferences.html
+%%DOCSDIR%%/html/ug/support.html
+%%DOCSDIR%%/html/ug/the-file-manager-window.html
+%%DOCSDIR%%/html/ug/using-removable-media.html
+%%DOCSDIR%%/html/ug/working-with-files-and-folders.html
+%%DOCSDIR%%/html/zh_CN/advanced-topics.html
+%%DOCSDIR%%/html/zh_CN/copyright.html
+%%DOCSDIR%%/html/zh_CN/customizing-thunar.html
+%%DOCSDIR%%/html/zh_CN/faq.html
+%%DOCSDIR%%/html/zh_CN/images
+%%DOCSDIR%%/html/zh_CN/index.html
+%%DOCSDIR%%/html/zh_CN/preferences.html
+%%DOCSDIR%%/html/zh_CN/support.html
+%%DOCSDIR%%/html/zh_CN/the-file-manager-window.html
+%%DOCSDIR%%/html/zh_CN/using-removable-media.html
+%%DOCSDIR%%/html/zh_CN/working-with-files-and-folders.html
+%%DOCSDIR%%/html/zh_TW/advanced-topics.html
+%%DOCSDIR%%/html/zh_TW/copyright.html
+%%DOCSDIR%%/html/zh_TW/customizing-thunar.html
+%%DOCSDIR%%/html/zh_TW/faq.html
+%%DOCSDIR%%/html/zh_TW/images
+%%DOCSDIR%%/html/zh_TW/index.html
+%%DOCSDIR%%/html/zh_TW/preferences.html
+%%DOCSDIR%%/html/zh_TW/support.html
+%%DOCSDIR%%/html/zh_TW/the-file-manager-window.html
+%%DOCSDIR%%/html/zh_TW/using-removable-media.html
+%%DOCSDIR%%/html/zh_TW/working-with-files-and-folders.html
+%%DOCSDIR%%/html/el/advanced-topics.html
+%%DOCSDIR%%/html/el/copyright.html
+%%DOCSDIR%%/html/el/customizing-thunar.html
+%%DOCSDIR%%/html/el/faq.html
+%%DOCSDIR%%/html/el/index.html
+%%DOCSDIR%%/html/el/preferences.html
+%%DOCSDIR%%/html/el/support.html
+%%DOCSDIR%%/html/el/the-file-manager-window.html
+%%DOCSDIR%%/html/el/using-removable-media.html
+%%DOCSDIR%%/html/el/working-with-files-and-folders.html
+%%DOCSDIR%%/html/el/images
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxFileInfo.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxMenuProvider.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxPreferencesProvider.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxPropertyPage.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxPropertyPageProvider.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxProviderFactory.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxProviderPlugin.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxRenamer.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/ThunarxRenamerProvider.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/abstraction.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/bulk-rename.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/home.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/index.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/index.sgml
+%%APIDOCS%%share/gtk-doc/html/thunarx/ix01.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/left.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/menu-provider.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/right.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/say-hello.png
+%%APIDOCS%%share/gtk-doc/html/thunarx/style.css
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-Variables-and-functions-to-check-the-library-version.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-abstraction-layer.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-fundamentals.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-overview.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-providers.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-using-extensions.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-writing-extensions-advanced-topics.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-writing-extensions-getting-started.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx-writing-extensions.html
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx.devhelp
+%%APIDOCS%%share/gtk-doc/html/thunarx/thunarx.devhelp2
+%%APIDOCS%%share/gtk-doc/html/thunarx/up.png
+share/icons/hicolor/16x16/apps/Thunar.png
+share/icons/hicolor/16x16/stock/navigation/stock_thunar-shortcuts.png
+share/icons/hicolor/16x16/stock/navigation/stock_thunar-templates.png
+share/icons/hicolor/16x16/stock/navigation/stock_folder-copy.png
+share/icons/hicolor/16x16/stock/navigation/stock_folder-move.png
+share/icons/hicolor/24x24/stock/navigation/stock_folder-copy.png
+share/icons/hicolor/24x24/stock/navigation/stock_folder-move.png
+share/icons/hicolor/24x24/apps/Thunar.png
+share/icons/hicolor/48x48/apps/Thunar.png
+share/icons/hicolor/scalable/apps/Thunar.svg
+%%NLS%%share/locale/ar/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/be/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/da/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/de/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/dz/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/el/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/es/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/et/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/he/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/id/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/it/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ka/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/kk/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ku/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/nn/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/pa/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/si/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/sq/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ug/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ur/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/ur_PK/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/Thunar.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/Thunar.mo
+share/pixmaps/Thunar/Thunar-about-logo.png
+%%PLUGIN_TPA%%share/xfce4/panel-plugins/thunar-tpa.desktop
+%%PLUGIN_TPA%%@dirrmtry share/xfce4/panel-plugins
+%%PLUGIN_TPA%%@dirrmtry share/xfce4/panel/plugins
+%%PLUGIN_TPA%%@dirrmtry share/xfce4/panel
+%%PLUGIN_TPA%%@dirrmtry share/xfce4
+@dirrm share/pixmaps/Thunar
+@exec %%LOCALBASE%%/bin/update-desktop-database >/dev/null || /usr/bin/true
+@unexec %%LOCALBASE%%/bin/update-desktop-database >/dev/null || /usr/bin/true
+%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur_PK
+%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur
+%%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ug
+%%NLS%%@dirrmtry share/locale/sk/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/sk
+%%NLS%%@dirrmtry share/locale/si/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/si
+%%NLS%%@dirrmtry share/locale/ku/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ku
+%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/kk
+%%NLS%%@dirrmtry share/locale/dz/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/dz
+%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ast
+%%APIDOCS%%@dirrm share/gtk-doc/html/thunarx
+%%APIDOCS%%@dirrmtry share/gtk-doc/html
+%%APIDOCS%%@dirrmtry share/gtk-doc
+@dirrm %%DOCSDIR%%/html/zh_TW
+@dirrm %%DOCSDIR%%/html/zh_CN
+@dirrm %%DOCSDIR%%/html/ug
+@dirrm %%DOCSDIR%%/html/tr
+@dirrm %%DOCSDIR%%/html/sv
+@dirrm %%DOCSDIR%%/html/ru
+@dirrm %%DOCSDIR%%/html/pl/images
+@dirrm %%DOCSDIR%%/html/pl
+@dirrm %%DOCSDIR%%/html/nl
+@dirrm %%DOCSDIR%%/html/ja/images
+@dirrm %%DOCSDIR%%/html/ja
+@dirrm %%DOCSDIR%%/html/it
+@dirrm %%DOCSDIR%%/html/id
+@dirrm %%DOCSDIR%%/html/gl
+@dirrm %%DOCSDIR%%/html/fr/images
+@dirrm %%DOCSDIR%%/html/fr
+@dirrm %%DOCSDIR%%/html/eu
+@dirrm %%DOCSDIR%%/html/es
+@dirrm %%DOCSDIR%%/html/da
+@dirrm %%DOCSDIR%%/html/ca
+@dirrm %%DOCSDIR%%/html/bn
+@dirrm %%DOCSDIR%%/html/el
+@dirrm %%DOCSDIR%%/html/C/images
+@dirrm %%DOCSDIR%%/html/C
+@dirrm %%DOCSDIR%%/html
+@dirrm %%DOCSDIR%%
+@dirrm share/Thunar/sendto
+@dirrm share/Thunar
+@dirrmtry lib/thunarx-2
+@dirrm lib/Thunar
+@dirrm include/thunarx-2/thunarx
+@dirrm include/thunarx-2
+%%PLUGIN_UCA%%@dirrm etc/xdg/Thunar
+%%PLUGIN_UCA%%@dirrmtry etc/xdg