ports/154064: update port: sysutils/xfce4-power-manager to 0.8.5

J.R. Oldroyd fbsd at opal.com
Sun Jan 16 19:30:12 UTC 2011


>Number:         154064
>Category:       ports
>Synopsis:       update port: sysutils/xfce4-power-manager to 0.8.5
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jan 16 19:30:11 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     J.R. Oldroyd
>Release:        FreeBSD 8.1-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD xx.opal.com 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root at mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
>Description:
update port: sysutils/xfce4-power-manager to 0.8.5
>How-To-Repeat:
n/a
>Fix:
diff -ruN /usr/ports/sysutils/xfce4-power-manager/Makefile sysutils/xfce4-power-manager/Makefile
--- /usr/ports/sysutils/xfce4-power-manager/Makefile	2010-05-31 11:27:27.000000000 -0400
+++ sysutils/xfce4-power-manager/Makefile	2011-01-16 14:26:27.000000000 -0500
@@ -6,10 +6,10 @@
 #
 
 PORTNAME=	xfce4-power-manager
-PORTVERSION=	0.8.2
-PORTREVISION=	5
+PORTVERSION=	0.8.5
 CATEGORIES=	sysutils xfce
-MASTER_SITES=	http://goodies.xfce.org/releases/${PORTNAME}/
+MASTER_SITES=	${MASTER_SITE_XFCE}
+MASTER_SITE_SUBDIR=src/apps/${PORTNAME}/0.8
 DIST_SUBDIR=	xfce4
 
 MAINTAINER=	fbsd at opal.com
@@ -22,6 +22,25 @@
 USE_GNOME=	gnometarget gtk20 intltool intlhack pkgconfig
 USE_XFCE=	configenv panel
 
+SUB_FILES=	pkg-message
+
 MAN1=		xfce4-power-manager.1 xfce4-power-manager-settings.1
 
-.include <bsd.port.mk>
+INSTALLS_ICONS=	yes
+
+# the application's configure script forces USE_NLS on, so we must
+# install/deinstall NLS files even when WITHOUT_NLS is set
+#.if !defined(WITHOUT_NLS)
+USE_GETTEXT=	yes
+PLIST_SUB+=	NLS=""
+#.else
+#CONFIGURE_ARGS+= --disable-nls
+#PLIST_SUB+=	NLS="@comment "
+#.endif
+
+.include <bsd.port.pre.mk>
+
+post-install:
+		@${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.post.mk>
diff -ruN /usr/ports/sysutils/xfce4-power-manager/distinfo sysutils/xfce4-power-manager/distinfo
--- /usr/ports/sysutils/xfce4-power-manager/distinfo	2009-08-10 11:49:05.000000000 -0400
+++ sysutils/xfce4-power-manager/distinfo	2010-11-27 17:47:17.000000000 -0500
@@ -1,3 +1,3 @@
-MD5 (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 80423d341ad996d9cf7e4762d53a0715
-SHA256 (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 6b56989b6b2d35cc4c6e3711b1d8d480d1143d83dba7774ed785f4f2323d5868
-SIZE (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 664701
+MD5 (xfce4/xfce4-power-manager-0.8.5.tar.bz2) = ca6a1fff1d4fee86844c2f5621e9fb87
+SHA256 (xfce4/xfce4-power-manager-0.8.5.tar.bz2) = 774eb81a968ea5b83a8fc008233e9e6884a3caef0d1821c8a562b40d062eb9df
+SIZE (xfce4/xfce4-power-manager-0.8.5.tar.bz2) = 920729
diff -ruN /usr/ports/sysutils/xfce4-power-manager/files/patch-src-xfpm-button-hal.c sysutils/xfce4-power-manager/files/patch-src-xfpm-button-hal.c
--- /usr/ports/sysutils/xfce4-power-manager/files/patch-src-xfpm-button-hal.c	1969-12-31 19:00:00.000000000 -0500
+++ sysutils/xfce4-power-manager/files/patch-src-xfpm-button-hal.c	2010-11-29 11:39:54.000000000 -0500
@@ -0,0 +1,25 @@
+--- src/xfpm-button-hal.c.orig	2010-03-02 10:17:02.000000000 -0500
++++ src/xfpm-button-hal.c	2010-11-29 11:39:46.000000000 -0500
+@@ -226,6 +226,22 @@
+     {
+ 	xfpm_button_hal_add_button (bt, udi[i], lid_only);
+     }
++
++#ifdef __FreeBSD__
++    /*
++    ** FreeBSD's return from hal_manager_find_device_by_capability()
++    ** does not include the laptop lid button because the laptop lid
++    ** does not have info.capability = "button".
++    **
++    ** So, if this appears to be a laptop, force the additon of the
++    ** lid button here.
++    */
++    manager = hal_manager_new ();
++    if ( hal_manager_get_is_laptop (manager))
++	xfpm_button_hal_add_button (bt, "/org/freedesktop/Hal/devices/acpi_lid_0", lid_only);
++    g_object_unref (manager);
++
++#endif
+     hal_manager_free_string_array (udi);
+ }
+ 
diff -ruN /usr/ports/sysutils/xfce4-power-manager/files/patch-src_xfpm-dpms.c sysutils/xfce4-power-manager/files/patch-src_xfpm-dpms.c
--- /usr/ports/sysutils/xfce4-power-manager/files/patch-src_xfpm-dpms.c	2010-05-04 08:14:21.000000000 -0400
+++ sysutils/xfce4-power-manager/files/patch-src_xfpm-dpms.c	1969-12-31 19:00:00.000000000 -0500
@@ -1,11 +0,0 @@
---- src/xfpm-dpms.c.orig	2010-05-04 10:58:28.000000000 +0200
-+++ src/xfpm-dpms.c	2010-05-04 11:24:33.000000000 +0200
-@@ -32,7 +32,7 @@
- 
- #include <X11/Xproto.h>
- #include <X11/extensions/dpms.h>
--#include <X11/extensions/dpmsstr.h>
-+#include <X11/extensions/dpmsproto.h>
- 
- #include <libxfce4util/libxfce4util.h>
- 
diff -ruN /usr/ports/sysutils/xfce4-power-manager/files/pkg-message.in sysutils/xfce4-power-manager/files/pkg-message.in
--- /usr/ports/sysutils/xfce4-power-manager/files/pkg-message.in	1969-12-31 19:00:00.000000000 -0500
+++ sysutils/xfce4-power-manager/files/pkg-message.in	2010-11-29 12:13:37.000000000 -0500
@@ -0,0 +1,78 @@
+---------------------------------------------------------------------------
+The xfce4-power-manager application and the xfce4-brightness-plugin do
+not work well on FreeBSD.  They do compile and run, but do not work as
+expected.
+
+The main problems are with FreeBSD's configuration of device attributes
+in HAL.  Many devices, e.g., laptop lid switch, power switch and even
+events like battery level changes, are configured in HAL with different
+attributes from those used on other OSs, and so they are not found by
+xfce4-power-plugin when it queries for them on FreeBSD.  As a result,
+xfce4-power-plugin is not sent d-bus messages for status changes on
+these devices and therefore it does nothing.
+
+The solution is to either add patches to xfce4-power-manager to use
+different HAL/d-bus search parameters here, or to reconfigure HAL's
+configuration to use attributes that are consistent with other systems.
+Neither of these solutions have been fully implemented as yet.
+
+One patch, for the laptop lid switch, is included to make that part work.
+If you use it and configure xfce4-power-manager to suspend the system on
+lid closure, on resume you will likely notice that the display brightness
+is dimmed, perhaps to very low.  It can be reset using either of the
+following commands:
+	xrandr --output LVDS --gamma 1:1:1
+or	xgamma -gamma 1
+Obviously, this is a work-around and a real solution is needed for the
+brightness handling in xfce4-power-manager/xfce4-brightness-plugin.
+
+At the very least, to use this, you will need to make changes to your
+PolicyKit and sysctl configuration as described below.
+---------------------------------------------------------------------------
+For xfce4-power-manager to work on FreeBSD, you will need to ensure the
+following:
+
+1. %%PREFIX%%/etc/PolicyKit/PolicyKit.conf must contain the following
+   permissions:
+
+    <match action="org.freedesktop.hal.power-management.cpufreq">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.hibernate">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.keyboard-backlight">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.lcd-panel">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.light-sensor">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.reboot">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.set-powersave">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.shutdown">
+        <return result="yes"/>
+    </match>
+    <match action="org.freedesktop.hal.power-management.suspend">
+        <return result="yes"/>
+    </match>
+
+2. The system controls for power management must not be in use:
+
+	hw.acpi.power_button_state: NONE
+	hw.acpi.sleep_button_state: NONE
+	hw.acpi.lid_switch_state: NONE
+
+   If any of these system controls are set, they will override anything
+   xfce4-power-manager attempts to do.
+---------------------------------------------------------------------------
+Anyone wishing to work on this to get it going properly is encouraged to
+contact the current port maintainer (see MAINTAINER= in the Makefile) and
+offer to take over maintenance of this port.
+---------------------------------------------------------------------------
diff -ruN /usr/ports/sysutils/xfce4-power-manager/pkg-descr sysutils/xfce4-power-manager/pkg-descr
--- /usr/ports/sysutils/xfce4-power-manager/pkg-descr	2009-08-10 11:49:05.000000000 -0400
+++ sysutils/xfce4-power-manager/pkg-descr	2010-11-27 18:57:35.000000000 -0500
@@ -1,3 +1,13 @@
-Written by Ali Abdallah, this is a power manager for the xfce desktop.
+This software is a power manager for the Xfce desktop, Xfce power
+manager manages the power sources on the computer and the devices
+that can be controlled to reduce their power consumption (such as
+LCD brightness level, monitor sleep, CPU frequency scaling).  In
+addition, xfce4-power-manager provides a set of freedesktop-compliant
+DBus interfaces to inform other applications about current power
+level so that they can adjust their power consumption, and it
+provides the inhibit interface which allows applications to prevent
+automatic sleep actions via the power manager; as an example, the
+operating system's package manager should make use of this interface
+while it is performing update operations.
 
 WWW: http://goodies.xfce.org/projects/applications/xfce4-power-manager
diff -ruN /usr/ports/sysutils/xfce4-power-manager/pkg-plist sysutils/xfce4-power-manager/pkg-plist
--- /usr/ports/sysutils/xfce4-power-manager/pkg-plist	2009-08-10 11:49:05.000000000 -0400
+++ sysutils/xfce4-power-manager/pkg-plist	2010-11-27 19:03:38.000000000 -0500
@@ -3,6 +3,141 @@
 etc/xdg/autostart/xfce4-power-manager.desktop
 libexec/xfce4/panel-plugins/xfce4-brightness-plugin
 share/applications/xfce4-power-manager-settings.desktop
+share/icons/hicolor/16x16/actions/xfpm-hibernate.png
+share/icons/hicolor/16x16/actions/xfpm-suspend.png
+share/icons/hicolor/16x16/status/xfpm-ac-adapter.png
+share/icons/hicolor/16x16/status/xfpm-primary-000.png
+share/icons/hicolor/16x16/status/xfpm-primary-020.png
+share/icons/hicolor/16x16/status/xfpm-primary-040.png
+share/icons/hicolor/16x16/status/xfpm-primary-060.png
+share/icons/hicolor/16x16/status/xfpm-primary-080.png
+share/icons/hicolor/16x16/status/xfpm-primary-100.png
+share/icons/hicolor/16x16/status/xfpm-primary-000-charging.png
+share/icons/hicolor/16x16/status/xfpm-primary-020-charging.png
+share/icons/hicolor/16x16/status/xfpm-primary-040-charging.png
+share/icons/hicolor/16x16/status/xfpm-primary-060-charging.png
+share/icons/hicolor/16x16/status/xfpm-primary-080-charging.png
+share/icons/hicolor/16x16/status/xfpm-primary-100-charging.png
+share/icons/hicolor/16x16/status/xfpm-primary-charged.png
+share/icons/hicolor/16x16/status/xfpm-primary-missing.png
+share/icons/hicolor/16x16/status/xfpm-ups-000.png
+share/icons/hicolor/16x16/status/xfpm-ups-020.png
+share/icons/hicolor/16x16/status/xfpm-ups-040.png
+share/icons/hicolor/16x16/status/xfpm-ups-060.png
+share/icons/hicolor/16x16/status/xfpm-ups-080.png
+share/icons/hicolor/16x16/status/xfpm-ups-100.png
+share/icons/hicolor/16x16/status/xfpm-ups-000-charging.png
+share/icons/hicolor/16x16/status/xfpm-ups-020-charging.png
+share/icons/hicolor/16x16/status/xfpm-ups-040-charging.png
+share/icons/hicolor/16x16/status/xfpm-ups-060-charging.png
+share/icons/hicolor/16x16/status/xfpm-ups-080-charging.png
+share/icons/hicolor/16x16/status/xfpm-ups-100-charging.png
+share/icons/hicolor/16x16/status/xfpm-ups-charged.png
+share/icons/hicolor/16x16/status/xfpm-ups-missing.png
+share/icons/hicolor/16x16/status/xfpm-keyboard-000.png
+share/icons/hicolor/16x16/status/xfpm-keyboard-030.png
+share/icons/hicolor/16x16/status/xfpm-keyboard-060.png
+share/icons/hicolor/16x16/status/xfpm-keyboard-100.png
+share/icons/hicolor/16x16/status/xfpm-mouse-000.png
+share/icons/hicolor/16x16/status/xfpm-mouse-030.png
+share/icons/hicolor/16x16/status/xfpm-mouse-060.png
+share/icons/hicolor/16x16/status/xfpm-mouse-100.png
+share/icons/hicolor/16x16/status/xfpm-phone-000.png
+share/icons/hicolor/16x16/status/xfpm-phone-030.png
+share/icons/hicolor/16x16/status/xfpm-phone-060.png
+share/icons/hicolor/16x16/status/xfpm-phone-100.png
+share/icons/hicolor/16x16/status/xfpm-brightness-lcd-invalid.png
+share/icons/hicolor/16x16/status/xfpm-brightness-lcd.png
+share/icons/hicolor/24x24/actions/xfpm-hibernate.png
+share/icons/hicolor/24x24/actions/xfpm-suspend.png
+share/icons/hicolor/24x24/status/xfpm-ac-adapter.png
+share/icons/hicolor/24x24/status/xfpm-primary-000.png
+share/icons/hicolor/24x24/status/xfpm-primary-020.png
+share/icons/hicolor/24x24/status/xfpm-primary-040.png
+share/icons/hicolor/24x24/status/xfpm-primary-060.png
+share/icons/hicolor/24x24/status/xfpm-primary-080.png
+share/icons/hicolor/24x24/status/xfpm-primary-100.png
+share/icons/hicolor/24x24/status/xfpm-primary-000-charging.png
+share/icons/hicolor/24x24/status/xfpm-primary-020-charging.png
+share/icons/hicolor/24x24/status/xfpm-primary-040-charging.png
+share/icons/hicolor/24x24/status/xfpm-primary-060-charging.png
+share/icons/hicolor/24x24/status/xfpm-primary-080-charging.png
+share/icons/hicolor/24x24/status/xfpm-primary-100-charging.png
+share/icons/hicolor/24x24/status/xfpm-primary-charged.png
+share/icons/hicolor/24x24/status/xfpm-primary-missing.png
+share/icons/hicolor/24x24/status/xfpm-ups-000.png
+share/icons/hicolor/24x24/status/xfpm-ups-020.png
+share/icons/hicolor/24x24/status/xfpm-ups-040.png
+share/icons/hicolor/24x24/status/xfpm-ups-060.png
+share/icons/hicolor/24x24/status/xfpm-ups-080.png
+share/icons/hicolor/24x24/status/xfpm-ups-100.png
+share/icons/hicolor/24x24/status/xfpm-ups-000-charging.png
+share/icons/hicolor/24x24/status/xfpm-ups-020-charging.png
+share/icons/hicolor/24x24/status/xfpm-ups-040-charging.png
+share/icons/hicolor/24x24/status/xfpm-ups-060-charging.png
+share/icons/hicolor/24x24/status/xfpm-ups-080-charging.png
+share/icons/hicolor/24x24/status/xfpm-ups-100-charging.png
+share/icons/hicolor/24x24/status/xfpm-ups-charged.png
+share/icons/hicolor/24x24/status/xfpm-ups-missing.png
+share/icons/hicolor/24x24/status/xfpm-keyboard-000.png
+share/icons/hicolor/24x24/status/xfpm-keyboard-030.png
+share/icons/hicolor/24x24/status/xfpm-keyboard-060.png
+share/icons/hicolor/24x24/status/xfpm-keyboard-100.png
+share/icons/hicolor/24x24/status/xfpm-mouse-000.png
+share/icons/hicolor/24x24/status/xfpm-mouse-030.png
+share/icons/hicolor/24x24/status/xfpm-mouse-060.png
+share/icons/hicolor/24x24/status/xfpm-mouse-100.png
+share/icons/hicolor/24x24/status/xfpm-phone-000.png
+share/icons/hicolor/24x24/status/xfpm-phone-030.png
+share/icons/hicolor/24x24/status/xfpm-phone-060.png
+share/icons/hicolor/24x24/status/xfpm-phone-100.png
+share/icons/hicolor/24x24/status/xfpm-brightness-lcd-invalid.png
+share/icons/hicolor/24x24/status/xfpm-brightness-lcd.png
+share/icons/hicolor/48x48/actions/xfpm-hibernate.png
+share/icons/hicolor/48x48/actions/xfpm-suspend.png
+share/icons/hicolor/48x48/status/xfpm-ac-adapter.png
+share/icons/hicolor/48x48/status/xfpm-primary-000.png
+share/icons/hicolor/48x48/status/xfpm-primary-020.png
+share/icons/hicolor/48x48/status/xfpm-primary-040.png
+share/icons/hicolor/48x48/status/xfpm-primary-060.png
+share/icons/hicolor/48x48/status/xfpm-primary-080.png
+share/icons/hicolor/48x48/status/xfpm-primary-100.png
+share/icons/hicolor/48x48/status/xfpm-primary-000-charging.png
+share/icons/hicolor/48x48/status/xfpm-primary-020-charging.png
+share/icons/hicolor/48x48/status/xfpm-primary-040-charging.png
+share/icons/hicolor/48x48/status/xfpm-primary-060-charging.png
+share/icons/hicolor/48x48/status/xfpm-primary-080-charging.png
+share/icons/hicolor/48x48/status/xfpm-primary-100-charging.png
+share/icons/hicolor/48x48/status/xfpm-primary-charged.png
+share/icons/hicolor/48x48/status/xfpm-primary-missing.png
+share/icons/hicolor/48x48/status/xfpm-ups-000.png
+share/icons/hicolor/48x48/status/xfpm-ups-020.png
+share/icons/hicolor/48x48/status/xfpm-ups-040.png
+share/icons/hicolor/48x48/status/xfpm-ups-060.png
+share/icons/hicolor/48x48/status/xfpm-ups-080.png
+share/icons/hicolor/48x48/status/xfpm-ups-100.png
+share/icons/hicolor/48x48/status/xfpm-ups-000-charging.png
+share/icons/hicolor/48x48/status/xfpm-ups-020-charging.png
+share/icons/hicolor/48x48/status/xfpm-ups-040-charging.png
+share/icons/hicolor/48x48/status/xfpm-ups-060-charging.png
+share/icons/hicolor/48x48/status/xfpm-ups-080-charging.png
+share/icons/hicolor/48x48/status/xfpm-ups-100-charging.png
+share/icons/hicolor/48x48/status/xfpm-ups-charged.png
+share/icons/hicolor/48x48/status/xfpm-ups-missing.png
+share/icons/hicolor/48x48/status/xfpm-keyboard-000.png
+share/icons/hicolor/48x48/status/xfpm-keyboard-030.png
+share/icons/hicolor/48x48/status/xfpm-keyboard-060.png
+share/icons/hicolor/48x48/status/xfpm-keyboard-100.png
+share/icons/hicolor/48x48/status/xfpm-mouse-000.png
+share/icons/hicolor/48x48/status/xfpm-mouse-030.png
+share/icons/hicolor/48x48/status/xfpm-mouse-060.png
+share/icons/hicolor/48x48/status/xfpm-mouse-100.png
+share/icons/hicolor/48x48/status/xfpm-phone-000.png
+share/icons/hicolor/48x48/status/xfpm-phone-030.png
+share/icons/hicolor/48x48/status/xfpm-phone-060.png
+share/icons/hicolor/48x48/status/xfpm-phone-100.png
+share/icons/hicolor/48x48/status/xfpm-brightness-lcd-invalid.png
+share/icons/hicolor/48x48/status/xfpm-brightness-lcd.png
 share/icons/hicolor/scalable/actions/xfpm-hibernate.svg
 share/icons/hicolor/scalable/actions/xfpm-suspend.svg
 share/icons/hicolor/scalable/status/xfpm-ac-adapter.svg
@@ -48,31 +183,34 @@
 share/icons/hicolor/scalable/status/xfpm-ups-100.svg
 share/icons/hicolor/scalable/status/xfpm-ups-charged.svg
 share/icons/hicolor/scalable/status/xfpm-ups-missing.svg
-share/locale/ca/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/cs/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/da/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/de/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/el/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/es/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/et/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/eu/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/fi/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/fr/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/gl/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/id/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/it/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/ja/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/nb/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/nl/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/pt/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/pt_BR/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/ru/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/sv/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/tr/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/uk/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/ur/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/ur_PK/LC_MESSAGES/xfce4-power-manager.mo
-share/locale/zh_CN/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/da/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/de/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/el/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/es/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/et/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/id/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/it/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/ur/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/ur_PK/LC_MESSAGES/xfce4-power-manager.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/xfce4-power-manager.mo
 share/xfce4/doc/C/images/xfpm-brightness-plugin.png
 share/xfce4/doc/C/images/xfpm-context-menu.png
 share/xfce4/doc/C/images/xfpm-extended-settings.png
@@ -84,10 +222,12 @@
 @dirrmtry share/xfce4/doc/C
 @dirrmtry share/xfce4/doc
 @dirrmtry share/xfce4
- at dirrmtry share/locale/ur_PK/LC_MESSAGES
- at dirrmtry share/locale/ur_PK
- at dirrmtry share/locale/ur/LC_MESSAGES
- at dirrmtry share/locale/ur
+%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur_PK
+%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ur
+%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/ast
 @dirrmtry share/applications
 @dirrmtry libexec/xfce4/panel-plugins
 @dirrmtry libexec/xfce4
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list