update xfce to 4.6.1

bump PORTREVISION where necessary
This commit is contained in:
Oliver Lehmann 2009-05-06 14:56:27 +00:00
parent 71140b3f87
commit 157c3e2264
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=233310
91 changed files with 228 additions and 287 deletions

View file

@ -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"

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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);

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}/

View file

@ -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/

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -7,6 +7,7 @@
PORTNAME= xfburn
PORTVERSION= 0.4.1
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://goodies.xfce.org/releases/xfburn/

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}

View file

@ -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/}

View file

@ -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-

View file

@ -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/

View file

@ -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