Hello, After upgrade of XFCE4-4.8 to 4.10 or new install, It lacks the icons in the menu bar from XFCE4-4.10 and this trash icon. Otherwise, XFCE 4.10 version, it works pretty well ... :-)) Best regards, Eric Douzet
Responsible Changed From-To: freebsd-ports-bugs->freebsd-xfce Over to maintainer (via the GNATS Auto Assign Tool)
I can confirm this problem
2012/6/5 Pavel Timofeev <timp87@gmail.com>: > The following reply was made to PR ports/168688; it has been noted by GNA= TS. > > From: Pavel Timofeev <timp87@gmail.com> > To: bug-followup@FreeBSD.org, eric.douzet@gmail.com > Cc: > Subject: Re: ports/168688: missing icons interface with x11-wm/xfce4 > Date: Tue, 5 Jun 2012 15:35:27 +0400 > > =A0--e89a8f22bb0b0e402004c1b80ccc > =A0Content-Type: text/plain; charset=3DUTF-8 > > =A0I can confirm this problem It's not bug, it's normal behaviour. With new Xfce 4.10, default value of icons theme and Gtk theme are empty. To avoid this annoying "bug", there're 3 ways to correct it: - create ~/.gtkrc-2.0 file and add this line gtk-icon-theme-name =3D "Tango" # Tango theme caveat: you can't change icons theme with settings window. - go to Menu -> Settings -> Appearance -> Icons (need Xfce's session which works) The last, I think it's the best. - copy /usr/local/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml to ~/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml search keyword IconThemeName and replace empty by name of icons theme. I've a patch on my box. --=20 olivier
Responsible Changed From-To: freebsd-xfce->olivierd I'll take it.
Author: olivierd Date: Tue Jul 17 21:26:28 2012 New Revision: 301043 URL: http://svn.freebsd.org/changeset/ports/301043 Log: Fix missing icons and GTK theme. PR: 168688 Approved by: miwi, rene (mentors) Modified: head/sysutils/xfce4-settings/Makefile Modified: head/sysutils/xfce4-settings/Makefile ============================================================================== --- head/sysutils/xfce4-settings/Makefile Tue Jul 17 21:14:08 2012 (r301042) +++ head/sysutils/xfce4-settings/Makefile Tue Jul 17 21:26:28 2012 (r301043) @@ -7,7 +7,7 @@ PORTNAME= xfce4-settings PORTVERSION= 4.10.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 @@ -31,7 +31,7 @@ CONFIGURE_ARGS= --enable-pluggable-dialo --enable-gio-unix OPTIONS_DEFINE= XKLAVIER XCURSOR XRANDR NOTIFY NLS SOUND -OPTIONS_DEFAULT= XCURSOR XRANDR NOTIFY NLS SOUND +OPTIONS_DEFAULT= XKLAVIER XCURSOR XRANDR NOTIFY NLS SOUND_DESC= Enable sound control .include <bsd.port.options.mk> @@ -85,7 +85,9 @@ CONFIGURE_ARGS+=--disable-sound-settings post-patch: # until xfce4-icon-theme is back we rely on Tango @${REINPLACE_CMD} -e 's|Rodent|Tango|g' \ - ${WRKSRC}/dialogs/appearance-settings/main.c \ + ${WRKSRC}/dialogs/appearance-settings/main.c + @${REINPLACE_CMD} -e 's|IconThemeName" type="empty|IconThemeName" type="string" value="Tango|; \ + s|"ThemeName" type="empty|"ThemeName" type="string" value="Xfce|' \ ${WRKSRC}/xfsettingsd/xsettings.xml @${REINPLACE_CMD} -e 's|xkl_config_registry_load (settings->priv->xkl_registry)|xkl_config_registry_load (settings->priv->xkl_registry, FALSE)|g; \ s|xkl_engine_stop_listen (settings->priv->xkl_engine)|xkl_engine_stop_listen (settings->priv->xkl_engine, FALSE)|g' \ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Fixed