diff options
91 files changed, 228 insertions, 287 deletions
diff --git a/Mk/bsd.xfce.mk b/Mk/bsd.xfce.mk index 4877ae5af1d3..6f930afaaf71 100644 --- a/Mk/bsd.xfce.mk +++ b/Mk/bsd.xfce.mk @@ -15,7 +15,7 @@ Xfce_Include_MAINTAINER= oliver@FreeBSD.org _USE_XFCE_ALL= configenv libexo libgui libmenu libutil panel \ thunar wm xfconf xfdev -MASTER_SITE_SUBDIR?= xfce-4.6.0 +MASTER_SITE_SUBDIR?= xfce-4.6.1 configenv_CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib" diff --git a/archivers/thunar-archive-plugin/Makefile b/archivers/thunar-archive-plugin/Makefile index be6a34dd06d9..4e5c0fea5050 100644 --- a/archivers/thunar-archive-plugin/Makefile +++ b/archivers/thunar-archive-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= thunar-archive-plugin PORTVERSION= 0.2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers xfce MASTER_SITES= BERLIOS MASTER_SITE_SUBDIR= xfce-goodies diff --git a/audio/thunar-media-tags-plugin/Makefile b/audio/thunar-media-tags-plugin/Makefile index c30a286da035..9eb89ba68c5b 100644 --- a/audio/thunar-media-tags-plugin/Makefile +++ b/audio/thunar-media-tags-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= thunar-media-tags-plugin PORTVERSION= 0.1.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= audio xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/audio/xfce4-mixer/Makefile b/audio/xfce4-mixer/Makefile index ba3c5f4169fa..be9da5311305 100644 --- a/audio/xfce4-mixer/Makefile +++ b/audio/xfce4-mixer/Makefile @@ -6,8 +6,7 @@ # PORTNAME= xfce4-mixer -PORTVERSION= 4.6.0 -PORTREVISION= 1 +PORTVERSION= 4.6.1 CATEGORIES= audio xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/audio/xfce4-mixer/distinfo b/audio/xfce4-mixer/distinfo index 04675fa7cc3c..0a0d0342966b 100644 --- a/audio/xfce4-mixer/distinfo +++ b/audio/xfce4-mixer/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-mixer-4.6.0.tar.bz2) = ee7956a73efe43da4b27ad9cd1f4d20b -SHA256 (xfce4/xfce4-mixer-4.6.0.tar.bz2) = ce5c4103ee092c8d17bcd7ab6de215244ffe33e4634ae94e901c2f6c86bf5d0d -SIZE (xfce4/xfce4-mixer-4.6.0.tar.bz2) = 410876 +MD5 (xfce4/xfce4-mixer-4.6.1.tar.bz2) = a99e2455445480ef5081fe69454a46fc +SHA256 (xfce4/xfce4-mixer-4.6.1.tar.bz2) = cf7b8af6696b0e3795ab65d15a8b5d217123955919713f7bae86008b56abb5dd +SIZE (xfce4/xfce4-mixer-4.6.1.tar.bz2) = 412483 diff --git a/audio/xfce4-mixer/files/patch-r29703 b/audio/xfce4-mixer/files/patch-r29703 deleted file mode 100644 index 2494ba8c4f08..000000000000 --- a/audio/xfce4-mixer/files/patch-r29703 +++ /dev/null @@ -1,139 +0,0 @@ -Modified: panel-plugin/xfce-mixer-plugin.c -=================================================================== ---- panel-plugin/xfce-mixer-plugin.c 2009-04-04 10:12:48 UTC (rev 29702) -+++ panel-plugin/xfce-mixer-plugin.c 2009-04-05 09:08:37 UTC (rev 29703) -@@ -86,8 +86,8 @@ - /* Function prototypes */ - static void xfce_mixer_plugin_construct (XfcePanelPlugin *plugin); - static XfceMixerPlugin *xfce_mixer_plugin_new (XfcePanelPlugin *plugin); --static void xfce_mixer_plugin_free (XfcePanelPlugin *plugin, -- XfceMixerPlugin *mixer_plugin); -+static void xfce_mixer_plugin_free (XfceMixerPlugin *mixer_plugin, -+ XfcePanelPlugin *plugin); - static gboolean xfce_mixer_plugin_size_changed (XfceMixerPlugin *mixer_plugin, - gint size); - static void xfce_mixer_plugin_volume_changed (XfceMixerPlugin *mixer_plugin, -@@ -167,8 +167,8 @@ - - - static void --xfce_mixer_plugin_free (XfcePanelPlugin *plugin, -- XfceMixerPlugin *mixer_plugin) -+xfce_mixer_plugin_free (XfceMixerPlugin *mixer_plugin, -+ XfcePanelPlugin *plugin) - { - /* Free card and track names */ - g_free (mixer_plugin->command); -@@ -529,9 +529,11 @@ - static void - xfce_mixer_plugin_update_track (XfceMixerPlugin *mixer_plugin) - { -- gint *volumes; -- gdouble volume; -- gchar *tip_text; -+ XfceMixerTrackType track_type; -+ gboolean muted = FALSE; -+ gdouble volume; -+ gint *volumes; -+ gchar *tip_text; - - g_return_if_fail (mixer_plugin != NULL); - g_return_if_fail (GST_IS_MIXER (mixer_plugin->card)); -@@ -549,8 +551,17 @@ - gtk_tooltips_set_tip (mixer_plugin->tooltips, mixer_plugin->button, tip_text, "test"); - g_free (tip_text); - -+ /* Determine track type */ -+ track_type = xfce_mixer_track_type_new (mixer_plugin->track); -+ -+ if (G_LIKELY (track_type == XFCE_MIXER_TRACK_TYPE_PLAYBACK)) -+ muted = GST_MIXER_TRACK_HAS_FLAG (mixer_plugin->track, GST_MIXER_TRACK_MUTE); -+ else if (track_type == XFCE_MIXER_TRACK_TYPE_CAPTURE) -+ muted = !GST_MIXER_TRACK_HAS_FLAG (mixer_plugin->track, GST_MIXER_TRACK_RECORD); -+ - /* Update the volume button */ - xfce_volume_button_set_volume (XFCE_VOLUME_BUTTON (mixer_plugin->button), volume); -+ xfce_volume_button_set_muted (XFCE_VOLUME_BUTTON (mixer_plugin->button), muted); - - /* Free volume array */ - g_free (volumes); -@@ -650,7 +661,9 @@ - - /* Replace the track label */ - g_free (mixer_plugin->track_label); -+ mixer_plugin->track_label = NULL; - g_object_get (track, "label", &mixer_plugin->track_label, NULL); -+ g_debug ("mixer_plugin->track_label = '%s'", mixer_plugin->track_label); - } - - - -Modified: xfce4-mixer/xfce-mixer-track.c -=================================================================== ---- xfce4-mixer/xfce-mixer-track.c 2009-04-04 10:12:48 UTC (rev 29702) -+++ xfce4-mixer/xfce-mixer-track.c 2009-04-05 09:08:37 UTC (rev 29703) -@@ -265,8 +265,7 @@ - - /* Some of the mixer controls need to be updated before they can be used */ - xfce_mixer_track_update_mute (track); -- if (G_UNLIKELY (xfce_mixer_track_type_new (track->gst_track) == XFCE_MIXER_TRACK_TYPE_CAPTURE)) -- xfce_mixer_track_update_record (track); -+ xfce_mixer_track_update_record (track); - - /* Free volume array */ - g_free (volumes); -@@ -425,11 +424,11 @@ - - g_return_if_fail (IS_XFCE_MIXER_TRACK (track)); - -- if (G_UNLIKELY (xfce_mixer_track_type_new (track->gst_track) == XFCE_MIXER_TRACK_TYPE_CAPTURE)) -- return; -- -- muted = GST_MIXER_TRACK_HAS_FLAG (track->gst_track, GST_MIXER_TRACK_MUTE); -- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (track->mute_button), muted); -+ if (G_LIKELY (xfce_mixer_track_type_new (track->gst_track) != XFCE_MIXER_TRACK_TYPE_CAPTURE)) -+ { -+ muted = GST_MIXER_TRACK_HAS_FLAG (track->gst_track, GST_MIXER_TRACK_MUTE); -+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (track->mute_button), muted); -+ } - } - - -@@ -441,8 +440,11 @@ - - g_return_if_fail (IS_XFCE_MIXER_TRACK (track)); - -- record = GST_MIXER_TRACK_HAS_FLAG (track->gst_track, GST_MIXER_TRACK_RECORD); -- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (track->record_button), record); -+ if (G_UNLIKELY (xfce_mixer_track_type_new (track->gst_track) == XFCE_MIXER_TRACK_TYPE_CAPTURE)) -+ { -+ record = GST_MIXER_TRACK_HAS_FLAG (track->gst_track, GST_MIXER_TRACK_RECORD); -+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (track->record_button), record); -+ } - } - - - -Modified: xfce4-mixer/xfce-mixer.c -=================================================================== ---- xfce4-mixer/xfce-mixer.c 2009-04-04 10:12:48 UTC (rev 29702) -+++ xfce4-mixer/xfce-mixer.c 2009-04-05 09:08:37 UTC (rev 29703) -@@ -351,7 +351,7 @@ - switch (prop_id) - { - case PROP_CARD: -- g_value_set_object (value, g_object_ref (mixer->card)); -+ g_value_set_object (value, mixer->card); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); -@@ -372,7 +372,7 @@ - switch (prop_id) - { - case PROP_CARD: -- mixer->card = g_object_ref (g_value_get_object (value)); -+ mixer->card = g_value_dup_object (value); - break; - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - diff --git a/audio/xfce4-mixer/pkg-plist b/audio/xfce4-mixer/pkg-plist index 4c2e1de829ec..caf7b218a09f 100644 --- a/audio/xfce4-mixer/pkg-plist +++ b/audio/xfce4-mixer/pkg-plist @@ -14,12 +14,13 @@ share/locale/fr/LC_MESSAGES/xfce4-mixer.mo share/locale/gl/LC_MESSAGES/xfce4-mixer.mo share/locale/hu/LC_MESSAGES/xfce4-mixer.mo share/locale/id/LC_MESSAGES/xfce4-mixer.mo +share/locale/it/LC_MESSAGES/xfce4-mixer.mo share/locale/ja/LC_MESSAGES/xfce4-mixer.mo -share/locale/nb_NO/LC_MESSAGES/xfce4-mixer.mo +share/locale/nb/LC_MESSAGES/xfce4-mixer.mo share/locale/nl/LC_MESSAGES/xfce4-mixer.mo share/locale/pl/LC_MESSAGES/xfce4-mixer.mo share/locale/pt_BR/LC_MESSAGES/xfce4-mixer.mo -share/locale/pt_PT/LC_MESSAGES/xfce4-mixer.mo +share/locale/pt/LC_MESSAGES/xfce4-mixer.mo share/locale/ru/LC_MESSAGES/xfce4-mixer.mo share/locale/si/LC_MESSAGES/xfce4-mixer.mo share/locale/sv/LC_MESSAGES/xfce4-mixer.mo diff --git a/audio/xfce4-mpc-plugin/Makefile b/audio/xfce4-mpc-plugin/Makefile index 47d81808cd59..8b903306a1f1 100644 --- a/audio/xfce4-mpc-plugin/Makefile +++ b/audio/xfce4-mpc-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-mpc-plugin PORTVERSION= 0.3.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/audio/xfmpc/Makefile b/audio/xfmpc/Makefile index de7488443697..fd804b595bfa 100644 --- a/audio/xfmpc/Makefile +++ b/audio/xfmpc/Makefile @@ -7,6 +7,7 @@ PORTNAME= xfmpc PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= audio xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/deskutils/orage/Makefile b/deskutils/orage/Makefile index 1790da3c2928..b981e345fac3 100644 --- a/deskutils/orage/Makefile +++ b/deskutils/orage/Makefile @@ -6,8 +6,7 @@ # PORTNAME= orage -PORTVERSION= 4.6.0 -PORTREVISION= 1 +PORTVERSION= 4.6.1 CATEGORIES= deskutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/deskutils/orage/distinfo b/deskutils/orage/distinfo index 87c2d386de75..3cab6aec43be 100644 --- a/deskutils/orage/distinfo +++ b/deskutils/orage/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/orage-4.6.0.tar.bz2) = c3f71a922f9032119dbb1b37a09adf93 -SHA256 (xfce4/orage-4.6.0.tar.bz2) = ec284731ed0f06bb2753be853a3a742383e8d35b29a894292cbeb3fea8a93445 -SIZE (xfce4/orage-4.6.0.tar.bz2) = 1934900 +MD5 (xfce4/orage-4.6.1.tar.bz2) = 24fa43dd86ec5af5a4766620fd972cf2 +SHA256 (xfce4/orage-4.6.1.tar.bz2) = f1580f5f0082eff89f7a76a57da9dce7e7d5380804939771611499482523bd4d +SIZE (xfce4/orage-4.6.1.tar.bz2) = 1937593 diff --git a/deskutils/orage/pkg-plist b/deskutils/orage/pkg-plist index dc43cf1faebf..7816fef2bc03 100644 --- a/deskutils/orage/pkg-plist +++ b/deskutils/orage/pkg-plist @@ -38,7 +38,7 @@ share/locale/ms/LC_MESSAGES/orage.mo share/locale/nl/LC_MESSAGES/orage.mo share/locale/pa/LC_MESSAGES/orage.mo share/locale/pt_BR/LC_MESSAGES/orage.mo -share/locale/pt_PT/LC_MESSAGES/orage.mo +share/locale/pt/LC_MESSAGES/orage.mo share/locale/ru/LC_MESSAGES/orage.mo share/locale/sq/LC_MESSAGES/orage.mo share/locale/sv/LC_MESSAGES/orage.mo @@ -61,7 +61,7 @@ share/locale/zh_CN/LC_MESSAGES/orage.mo share/locale/zh_TW/LC_MESSAGES/orage.mo share/locale/mr/LC_MESSAGES/orage.mo share/locale/bn_IN/LC_MESSAGES/orage.mo -share/locale/nb_NO/LC_MESSAGES/orage.mo +share/locale/nb/LC_MESSAGES/orage.mo share/locale/hy/LC_MESSAGES/orage.mo share/orage/doc/C/images/default_calendar.png share/orage/doc/C/images/orage_eventlist.png diff --git a/deskutils/xfce4-notes-plugin/Makefile b/deskutils/xfce4-notes-plugin/Makefile index 09772cdd7e1f..e129a77a4c65 100644 --- a/deskutils/xfce4-notes-plugin/Makefile +++ b/deskutils/xfce4-notes-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-notes-plugin PORTVERSION= 1.6.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/deskutils/xfce4-notification-daemon/Makefile b/deskutils/xfce4-notification-daemon/Makefile index b0641c486085..19276e5c1ca2 100644 --- a/deskutils/xfce4-notification-daemon/Makefile +++ b/deskutils/xfce4-notification-daemon/Makefile @@ -7,7 +7,7 @@ PORTNAME= notification-daemon PORTVERSION= 0.3.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils xfce MASTER_SITES= http://goodies.xfce.org/releases/notification-daemon-xfce/ \ CRITICAL diff --git a/deskutils/xfce4-xkb-plugin/Makefile b/deskutils/xfce4-xkb-plugin/Makefile index dbee4a95abc1..e2dc2e1708c8 100644 --- a/deskutils/xfce4-xkb-plugin/Makefile +++ b/deskutils/xfce4-xkb-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-xkb-plugin PORTVERSION= 0.4.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/editors/mousepad/Makefile b/editors/mousepad/Makefile index f39fefd3eb2a..eb146c34b488 100644 --- a/editors/mousepad/Makefile +++ b/editors/mousepad/Makefile @@ -7,7 +7,7 @@ PORTNAME= mousepad PORTVERSION= 0.2.16 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= editors xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/graphics/ristretto/Makefile b/graphics/ristretto/Makefile index cc9142bb2152..e29d76a233c9 100644 --- a/graphics/ristretto/Makefile +++ b/graphics/ristretto/Makefile @@ -7,7 +7,7 @@ PORTNAME= ristretto PORTVERSION= 0.0.21 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ diff --git a/mail/xfce4-mailwatch-plugin/Makefile b/mail/xfce4-mailwatch-plugin/Makefile index f2f25cc7749f..ab02d225175d 100644 --- a/mail/xfce4-mailwatch-plugin/Makefile +++ b/mail/xfce4-mailwatch-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-mailwatch-plugin PORTVERSION= 1.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail xfce MASTER_SITES= http://spuriousinterrupt.org/files/mailwatch/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/misc/xfce4-appfinder/Makefile b/misc/xfce4-appfinder/Makefile index 3a174bf6164e..d31f635a6198 100644 --- a/misc/xfce4-appfinder/Makefile +++ b/misc/xfce4-appfinder/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-appfinder -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= misc xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/misc/xfce4-appfinder/distinfo b/misc/xfce4-appfinder/distinfo index 72091251a9f2..ccb48aaf954f 100644 --- a/misc/xfce4-appfinder/distinfo +++ b/misc/xfce4-appfinder/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-appfinder-4.6.0.tar.bz2) = 414b20e3569130348d96b0e74c7d1f3f -SHA256 (xfce4/xfce4-appfinder-4.6.0.tar.bz2) = 7ff513ae98a63525259a95e75ff89a4edcd35fa63fdb7798ec9262777cb0da93 -SIZE (xfce4/xfce4-appfinder-4.6.0.tar.bz2) = 313769 +MD5 (xfce4/xfce4-appfinder-4.6.1.tar.bz2) = a1bc7d88100cfd92714a300be531589b +SHA256 (xfce4/xfce4-appfinder-4.6.1.tar.bz2) = 5eab9a3ba822a1163c07efd917c3425eaf149c01c09df375ac38a0cb7ddf20a4 +SIZE (xfce4/xfce4-appfinder-4.6.1.tar.bz2) = 314040 diff --git a/misc/xfce4-appfinder/pkg-plist b/misc/xfce4-appfinder/pkg-plist index 020f23515730..1323e1318f07 100644 --- a/misc/xfce4-appfinder/pkg-plist +++ b/misc/xfce4-appfinder/pkg-plist @@ -28,7 +28,7 @@ share/locale/mk/LC_MESSAGES/xfce4-appfinder.mo share/locale/nl/LC_MESSAGES/xfce4-appfinder.mo share/locale/pa/LC_MESSAGES/xfce4-appfinder.mo share/locale/pt_BR/LC_MESSAGES/xfce4-appfinder.mo -share/locale/pt_PT/LC_MESSAGES/xfce4-appfinder.mo +share/locale/pt/LC_MESSAGES/xfce4-appfinder.mo share/locale/ru/LC_MESSAGES/xfce4-appfinder.mo share/locale/si/LC_MESSAGES/xfce4-appfinder.mo share/locale/sq/LC_MESSAGES/xfce4-appfinder.mo @@ -40,7 +40,7 @@ share/locale/ca/LC_MESSAGES/xfce4-appfinder.mo share/locale/cs/LC_MESSAGES/xfce4-appfinder.mo share/locale/el/LC_MESSAGES/xfce4-appfinder.mo share/locale/fi/LC_MESSAGES/xfce4-appfinder.mo -share/locale/nb_NO/LC_MESSAGES/xfce4-appfinder.mo +share/locale/nb/LC_MESSAGES/xfce4-appfinder.mo share/locale/gl/LC_MESSAGES/xfce4-appfinder.mo share/locale/ko/LC_MESSAGES/xfce4-appfinder.mo share/locale/pl/LC_MESSAGES/xfce4-appfinder.mo diff --git a/misc/xfce4-weather-plugin/Makefile b/misc/xfce4-weather-plugin/Makefile index 07451c4ddc44..8cdc7da3abce 100644 --- a/misc/xfce4-weather-plugin/Makefile +++ b/misc/xfce4-weather-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-weather-plugin PORTVERSION= 0.6.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc xfce geography MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/multimedia/xfce4-media/Makefile b/multimedia/xfce4-media/Makefile index 809e4e8de8c6..eb814a702567 100644 --- a/multimedia/xfce4-media/Makefile +++ b/multimedia/xfce4-media/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-media PORTVERSION= 0.9.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= multimedia xfce MASTER_SITES= http://spuriousinterrupt.org/files/xfmedia/ DISTNAME= xfmedia-${PORTVERSION} diff --git a/multimedia/xfce4-xmms-plugin/Makefile b/multimedia/xfce4-xmms-plugin/Makefile index 76d019da55bf..783ae2990472 100644 --- a/multimedia/xfce4-xmms-plugin/Makefile +++ b/multimedia/xfce4-xmms-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-xmms-plugin PORTVERSION= 0.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia audio xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/multimedia/xfmedia-remote-plugin/Makefile b/multimedia/xfmedia-remote-plugin/Makefile index 065d5d18110e..c6710f871a20 100644 --- a/multimedia/xfmedia-remote-plugin/Makefile +++ b/multimedia/xfmedia-remote-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfmedia-remote-plugin PORTVERSION= 0.2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia audio xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/net-im/xfce4-messenger-plugin/Makefile b/net-im/xfce4-messenger-plugin/Makefile index 6dceada9c4e9..0e857656636d 100644 --- a/net-im/xfce4-messenger-plugin/Makefile +++ b/net-im/xfce4-messenger-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-messenger-plugin PORTVERSION= 0.1.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-im xfce MASTER_SITES= ftp://ftp.berlios.de/pub/xfce-goodies/panel-plugins/4.4/ DIST_SUBDIR= xfce4 diff --git a/print/xfce4-print/Makefile b/print/xfce4-print/Makefile index f8f43c591b59..7524ddfa97c7 100644 --- a/print/xfce4-print/Makefile +++ b/print/xfce4-print/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-print -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= print xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfprint-${PORTVERSION} diff --git a/print/xfce4-print/distinfo b/print/xfce4-print/distinfo index 614fd512d1a4..953c0afd56a5 100644 --- a/print/xfce4-print/distinfo +++ b/print/xfce4-print/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfprint-4.6.0.tar.bz2) = cf2e0de43367da6a0ef7eeef04876281 -SHA256 (xfce4/xfprint-4.6.0.tar.bz2) = 132bd36ce6e2cb7b8c06fb1794f8e4ac9da3fadfdf57bbff95ee1277cc21866c -SIZE (xfce4/xfprint-4.6.0.tar.bz2) = 842525 +MD5 (xfce4/xfprint-4.6.1.tar.bz2) = d92fca97a42816085080baf07a99a62e +SHA256 (xfce4/xfprint-4.6.1.tar.bz2) = be0cc5d149234c22dee69db5f8cbddebc46bc21a4f96fefdec21df36b2a15f17 +SIZE (xfce4/xfprint-4.6.1.tar.bz2) = 842675 diff --git a/print/xfce4-print/pkg-plist b/print/xfce4-print/pkg-plist index 965a1eec95b8..1c2d7efc7c0b 100644 --- a/print/xfce4-print/pkg-plist +++ b/print/xfce4-print/pkg-plist @@ -80,7 +80,7 @@ share/locale/nl/LC_MESSAGES/xfprint.mo share/locale/pa/LC_MESSAGES/xfprint.mo share/locale/pl/LC_MESSAGES/xfprint.mo share/locale/pt_BR/LC_MESSAGES/xfprint.mo -share/locale/pt_PT/LC_MESSAGES/xfprint.mo +share/locale/pt/LC_MESSAGES/xfprint.mo share/locale/ro/LC_MESSAGES/xfprint.mo share/locale/ru/LC_MESSAGES/xfprint.mo share/locale/si/LC_MESSAGES/xfprint.mo diff --git a/sysutils/thunar-volman-plugin/Makefile b/sysutils/thunar-volman-plugin/Makefile index fad795e3c53d..1685be531cbb 100644 --- a/sysutils/thunar-volman-plugin/Makefile +++ b/sysutils/thunar-volman-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= thunar-volman PORTVERSION= 0.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils xfce MASTER_SITES= http://freebsd.unixfreunde.de/sources/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfburn/Makefile b/sysutils/xfburn/Makefile index 8339815a0d5b..c64a19d6e067 100644 --- a/sysutils/xfburn/Makefile +++ b/sysutils/xfburn/Makefile @@ -7,6 +7,7 @@ PORTNAME= xfburn PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://goodies.xfce.org/releases/xfburn/ diff --git a/sysutils/xfce4-battery-plugin/Makefile b/sysutils/xfce4-battery-plugin/Makefile index d4a63c43412a..cfc2532c8780 100644 --- a/sysutils/xfce4-battery-plugin/Makefile +++ b/sysutils/xfce4-battery-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-battery-plugin PORTVERSION= 0.5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-cpugraph-plugin/Makefile b/sysutils/xfce4-cpugraph-plugin/Makefile index c511e31d24b4..1bfc068a1fbe 100644 --- a/sysutils/xfce4-cpugraph-plugin/Makefile +++ b/sysutils/xfce4-cpugraph-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-cpugraph-plugin PORTVERSION= 0.3.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-fsguard-plugin/Makefile b/sysutils/xfce4-fsguard-plugin/Makefile index b2b18b0fc529..1114c0804e9b 100644 --- a/sysutils/xfce4-fsguard-plugin/Makefile +++ b/sysutils/xfce4-fsguard-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-fsguard-plugin PORTVERSION= 0.4.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-genmon-plugin/Makefile b/sysutils/xfce4-genmon-plugin/Makefile index 875fc4452d02..7da8fe39a687 100644 --- a/sysutils/xfce4-genmon-plugin/Makefile +++ b/sysutils/xfce4-genmon-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-genmon-plugin PORTVERSION= 3.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-minicmd-plugin/Makefile b/sysutils/xfce4-minicmd-plugin/Makefile index 62c370aba6ca..204ea712c0d0 100644 --- a/sysutils/xfce4-minicmd-plugin/Makefile +++ b/sysutils/xfce4-minicmd-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-minicmd-plugin PORTVERSION= 0.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils xfce MASTER_SITES= ftp://ftp.berlios.de/pub/xfce-goodies/panel-plugins/4.4/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-netload-plugin/Makefile b/sysutils/xfce4-netload-plugin/Makefile index ef14490494af..4cd4cc34c097 100644 --- a/sysutils/xfce4-netload-plugin/Makefile +++ b/sysutils/xfce4-netload-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-netload-plugin PORTVERSION= 0.4.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-places-plugin/Makefile b/sysutils/xfce4-places-plugin/Makefile index d4836a046c0c..ac63f8e39151 100644 --- a/sysutils/xfce4-places-plugin/Makefile +++ b/sysutils/xfce4-places-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-places-plugin PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-settings/Makefile b/sysutils/xfce4-settings/Makefile index b33c2bc1a622..418395e093a8 100644 --- a/sysutils/xfce4-settings/Makefile +++ b/sysutils/xfce4-settings/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-settings -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= sysutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-settings/distinfo b/sysutils/xfce4-settings/distinfo index ed86c07d471b..1b9ab67c7777 100644 --- a/sysutils/xfce4-settings/distinfo +++ b/sysutils/xfce4-settings/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-settings-4.6.0.tar.bz2) = ac538c4ab32e3a91f4567141adc3c898 -SHA256 (xfce4/xfce4-settings-4.6.0.tar.bz2) = 7cec5dc4cdbb358bcdb010e43d3984ed9686b136811b0a25f2c5c52db0e7afff -SIZE (xfce4/xfce4-settings-4.6.0.tar.bz2) = 490746 +MD5 (xfce4/xfce4-settings-4.6.1.tar.bz2) = dc1c8704471c5b0104fa10c30eb60cb6 +SHA256 (xfce4/xfce4-settings-4.6.1.tar.bz2) = 36dda4d43366fad47ee95ea5d4fa336d0b14f79c524b4f29a2ac1b9ada4abf8d +SIZE (xfce4/xfce4-settings-4.6.1.tar.bz2) = 501587 diff --git a/sysutils/xfce4-settings/pkg-plist b/sysutils/xfce4-settings/pkg-plist index ff6f3dfec0fc..1743ce082bc3 100644 --- a/sysutils/xfce4-settings/pkg-plist +++ b/sysutils/xfce4-settings/pkg-plist @@ -18,13 +18,16 @@ share/locale/es/LC_MESSAGES/xfce4-settings.mo share/locale/eu/LC_MESSAGES/xfce4-settings.mo share/locale/fi/LC_MESSAGES/xfce4-settings.mo share/locale/fr/LC_MESSAGES/xfce4-settings.mo +share/locale/gl/LC_MESSAGES/xfce4-settings.mo share/locale/hu/LC_MESSAGES/xfce4-settings.mo share/locale/id/LC_MESSAGES/xfce4-settings.mo +share/locale/it/LC_MESSAGES/xfce4-settings.mo share/locale/ja/LC_MESSAGES/xfce4-settings.mo share/locale/nb/LC_MESSAGES/xfce4-settings.mo share/locale/nl/LC_MESSAGES/xfce4-settings.mo share/locale/pl/LC_MESSAGES/xfce4-settings.mo share/locale/pt_BR/LC_MESSAGES/xfce4-settings.mo +share/locale/pt/LC_MESSAGES/xfce4-settings.mo share/locale/ru/LC_MESSAGES/xfce4-settings.mo share/locale/sv/LC_MESSAGES/xfce4-settings.mo share/locale/tr/LC_MESSAGES/xfce4-settings.mo diff --git a/sysutils/xfce4-systemload-plugin/Makefile b/sysutils/xfce4-systemload-plugin/Makefile index d773fb962bc5..c88cbf92f366 100644 --- a/sysutils/xfce4-systemload-plugin/Makefile +++ b/sysutils/xfce4-systemload-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-systemload-plugin PORTVERSION= 0.4.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-utils/Makefile b/sysutils/xfce4-utils/Makefile index 71db37100284..4478a7a1ad27 100644 --- a/sysutils/xfce4-utils/Makefile +++ b/sysutils/xfce4-utils/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-utils -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= sysutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfce-utils-${PORTVERSION} diff --git a/sysutils/xfce4-utils/distinfo b/sysutils/xfce4-utils/distinfo index 9d66dd4cd3fc..45efc6942ddf 100644 --- a/sysutils/xfce4-utils/distinfo +++ b/sysutils/xfce4-utils/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce-utils-4.6.0.tar.bz2) = b192940801a7bd9bb800e570a299ecde -SHA256 (xfce4/xfce-utils-4.6.0.tar.bz2) = 9e68c7e842cc4e33722dbb025419b8cd31680bf5259be8d3dae3a671313341ff -SIZE (xfce4/xfce-utils-4.6.0.tar.bz2) = 612886 +MD5 (xfce4/xfce-utils-4.6.1.tar.bz2) = 1aa2362b11e79e56d52ce0d265faf1b6 +SHA256 (xfce4/xfce-utils-4.6.1.tar.bz2) = 8310ad3694567dc7cbe0d57f4283712ca9e576ca73c9dc53a576b546f0b6b571 +SIZE (xfce4/xfce-utils-4.6.1.tar.bz2) = 614143 diff --git a/sysutils/xfce4-utils/pkg-plist b/sysutils/xfce4-utils/pkg-plist index e588539bda79..9e1525e6f29f 100644 --- a/sysutils/xfce4-utils/pkg-plist +++ b/sysutils/xfce4-utils/pkg-plist @@ -51,12 +51,12 @@ share/locale/lv/LC_MESSAGES/xfce-utils.mo share/locale/mk/LC_MESSAGES/xfce-utils.mo share/locale/mr/LC_MESSAGES/xfce-utils.mo share/locale/ms/LC_MESSAGES/xfce-utils.mo -share/locale/nb_NO/LC_MESSAGES/xfce-utils.mo +share/locale/nb/LC_MESSAGES/xfce-utils.mo share/locale/nl/LC_MESSAGES/xfce-utils.mo share/locale/pl/LC_MESSAGES/xfce-utils.mo share/locale/pa/LC_MESSAGES/xfce-utils.mo share/locale/pt_BR/LC_MESSAGES/xfce-utils.mo -share/locale/pt_PT/LC_MESSAGES/xfce-utils.mo +share/locale/pt/LC_MESSAGES/xfce-utils.mo share/locale/ro/LC_MESSAGES/xfce-utils.mo share/locale/ru/LC_MESSAGES/xfce-utils.mo share/locale/si/LC_MESSAGES/xfce-utils.mo @@ -122,8 +122,6 @@ share/xsessions/xfce.desktop @dirrmtry share/locale/bn_IN @dirrmtry share/locale/mr/LC_MESSAGES @dirrmtry share/locale/mr -@dirrmtry share/locale/nb_NO/LC_MESSAGES -@dirrmtry share/locale/nb_NO @dirrmtry share/xfce4/doc/C/images @dirrmtry share/xfce4/doc/C @dirrmtry share/xfce4/doc/fr diff --git a/sysutils/xfce4-wavelan-plugin/Makefile b/sysutils/xfce4-wavelan-plugin/Makefile index a2e389bc184c..e813a897898e 100644 --- a/sysutils/xfce4-wavelan-plugin/Makefile +++ b/sysutils/xfce4-wavelan-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-wavelan-plugin PORTVERSION= 0.5.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/textproc/xfce4-dict-plugin/Makefile b/textproc/xfce4-dict-plugin/Makefile index ee25c82b0193..ba65f7d8be9e 100644 --- a/textproc/xfce4-dict-plugin/Makefile +++ b/textproc/xfce4-dict-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-dict PORTVERSION= 0.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ PKGNAMESUFFIX= -plugin diff --git a/www/xfce4-smartbookmark-plugin/Makefile b/www/xfce4-smartbookmark-plugin/Makefile index c85da8a4e8ef..5b386d28be16 100644 --- a/www/xfce4-smartbookmark-plugin/Makefile +++ b/www/xfce4-smartbookmark-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-smartbookmark-plugin PORTVERSION= 0.4.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= www xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/x11-clocks/xfce4-datetime-plugin/Makefile b/x11-clocks/xfce4-datetime-plugin/Makefile index 5969d8139921..49e3af6cfa1a 100644 --- a/x11-clocks/xfce4-datetime-plugin/Makefile +++ b/x11-clocks/xfce4-datetime-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-datetime-plugin PORTVERSION= 0.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-clocks xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/x11-clocks/xfce4-timer-out-plugin/Makefile b/x11-clocks/xfce4-timer-out-plugin/Makefile index 0fa402544b93..983e0c198a2e 100644 --- a/x11-clocks/xfce4-timer-out-plugin/Makefile +++ b/x11-clocks/xfce4-timer-out-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-time-out-plugin PORTVERSION= 0.1.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-clocks xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/x11-clocks/xfce4-timer-plugin/Makefile b/x11-clocks/xfce4-timer-plugin/Makefile index 5f5c6ed60476..a673a984adfe 100644 --- a/x11-clocks/xfce4-timer-plugin/Makefile +++ b/x11-clocks/xfce4-timer-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-timer-plugin PORTVERSION= 0.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-clocks xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/x11-fm/thunar/Makefile b/x11-fm/thunar/Makefile index 4c12f6dd230d..85938ae7b410 100644 --- a/x11-fm/thunar/Makefile +++ b/x11-fm/thunar/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Thunar -PORTVERSION= 1.0.0 +PORTVERSION= 1.0.1 CATEGORIES= x11-fm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11-fm/thunar/distinfo b/x11-fm/thunar/distinfo index 0f40976e6da8..25a9b068d2cb 100644 --- a/x11-fm/thunar/distinfo +++ b/x11-fm/thunar/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/Thunar-1.0.0.tar.bz2) = 468c240a4f65a217ec2b6132e85cd84e -SHA256 (xfce4/Thunar-1.0.0.tar.bz2) = a417a919a2b74d452b54ae104da9f86f1ff30d81bf6f808108419814eafa01ad -SIZE (xfce4/Thunar-1.0.0.tar.bz2) = 7118044 +MD5 (xfce4/Thunar-1.0.1.tar.bz2) = 218373aa45d74b6ba8c69c4d5af3bb19 +SHA256 (xfce4/Thunar-1.0.1.tar.bz2) = 7a2b6b493463756bbc9c54144fab2f2163bc84f0896b4c06fd225d11025a210d +SIZE (xfce4/Thunar-1.0.1.tar.bz2) = 8802672 diff --git a/x11-fm/thunar/pkg-plist b/x11-fm/thunar/pkg-plist index bc11400db8d5..7321c0e7e21f 100644 --- a/x11-fm/thunar/pkg-plist +++ b/x11-fm/thunar/pkg-plist @@ -345,6 +345,58 @@ share/gtk-doc/html/thunarx/up.png %%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/da/advanced-topics.html +%%DOCSDIR%%/html/da/copyright.html +%%DOCSDIR%%/html/da/customizing-thunar.html +%%DOCSDIR%%/html/da/faq.html +%%DOCSDIR%%/html/da/images/bulk-rename.png +%%DOCSDIR%%/html/da/images/file-manager-window.png +%%DOCSDIR%%/html/da/images/file-properties.png +%%DOCSDIR%%/html/da/images/preferences-advanced.png +%%DOCSDIR%%/html/da/images/preferences-behavior.png +%%DOCSDIR%%/html/da/images/preferences-side-pane.png +%%DOCSDIR%%/html/da/images/preferences-views.png +%%DOCSDIR%%/html/da/images/removable-drives-and-media.png +%%DOCSDIR%%/html/da/images/removable-media-unmount.png +%%DOCSDIR%%/html/da/images/sendto-menu.png +%%DOCSDIR%%/html/da/images/visible-columns.png +%%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/gl/advanced-topics.html +%%DOCSDIR%%/html/gl/copyright.html +%%DOCSDIR%%/html/gl/customizing-thunar.html +%%DOCSDIR%%/html/gl/faq.html +%%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/it/advanced-topics.html +%%DOCSDIR%%/html/it/copyright.html +%%DOCSDIR%%/html/it/customizing-thunar.html +%%DOCSDIR%%/html/it/faq.html +%%DOCSDIR%%/html/it/images/bulk-rename.png +%%DOCSDIR%%/html/it/images/file-manager-window.png +%%DOCSDIR%%/html/it/images/file-properties.png +%%DOCSDIR%%/html/it/images/preferences-advanced.png +%%DOCSDIR%%/html/it/images/preferences-behavior.png +%%DOCSDIR%%/html/it/images/preferences-side-pane.png +%%DOCSDIR%%/html/it/images/preferences-views.png +%%DOCSDIR%%/html/it/images/removable-drives-and-media.png +%%DOCSDIR%%/html/it/images/removable-media-unmount.png +%%DOCSDIR%%/html/it/images/sendto-menu.png +%%DOCSDIR%%/html/it/images/visible-columns.png +%%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 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 @@ -378,13 +430,13 @@ share/locale/ku/LC_MESSAGES/Thunar.mo share/locale/lt/LC_MESSAGES/Thunar.mo share/locale/lv/LC_MESSAGES/Thunar.mo share/locale/mk/LC_MESSAGES/Thunar.mo -share/locale/nb_NO/LC_MESSAGES/Thunar.mo +share/locale/nb/LC_MESSAGES/Thunar.mo share/locale/nl/LC_MESSAGES/Thunar.mo -share/locale/nn_NO/LC_MESSAGES/Thunar.mo +share/locale/nn/LC_MESSAGES/Thunar.mo share/locale/pa/LC_MESSAGES/Thunar.mo share/locale/pl/LC_MESSAGES/Thunar.mo share/locale/pt_BR/LC_MESSAGES/Thunar.mo -share/locale/pt_PT/LC_MESSAGES/Thunar.mo +share/locale/pt/LC_MESSAGES/Thunar.mo share/locale/ro/LC_MESSAGES/Thunar.mo share/locale/ru/LC_MESSAGES/Thunar.mo share/locale/sk/LC_MESSAGES/Thunar.mo @@ -434,6 +486,11 @@ share/thumbnailers/thunar-vfs-font-thumbnailer-1.desktop @dirrm %%DOCSDIR%%/html/tr @dirrmtry %%DOCSDIR%%/html/zh_TW/images @dirrm %%DOCSDIR%%/html/zh_TW +@dirrmtry %%DOCSDIR%%/html/da/images +@dirrm %%DOCSDIR%%/html/da +@dirrm %%DOCSDIR%%/html/gl +@dirrmtry %%DOCSDIR%%/html/it/images +@dirrm %%DOCSDIR%%/html/it @dirrm %%DOCSDIR%%/html @dirrm %%DOCSDIR%% @dirrm share/Thunar/sendto diff --git a/x11-toolkits/libxfce4gui/Makefile b/x11-toolkits/libxfce4gui/Makefile index 4bda13db5950..37c1309ce1df 100644 --- a/x11-toolkits/libxfce4gui/Makefile +++ b/x11-toolkits/libxfce4gui/Makefile @@ -6,7 +6,7 @@ # PORTNAME= libxfce4gui -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11-toolkits xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= libxfcegui4-${PORTVERSION} diff --git a/x11-toolkits/libxfce4gui/distinfo b/x11-toolkits/libxfce4gui/distinfo index 8585dc97ab51..51ced84c088b 100644 --- a/x11-toolkits/libxfce4gui/distinfo +++ b/x11-toolkits/libxfce4gui/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/libxfcegui4-4.6.0.tar.bz2) = 8627ae4fad26289f55f0afbebe238bf5 -SHA256 (xfce4/libxfcegui4-4.6.0.tar.bz2) = d6287ad3ab841f4bae0ce62135a0ca31da9eae4185aa2b8cef6160c46fea3e42 -SIZE (xfce4/libxfcegui4-4.6.0.tar.bz2) = 650464 +MD5 (xfce4/libxfcegui4-4.6.1.tar.bz2) = 539cff747634b8ee6f0d2362ee78a286 +SHA256 (xfce4/libxfcegui4-4.6.1.tar.bz2) = 3468a9cb348bf54f8a0afa386366683eff1987b722d2e81326f9e7ec7dfbe093 +SIZE (xfce4/libxfcegui4-4.6.1.tar.bz2) = 650666 diff --git a/x11-toolkits/libxfce4gui/pkg-plist b/x11-toolkits/libxfce4gui/pkg-plist index 0d12d3763ddb..f2874ca4708c 100644 --- a/x11-toolkits/libxfce4gui/pkg-plist +++ b/x11-toolkits/libxfce4gui/pkg-plist @@ -134,12 +134,12 @@ share/locale/lt/LC_MESSAGES/libxfcegui4.mo share/locale/lv/LC_MESSAGES/libxfcegui4.mo share/locale/mk/LC_MESSAGES/libxfcegui4.mo share/locale/mr/LC_MESSAGES/libxfcegui4.mo -share/locale/nb_NO/LC_MESSAGES/libxfcegui4.mo +share/locale/nb/LC_MESSAGES/libxfcegui4.mo share/locale/nl/LC_MESSAGES/libxfcegui4.mo share/locale/pa/LC_MESSAGES/libxfcegui4.mo share/locale/pl/LC_MESSAGES/libxfcegui4.mo share/locale/pt_BR/LC_MESSAGES/libxfcegui4.mo -share/locale/pt_PT/LC_MESSAGES/libxfcegui4.mo +share/locale/pt/LC_MESSAGES/libxfcegui4.mo share/locale/ro/LC_MESSAGES/libxfcegui4.mo share/locale/ru/LC_MESSAGES/libxfcegui4.mo share/locale/si/LC_MESSAGES/libxfcegui4.mo @@ -171,8 +171,6 @@ share/locale/zh_TW/LC_MESSAGES/libxfcegui4.mo @dirrmtry share/locale/hy @dirrmtry share/locale/mr/LC_MESSAGES @dirrmtry share/locale/mr -@dirrmtry share/locale/nb_NO/LC_MESSAGES -@dirrmtry share/locale/nb_NO @dirrmtry share/locale/si/LC_MESSAGES @dirrmtry share/locale/si @dirrmtry share/locale/ur/LC_MESSAGES diff --git a/x11-wm/xfce4-desktop/Makefile b/x11-wm/xfce4-desktop/Makefile index b12b9752efeb..451277e54038 100644 --- a/x11-wm/xfce4-desktop/Makefile +++ b/x11-wm/xfce4-desktop/Makefile @@ -6,8 +6,7 @@ # PORTNAME= xfce4-desktop -PORTVERSION= 4.6.0 -PORTREVISION= 1 +PORTVERSION= 4.6.1 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfdesktop-${PORTVERSION} diff --git a/x11-wm/xfce4-desktop/distinfo b/x11-wm/xfce4-desktop/distinfo index 0d7d24e37ddc..96c172b633e3 100644 --- a/x11-wm/xfce4-desktop/distinfo +++ b/x11-wm/xfce4-desktop/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfdesktop-4.6.0.tar.bz2) = 508b18f9d4ef27833517bba3bd6e2fbf -SHA256 (xfce4/xfdesktop-4.6.0.tar.bz2) = 1432fc32cd5ed2ed222c4f95e9eb229c09f7c7d063443be6f1322b01518f284f -SIZE (xfce4/xfdesktop-4.6.0.tar.bz2) = 3349853 +MD5 (xfce4/xfdesktop-4.6.1.tar.bz2) = ae15cacc3e3834cca7238a8e1035c50d +SHA256 (xfce4/xfdesktop-4.6.1.tar.bz2) = 22aa4a654798dcfa728a9c0056486f73ae87a51239950c8f85aedef488cd571a +SIZE (xfce4/xfdesktop-4.6.1.tar.bz2) = 3671378 diff --git a/x11-wm/xfce4-desktop/pkg-plist b/x11-wm/xfce4-desktop/pkg-plist index 1156f4fe8e7b..6b45ed75bfaa 100644 --- a/x11-wm/xfce4-desktop/pkg-plist +++ b/x11-wm/xfce4-desktop/pkg-plist @@ -70,12 +70,12 @@ share/locale/lv/LC_MESSAGES/xfdesktop.mo share/locale/mk/LC_MESSAGES/xfdesktop.mo share/locale/mr/LC_MESSAGES/xfdesktop.mo share/locale/ms/LC_MESSAGES/xfdesktop.mo -share/locale/nb_NO/LC_MESSAGES/xfdesktop.mo +share/locale/nb/LC_MESSAGES/xfdesktop.mo share/locale/nl/LC_MESSAGES/xfdesktop.mo share/locale/pa/LC_MESSAGES/xfdesktop.mo share/locale/pl/LC_MESSAGES/xfdesktop.mo share/locale/pt_BR/LC_MESSAGES/xfdesktop.mo -share/locale/pt_PT/LC_MESSAGES/xfdesktop.mo +share/locale/pt/LC_MESSAGES/xfdesktop.mo share/locale/ro/LC_MESSAGES/xfdesktop.mo share/locale/ru/LC_MESSAGES/xfdesktop.mo share/locale/sk/LC_MESSAGES/xfdesktop.mo @@ -121,6 +121,14 @@ share/xfce4/doc/fr/images/xfdesktop-behavior-tab.png share/xfce4/doc/fr/images/xfdesktop-editor.png share/xfce4/doc/fr/images/xfdesktop-list.png share/xfce4/doc/fr/xfdesktop.html +share/xfce4/doc/it/images/root_menu2.png +share/xfce4/doc/it/images/root_menu.png +share/xfce4/doc/it/images/select_bg_color.png +share/xfce4/doc/it/images/xfdesktop-appearance-tab.png +share/xfce4/doc/it/images/xfdesktop-behavior-tab.png +share/xfce4/doc/it/images/xfdesktop-editor.png +share/xfce4/doc/it/images/xfdesktop-list.png +share/xfce4/doc/it/xfdesktop.html share/xfce4/doc/ja/images/root_menu.png share/xfce4/doc/ja/images/root_menu2.png share/xfce4/doc/ja/images/select_bg_color.png @@ -148,6 +156,8 @@ share/xfce4/doc/ja/xfdesktop.html @dirrmtry share/xfce4/doc/da @dirrmtry share/xfce4/doc/fr/images @dirrmtry share/xfce4/doc/fr +@dirrmtry share/xfce4/doc/it/images +@dirrmtry share/xfce4/doc/it @dirrmtry share/xfce4/doc/ja/images @dirrmtry share/xfce4/doc/ja @dirrmtry share/xfce4/doc diff --git a/x11-wm/xfce4-panel/Makefile b/x11-wm/xfce4-panel/Makefile index 6a23c615022e..a74ea6192fef 100644 --- a/x11-wm/xfce4-panel/Makefile +++ b/x11-wm/xfce4-panel/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-panel -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11-wm/xfce4-panel/distinfo b/x11-wm/xfce4-panel/distinfo index 7b092175fd25..1bd30548a882 100644 --- a/x11-wm/xfce4-panel/distinfo +++ b/x11-wm/xfce4-panel/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-panel-4.6.0.tar.bz2) = b4c7cce05cc858d11c9dcd4c2f8dbfdb -SHA256 (xfce4/xfce4-panel-4.6.0.tar.bz2) = 735e83a7754b04e3af8776f4f2dbcd07a784a6b891ccbe11989cb00589061393 -SIZE (xfce4/xfce4-panel-4.6.0.tar.bz2) = 866645 +MD5 (xfce4/xfce4-panel-4.6.1.tar.bz2) = 73a366b9892152266b465d7d9c35bef4 +SHA256 (xfce4/xfce4-panel-4.6.1.tar.bz2) = b308ddc96fcb27b3f18ed2fa20aeb3a12fb73cec7676d75914a58d1b27124b83 +SIZE (xfce4/xfce4-panel-4.6.1.tar.bz2) = 868225 diff --git a/x11-wm/xfce4-panel/pkg-plist b/x11-wm/xfce4-panel/pkg-plist index d469ada19a9e..bc55344110b4 100644 --- a/x11-wm/xfce4-panel/pkg-plist +++ b/x11-wm/xfce4-panel/pkg-plist @@ -122,12 +122,12 @@ share/locale/lv/LC_MESSAGES/xfce4-panel.mo share/locale/mk/LC_MESSAGES/xfce4-panel.mo share/locale/mr/LC_MESSAGES/xfce4-panel.mo share/locale/ms/LC_MESSAGES/xfce4-panel.mo -share/locale/nb_NO/LC_MESSAGES/xfce4-panel.mo +share/locale/nb/LC_MESSAGES/xfce4-panel.mo share/locale/nl/LC_MESSAGES/xfce4-panel.mo share/locale/pa/LC_MESSAGES/xfce4-panel.mo share/locale/pl/LC_MESSAGES/xfce4-panel.mo share/locale/pt_BR/LC_MESSAGES/xfce4-panel.mo -share/locale/pt_PT/LC_MESSAGES/xfce4-panel.mo +share/locale/pt/LC_MESSAGES/xfce4-panel.mo share/locale/ro/LC_MESSAGES/xfce4-panel.mo share/locale/ru/LC_MESSAGES/xfce4-panel.mo share/locale/si/LC_MESSAGES/xfce4-panel.mo @@ -173,8 +173,6 @@ share/xfce4/panel-plugins/windowlist.desktop @dirrmtry share/locale/bn_IN @dirrmtry share/locale/mr/LC_MESSAGES @dirrmtry share/locale/mr -@dirrmtry share/locale/nb_NO/LC_MESSAGES -@dirrmtry share/locale/nb_NO @dirrmtry share/xfce4/doc/C/images @dirrmtry share/xfce4/doc/C @dirrmtry share/xfce4/doc diff --git a/x11-wm/xfce4-session/Makefile b/x11-wm/xfce4-session/Makefile index cd4888b7121c..d2bc93b09e95 100644 --- a/x11-wm/xfce4-session/Makefile +++ b/x11-wm/xfce4-session/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-session -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11-wm/xfce4-session/distinfo b/x11-wm/xfce4-session/distinfo index 490973f3ed21..efeecc67be00 100644 --- a/x11-wm/xfce4-session/distinfo +++ b/x11-wm/xfce4-session/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-session-4.6.0.tar.bz2) = 79a08c3696196ef31fc8185658316706 -SHA256 (xfce4/xfce4-session-4.6.0.tar.bz2) = 950ccf85c743f40b88d3431caa3279627153b04ce7b9bf5e4ddd1f9431de4517 -SIZE (xfce4/xfce4-session-4.6.0.tar.bz2) = 1362667 +MD5 (xfce4/xfce4-session-4.6.1.tar.bz2) = 7628be41ed3511a20cff5673d9d39858 +SHA256 (xfce4/xfce4-session-4.6.1.tar.bz2) = feed3f9053b83233697223a20f95ca0ad6efe9fedffcc098e4935a425e8f9f0e +SIZE (xfce4/xfce4-session-4.6.1.tar.bz2) = 1365247 diff --git a/x11-wm/xfce4-session/pkg-plist b/x11-wm/xfce4-session/pkg-plist index 8009e1aa53e0..fd071eed978a 100644 --- a/x11-wm/xfce4-session/pkg-plist +++ b/x11-wm/xfce4-session/pkg-plist @@ -71,12 +71,12 @@ share/locale/lv/LC_MESSAGES/xfce4-session.mo share/locale/mk/LC_MESSAGES/xfce4-session.mo share/locale/mr/LC_MESSAGES/xfce4-session.mo share/locale/ms/LC_MESSAGES/xfce4-session.mo -share/locale/nb_NO/LC_MESSAGES/xfce4-session.mo +share/locale/nb/LC_MESSAGES/xfce4-session.mo share/locale/nl/LC_MESSAGES/xfce4-session.mo share/locale/pa/LC_MESSAGES/xfce4-session.mo share/locale/pl/LC_MESSAGES/xfce4-session.mo share/locale/pt_BR/LC_MESSAGES/xfce4-session.mo -share/locale/pt_PT/LC_MESSAGES/xfce4-session.mo +share/locale/pt/LC_MESSAGES/xfce4-session.mo share/locale/ro/LC_MESSAGES/xfce4-session.mo share/locale/ru/LC_MESSAGES/xfce4-session.mo share/locale/si/LC_MESSAGES/xfce4-session.mo @@ -105,9 +105,9 @@ share/xfce4/tips/tips.dat share/icons/hicolor/48x48/apps/xfsm-logout.png share/icons/hicolor/48x48/apps/xfsm-reboot.png @dirrm etc/xdg/autostart -@dirrm etc/xdg/xfce4/xfconf/xfce-perchannel-xml -@dirrm etc/xdg/xfce4/xfconf -@dirrm etc/xdg/xfce4 +@dirrmtry etc/xdg/xfce4/xfconf/xfce-perchannel-xml +@dirrmtry etc/xdg/xfce4/xfconf +@dirrmtry etc/xdg/xfce4 @dirrmtry etc/xdg @dirrm include/xfce4/xfce4-session-4.6/libxfsm @dirrm include/xfce4/xfce4-session-4.6 diff --git a/x11-wm/xfce4-wm/Makefile b/x11-wm/xfce4-wm/Makefile index 46e6123fae4a..92de6d9ee501 100644 --- a/x11-wm/xfce4-wm/Makefile +++ b/x11-wm/xfce4-wm/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-wm -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfwm4-${PORTVERSION} diff --git a/x11-wm/xfce4-wm/distinfo b/x11-wm/xfce4-wm/distinfo index 7a937b6b5599..478e1a54b7ac 100644 --- a/x11-wm/xfce4-wm/distinfo +++ b/x11-wm/xfce4-wm/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfwm4-4.6.0.tar.bz2) = 83cd2f82f2fabfe4ab28a9780fbf309e -SHA256 (xfce4/xfwm4-4.6.0.tar.bz2) = a82d4204639d63652bb306ccd70eb79b3c2ccf640cbd7ed6d032f7ee3dee9516 -SIZE (xfce4/xfwm4-4.6.0.tar.bz2) = 1792953 +MD5 (xfce4/xfwm4-4.6.1.tar.bz2) = 538ff2554a23bf877d336e573884da9a +SHA256 (xfce4/xfwm4-4.6.1.tar.bz2) = 0a808d19a7ddf1f5271d0b7009a5d0dc919562a85afab4071df060f51e9ee9ed +SIZE (xfce4/xfwm4-4.6.1.tar.bz2) = 1765862 diff --git a/x11-wm/xfce4-wm/pkg-plist b/x11-wm/xfce4-wm/pkg-plist index 87c14381042a..3ee33e421718 100644 --- a/x11-wm/xfce4-wm/pkg-plist +++ b/x11-wm/xfce4-wm/pkg-plist @@ -48,12 +48,12 @@ share/locale/lv/LC_MESSAGES/xfwm4.mo share/locale/mk/LC_MESSAGES/xfwm4.mo share/locale/mr/LC_MESSAGES/xfwm4.mo share/locale/ms/LC_MESSAGES/xfwm4.mo -share/locale/nb_NO/LC_MESSAGES/xfwm4.mo +share/locale/nb/LC_MESSAGES/xfwm4.mo share/locale/nl/LC_MESSAGES/xfwm4.mo share/locale/pa/LC_MESSAGES/xfwm4.mo share/locale/pl/LC_MESSAGES/xfwm4.mo share/locale/pt_BR/LC_MESSAGES/xfwm4.mo -share/locale/pt_PT/LC_MESSAGES/xfwm4.mo +share/locale/pt/LC_MESSAGES/xfwm4.mo share/locale/ro/LC_MESSAGES/xfwm4.mo share/locale/ru/LC_MESSAGES/xfwm4.mo share/locale/sk/LC_MESSAGES/xfwm4.mo diff --git a/x11/Terminal/Makefile b/x11/Terminal/Makefile index 0ecd14bb86b0..cca87e6de963 100644 --- a/x11/Terminal/Makefile +++ b/x11/Terminal/Makefile @@ -6,8 +6,7 @@ # PORTNAME= Terminal -PORTVERSION= 0.2.10 -PORTREVISION= 0 +PORTVERSION= 0.2.12 CATEGORIES= x11 xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11/Terminal/distinfo b/x11/Terminal/distinfo index 3066bf153f96..a181aff5418e 100644 --- a/x11/Terminal/distinfo +++ b/x11/Terminal/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/Terminal-0.2.10.tar.bz2) = f6cefa97cf5cad558187267783ffce8a -SHA256 (xfce4/Terminal-0.2.10.tar.bz2) = 16e8d50c5a1d0a6a0442e3f7fd18c658a2517ef99e40b1f3f24a7bb925d09710 -SIZE (xfce4/Terminal-0.2.10.tar.bz2) = 1996883 +MD5 (xfce4/Terminal-0.2.12.tar.bz2) = adb419d279c9fc16d02291c052190717 +SHA256 (xfce4/Terminal-0.2.12.tar.bz2) = 352205b03e9ed1b9080c61235fbc0fa15609410e724237441055a232a3b603dc +SIZE (xfce4/Terminal-0.2.12.tar.bz2) = 2005311 diff --git a/x11/Terminal/pkg-plist b/x11/Terminal/pkg-plist index 454dc069a2f8..87ee82cee70a 100644 --- a/x11/Terminal/pkg-plist +++ b/x11/Terminal/pkg-plist @@ -119,12 +119,12 @@ share/locale/ko/LC_MESSAGES/Terminal.mo share/locale/ku/LC_MESSAGES/Terminal.mo share/locale/lt/LC_MESSAGES/Terminal.mo share/locale/lv/LC_MESSAGES/Terminal.mo -share/locale/nb_NO/LC_MESSAGES/Terminal.mo +share/locale/nb/LC_MESSAGES/Terminal.mo share/locale/nl/LC_MESSAGES/Terminal.mo share/locale/pa/LC_MESSAGES/Terminal.mo share/locale/pl/LC_MESSAGES/Terminal.mo share/locale/pt_BR/LC_MESSAGES/Terminal.mo -share/locale/pt_PT/LC_MESSAGES/Terminal.mo +share/locale/pt/LC_MESSAGES/Terminal.mo share/locale/ro/LC_MESSAGES/Terminal.mo share/locale/ru/LC_MESSAGES/Terminal.mo share/locale/sk/LC_MESSAGES/Terminal.mo diff --git a/x11/libexo/Makefile b/x11/libexo/Makefile index c440b42b96da..3ad07bdf69f1 100644 --- a/x11/libexo/Makefile +++ b/x11/libexo/Makefile @@ -6,7 +6,7 @@ # $MCom: ports/x11/libexo/Makefile,v 1.1 2006/10/02 21:05:55 ahze Exp $ PORTNAME= libexo -PORTVERSION= 0.3.100 +PORTVERSION= 0.3.101 CATEGORIES= x11 xfce DISTNAME= exo-${PORTVERSION} MASTER_SITES= ${MASTER_SITE_XFCE} diff --git a/x11/libexo/distinfo b/x11/libexo/distinfo index 78b20f6430ab..ff96cfef9ce1 100644 --- a/x11/libexo/distinfo +++ b/x11/libexo/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/exo-0.3.100.tar.bz2) = ebded97ff55f43cd0fe6b16242992ecf -SHA256 (xfce4/exo-0.3.100.tar.bz2) = 782ffdb55284ec1ff5618ebbf55973507c5b70a3567d655ce8698ff21fcf4918 -SIZE (xfce4/exo-0.3.100.tar.bz2) = 1745489 +MD5 (xfce4/exo-0.3.101.tar.bz2) = 1c0eebb360f53eab70454b70e1bde36e +SHA256 (xfce4/exo-0.3.101.tar.bz2) = 0016f6ff0d1d22ed42fb5c9bcecc5559a62572781446fdfd1444786b5d33e324 +SIZE (xfce4/exo-0.3.101.tar.bz2) = 1793815 diff --git a/x11/libexo/pkg-plist b/x11/libexo/pkg-plist index b248748e3d6a..808fd6be2204 100644 --- a/x11/libexo/pkg-plist +++ b/x11/libexo/pkg-plist @@ -139,12 +139,12 @@ share/locale/ku/LC_MESSAGES/libexo-0.3.mo share/locale/lt/LC_MESSAGES/libexo-0.3.mo share/locale/lv/LC_MESSAGES/libexo-0.3.mo share/locale/mk/LC_MESSAGES/libexo-0.3.mo -share/locale/nb_NO/LC_MESSAGES/libexo-0.3.mo +share/locale/nb/LC_MESSAGES/libexo-0.3.mo share/locale/nl/LC_MESSAGES/libexo-0.3.mo share/locale/pa/LC_MESSAGES/libexo-0.3.mo share/locale/pl/LC_MESSAGES/libexo-0.3.mo share/locale/pt_BR/LC_MESSAGES/libexo-0.3.mo -share/locale/pt_PT/LC_MESSAGES/libexo-0.3.mo +share/locale/pt/LC_MESSAGES/libexo-0.3.mo share/locale/ro/LC_MESSAGES/libexo-0.3.mo share/locale/ru/LC_MESSAGES/libexo-0.3.mo share/locale/sq/LC_MESSAGES/libexo-0.3.mo @@ -161,6 +161,7 @@ share/xfce4/doc/C/images/exo-preferred-applications-internet.png share/xfce4/doc/C/images/exo-preferred-applications-utilities.png share/xfce4/doc/C/images/exo-preferred-applications-webbrowser-custom.png share/xfce4/doc/C/images/exo-preferred-applications-webbrowser-menu.png +share/xfce4/doc/da/exo-preferred-applications.html share/xfce4/doc/fr/exo-preferred-applications.html share/xfce4/doc/fr/images/exo-preferred-applications-internet.png share/xfce4/doc/fr/images/exo-preferred-applications-utilities.png @@ -171,11 +172,17 @@ share/xfce4/doc/es/images/exo-preferred-applications-utilities.png share/xfce4/doc/es/images/exo-preferred-applications-webbrowser-custom.png share/xfce4/doc/es/images/exo-preferred-applications-webbrowser-menu.png share/xfce4/doc/es/exo-preferred-applications.html +share/xfce4/doc/gl/exo-preferred-applications.html share/xfce4/doc/id/images/exo-preferred-applications-internet.png share/xfce4/doc/id/images/exo-preferred-applications-utilities.png share/xfce4/doc/id/images/exo-preferred-applications-webbrowser-custom.png share/xfce4/doc/id/images/exo-preferred-applications-webbrowser-menu.png share/xfce4/doc/id/exo-preferred-applications.html +share/xfce4/doc/it/images/exo-preferred-applications-internet.png +share/xfce4/doc/it/images/exo-preferred-applications-utilities.png +share/xfce4/doc/it/images/exo-preferred-applications-webbrowser-custom.png +share/xfce4/doc/it/images/exo-preferred-applications-webbrowser-menu.png +share/xfce4/doc/it/exo-preferred-applications.html share/xfce4/doc/ja/exo-preferred-applications.html share/xfce4/doc/ja/images/exo-preferred-applications-internet.png share/xfce4/doc/ja/images/exo-preferred-applications-utilities.png @@ -248,12 +255,16 @@ share/xfce4/helpers/xterm.desktop @dirrm share/pixmaps/exo-0.3 @dirrmtry share/xfce4/doc/C/images @dirrmtry share/xfce4/doc/C +@dirrmtry share/xfce4/doc/da @dirrmtry share/xfce4/doc/es/images @dirrmtry share/xfce4/doc/es @dirrmtry share/xfce4/doc/fr/images @dirrmtry share/xfce4/doc/fr +@dirrmtry share/xfce4/doc/gl @dirrmtry share/xfce4/doc/id/images @dirrmtry share/xfce4/doc/id +@dirrmtry share/xfce4/doc/it/images +@dirrmtry share/xfce4/doc/it @dirrmtry share/xfce4/doc/ja/images @dirrmtry share/xfce4/doc/ja @dirrmtry share/xfce4/doc/pt_BR/images diff --git a/x11/libxfce4menu/Makefile b/x11/libxfce4menu/Makefile index 7f80de63397a..7b8225d472e0 100644 --- a/x11/libxfce4menu/Makefile +++ b/x11/libxfce4menu/Makefile @@ -6,7 +6,7 @@ # PORTNAME= libxfce4menu -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11 xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11/libxfce4menu/distinfo b/x11/libxfce4menu/distinfo index 135b58072b34..1ed9d4312586 100644 --- a/x11/libxfce4menu/distinfo +++ b/x11/libxfce4menu/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/libxfce4menu-4.6.0.tar.bz2) = ff7f75ffa33debd3495b1156a55828a8 -SHA256 (xfce4/libxfce4menu-4.6.0.tar.bz2) = b5f5dc28799bc200dd82519596955e44ac91b68ec5f3ccd7db873d7a091cbdb4 -SIZE (xfce4/libxfce4menu-4.6.0.tar.bz2) = 403991 +MD5 (xfce4/libxfce4menu-4.6.1.tar.bz2) = 5dc9343885c2c6f931318b2a1cdcc9db +SHA256 (xfce4/libxfce4menu-4.6.1.tar.bz2) = 5442b458b0e4f6bbbb6ddfbf1a7789dde1d270ab85686a3be77731a4d5ef84da +SIZE (xfce4/libxfce4menu-4.6.1.tar.bz2) = 404201 diff --git a/x11/libxfce4menu/pkg-plist b/x11/libxfce4menu/pkg-plist index 216ef31ff3c4..f8e640a0503c 100644 --- a/x11/libxfce4menu/pkg-plist +++ b/x11/libxfce4menu/pkg-plist @@ -71,13 +71,14 @@ share/locale/fr/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/gl/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/hu/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/id/LC_MESSAGES/libxfce4menu-0.1.mo +share/locale/it/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/ja/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/ku/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/lv/LC_MESSAGES/libxfce4menu-0.1.mo -share/locale/nb_NO/LC_MESSAGES/libxfce4menu-0.1.mo +share/locale/nb/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/pl/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/pt_BR/LC_MESSAGES/libxfce4menu-0.1.mo -share/locale/pt_PT/LC_MESSAGES/libxfce4menu-0.1.mo +share/locale/pt/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/ro/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/ru/LC_MESSAGES/libxfce4menu-0.1.mo share/locale/sq/LC_MESSAGES/libxfce4menu-0.1.mo diff --git a/x11/libxfce4util/Makefile b/x11/libxfce4util/Makefile index b467f2dc960d..c9edf268a199 100644 --- a/x11/libxfce4util/Makefile +++ b/x11/libxfce4util/Makefile @@ -6,7 +6,7 @@ # PORTNAME= libxfce4util -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11 xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11/libxfce4util/distinfo b/x11/libxfce4util/distinfo index d582be56930a..a89c0aad103a 100644 --- a/x11/libxfce4util/distinfo +++ b/x11/libxfce4util/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/libxfce4util-4.6.0.tar.bz2) = 2b0b7cdb4516704940eedf11edc94d5e -SHA256 (xfce4/libxfce4util-4.6.0.tar.bz2) = eb5f0e74f06001d525d2baeb1ba64c8d8141d9197a01cced28c5e2307f15c9a0 -SIZE (xfce4/libxfce4util-4.6.0.tar.bz2) = 404693 +MD5 (xfce4/libxfce4util-4.6.1.tar.bz2) = eac51d58179cbcadc3f802450a8ec9cd +SHA256 (xfce4/libxfce4util-4.6.1.tar.bz2) = ceecdc7d3c89f547606c2d77a8a42ccf9975c809374fab84ff0833a08510c16b +SIZE (xfce4/libxfce4util-4.6.1.tar.bz2) = 405327 diff --git a/x11/libxfce4util/pkg-plist b/x11/libxfce4util/pkg-plist index c274503f28e5..a41a29b29bf5 100644 --- a/x11/libxfce4util/pkg-plist +++ b/x11/libxfce4util/pkg-plist @@ -71,21 +71,20 @@ share/locale/ko/LC_MESSAGES/libxfce4util.mo share/locale/lt/LC_MESSAGES/libxfce4util.mo share/locale/lv/LC_MESSAGES/libxfce4util.mo share/locale/mk/LC_MESSAGES/libxfce4util.mo -share/locale/nb_NO/LC_MESSAGES/libxfce4util.mo +share/locale/nb/LC_MESSAGES/libxfce4util.mo share/locale/nl/LC_MESSAGES/libxfce4util.mo share/locale/pl/LC_MESSAGES/libxfce4util.mo share/locale/pt_BR/LC_MESSAGES/libxfce4util.mo -share/locale/pt_PT/LC_MESSAGES/libxfce4util.mo +share/locale/pt/LC_MESSAGES/libxfce4util.mo share/locale/ro/LC_MESSAGES/libxfce4util.mo share/locale/si/LC_MESSAGES/libxfce4util.mo +share/locale/sl/LC_MESSAGES/libxfce4util.mo share/locale/sq/LC_MESSAGES/libxfce4util.mo share/locale/sv/LC_MESSAGES/libxfce4util.mo share/locale/tr/LC_MESSAGES/libxfce4util.mo share/locale/uk/LC_MESSAGES/libxfce4util.mo share/locale/ur/LC_MESSAGES/libxfce4util.mo share/locale/zh_CN/LC_MESSAGES/libxfce4util.mo -@dirrmtry share/locale/nb_NO/LC_MESSAGES -@dirrmtry share/locale/nb_NO @dirrmtry share/locale/ur/LC_MESSAGES @dirrmtry share/locale/ur @dirrm include/xfce4/libxfce4util diff --git a/x11/xfce4-clipman-plugin/Makefile b/x11/xfce4-clipman-plugin/Makefile index 6b02e4a3924f..154fb0bb6403 100644 --- a/x11/xfce4-clipman-plugin/Makefile +++ b/x11/xfce4-clipman-plugin/Makefile @@ -7,6 +7,7 @@ PORTNAME= xfce4-clipman-plugin PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/x11/xfce4-conf/Makefile b/x11/xfce4-conf/Makefile index ed298a7d2802..40150ee8d90f 100644 --- a/x11/xfce4-conf/Makefile +++ b/x11/xfce4-conf/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xfce4-conf -PORTVERSION= 4.6.0 +PORTVERSION= 4.6.1 CATEGORIES= x11 xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfconf-${PORTVERSION} diff --git a/x11/xfce4-conf/distinfo b/x11/xfce4-conf/distinfo index 3d66db3ebbc5..9f9fa766572e 100644 --- a/x11/xfce4-conf/distinfo +++ b/x11/xfce4-conf/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfconf-4.6.0.tar.bz2) = 38595f78379eb1f456e97b393fdafd20 -SHA256 (xfce4/xfconf-4.6.0.tar.bz2) = 1d7a85e2e0058e778fbecd684bf5b236b4784b21ea35ac3cdae347012e63f69d -SIZE (xfce4/xfconf-4.6.0.tar.bz2) = 435165 +MD5 (xfce4/xfconf-4.6.1.tar.bz2) = d4d3018767ea9eb4b57cc57d4038023b +SHA256 (xfce4/xfconf-4.6.1.tar.bz2) = 22a596f73795be398382e82e9c11062423daa374339ce6db808f73a6ba19380e +SIZE (xfce4/xfconf-4.6.1.tar.bz2) = 440499 diff --git a/x11/xfce4-conf/pkg-plist b/x11/xfce4-conf/pkg-plist index 1a61dbace3e6..94c442147561 100644 --- a/x11/xfce4-conf/pkg-plist +++ b/x11/xfce4-conf/pkg-plist @@ -37,12 +37,16 @@ share/locale/es/LC_MESSAGES/xfconf.mo share/locale/eu/LC_MESSAGES/xfconf.mo share/locale/fi/LC_MESSAGES/xfconf.mo share/locale/fr/LC_MESSAGES/xfconf.mo +share/locale/gl/LC_MESSAGES/xfconf.mo share/locale/hu/LC_MESSAGES/xfconf.mo share/locale/id/LC_MESSAGES/xfconf.mo +share/locale/it/LC_MESSAGES/xfconf.mo share/locale/ja/LC_MESSAGES/xfconf.mo share/locale/nb/LC_MESSAGES/xfconf.mo share/locale/nl/LC_MESSAGES/xfconf.mo +share/locale/pl/LC_MESSAGES/xfconf.mo share/locale/pt_BR/LC_MESSAGES/xfconf.mo +share/locale/pt/LC_MESSAGES/xfconf.mo share/locale/ro/LC_MESSAGES/xfconf.mo share/locale/ru/LC_MESSAGES/xfconf.mo share/locale/sv/LC_MESSAGES/xfconf.mo diff --git a/x11/xfce4-quicklauncher-plugin/Makefile b/x11/xfce4-quicklauncher-plugin/Makefile index c7017df93db0..63c14fe4f356 100644 --- a/x11/xfce4-quicklauncher-plugin/Makefile +++ b/x11/xfce4-quicklauncher-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-quicklauncher-plugin PORTVERSION= 1.9.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11 xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 diff --git a/x11/xfce4-screenshooter-plugin/Makefile b/x11/xfce4-screenshooter-plugin/Makefile index 5b0387a2b81e..f8e4d7214b0c 100644 --- a/x11/xfce4-screenshooter-plugin/Makefile +++ b/x11/xfce4-screenshooter-plugin/Makefile @@ -7,6 +7,7 @@ PORTNAME= xfce4-screenshooter-plugin PORTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= http://goodies.xfce.org/releases/xfce4-screenshooter/ DISTNAME= xfce4-screenshooter-${PORTVERSION} diff --git a/x11/xfce4-taskmanager/Makefile b/x11/xfce4-taskmanager/Makefile index c5e9794c5eb2..e892f9d336e3 100644 --- a/x11/xfce4-taskmanager/Makefile +++ b/x11/xfce4-taskmanager/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-taskmanager PORTVERSION= 0.4.0.r2 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11 xfce MASTER_SITES= http://freebsd.unixfreunde.de/sources/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/} diff --git a/x11/xfce4-verve-plugin/Makefile b/x11/xfce4-verve-plugin/Makefile index 50e08dd0afe1..131139a2d0a1 100644 --- a/x11/xfce4-verve-plugin/Makefile +++ b/x11/xfce4-verve-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= verve-plugin PORTVERSION= 0.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 xfce MASTER_SITES= http://goodies.xfce.org/releases/xfce4-verve-plugin/ PKGNAMEPREFIX= xfce4- diff --git a/x11/xfce4-wmdock-plugin/Makefile b/x11/xfce4-wmdock-plugin/Makefile index c99bbb1dfbc8..8edee93410ff 100644 --- a/x11/xfce4-wmdock-plugin/Makefile +++ b/x11/xfce4-wmdock-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-wmdock-plugin PORTVERSION= 0.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 xfce MASTER_SITES= http://www.ibh.de/~ellguth/develop/ diff --git a/x11/xfce4-xfapplet-plugin/Makefile b/x11/xfce4-xfapplet-plugin/Makefile index 7f9edad47639..4ecf9188e0fe 100644 --- a/x11/xfce4-xfapplet-plugin/Makefile +++ b/x11/xfce4-xfapplet-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-xfapplet-plugin PORTVERSION= 0.1.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11 xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 |