All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-xfce][PATCH] xfce4-power-manager: Add initial recipe for version 1.0.10.
@ 2012-02-04  0:03 Peter Tworek
  2012-02-04  2:50 ` Andreas Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Tworek @ 2012-02-04  0:03 UTC (permalink / raw)
  To: openembedded-devel

Run tested on netbook pro.

Signed-off-by: Peter Tworek <tworaz666@gmail.com>
---
 .../xfce4-power-manager_1.0.10.bb                  |   28 ++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)
 create mode 100644 meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb

diff --git a/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
new file mode 100644
index 0000000..4641178
--- /dev/null
+++ b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
@@ -0,0 +1,28 @@
+DESCRIPTION = "Power manager for the Xfce desktop environment"
+HOMEPAGE = "http://goodies.xfce.org/projects/applications/xfce4-power-manager"
+SECTION = "x11"
+
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
+
+inherit xfce
+
+DEPENDS = "gtk+ glib-2.0 dbus-glib xfconf libxfce4ui libxfce4util libnotify \
+           libxrandr virtual/libx11 libxext xfce4-panel"
+RDEPENDS_${PN} = "networkmanager udisks upower polkit"
+
+EXTRA_OECONF = " \
+    --enable-polkit \
+    --enable-network-manager \
+    --enable-panel-plugins \
+    "
+
+PACKAGES += "xfce4-brightness-plugin"
+FILES_${PN} += "${datadir}/polkit-1"
+FILES_xfce4-brightness-plugin = " \
+    ${libdir}/xfce4/panel-plugins/xfce4-brightness-plugin \
+    ${datadir}/xfce4/panel-plugins/xfce4-brightness-plugin.desktop \
+    "
+
+SRC_URI[md5sum] = "38cbd272eb30e36ae538d9f38858bd38"
+SRC_URI[sha256sum] = "80e4bb44f81c485ec09654dde432d6e28667d49a787625632a4413aac30422f0"
-- 
1.7.3.4




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [meta-xfce][PATCH] xfce4-power-manager: Add initial recipe for version 1.0.10.
  2012-02-04  0:03 [meta-xfce][PATCH] xfce4-power-manager: Add initial recipe for version 1.0.10 Peter Tworek
@ 2012-02-04  2:50 ` Andreas Müller
  2012-02-04 10:00   ` Peter Tworek
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Müller @ 2012-02-04  2:50 UTC (permalink / raw)
  To: openembedded-devel

On Sat, Feb 4, 2012 at 1:03 AM, Peter Tworek <tworaz666@gmail.com> wrote:
> Run tested on netbook pro.
>
> Signed-off-by: Peter Tworek <tworaz666@gmail.com>
> ---
>  .../xfce4-power-manager_1.0.10.bb                  |   28 ++++++++++++++++++++
>  1 files changed, 28 insertions(+), 0 deletions(-)
>  create mode 100644 meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>
> diff --git a/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
> new file mode 100644
> index 0000000..4641178
> --- /dev/null
> +++ b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
> @@ -0,0 +1,28 @@
> +DESCRIPTION = "Power manager for the Xfce desktop environment"
> +HOMEPAGE = "http://goodies.xfce.org/projects/applications/xfce4-power-manager"
> +SECTION = "x11"
> +
> +LICENSE = "GPLv2+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
> +
> +inherit xfce
> +
> +DEPENDS = "gtk+ glib-2.0 dbus-glib xfconf libxfce4ui libxfce4util libnotify \
> +           libxrandr virtual/libx11 libxext xfce4-panel"
> +RDEPENDS_${PN} = "networkmanager udisks upower polkit"
> +
> +EXTRA_OECONF = " \
> +    --enable-polkit \
> +    --enable-network-manager \
networkmanager conflicts with conman. I don't if this makes sense to
use conman with xfce (am using networkmanager too). What happens if
this option is not set?
> +    --enable-panel-plugins \
> +    "
> +
> +PACKAGES += "xfce4-brightness-plugin"
> +FILES_${PN} += "${datadir}/polkit-1"
> +FILES_xfce4-brightness-plugin = " \
> +    ${libdir}/xfce4/panel-plugins/xfce4-brightness-plugin \
> +    ${datadir}/xfce4/panel-plugins/xfce4-brightness-plugin.desktop \
> +    "
> +
> +SRC_URI[md5sum] = "38cbd272eb30e36ae538d9f38858bd38"
> +SRC_URI[sha256sum] = "80e4bb44f81c485ec09654dde432d6e28667d49a787625632a4413aac30422f0"
> --
> 1.7.3.4
>
>
This was part of my TODO - Thanks. Give it a test next week.

Andreas



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [meta-xfce][PATCH] xfce4-power-manager: Add initial recipe for version 1.0.10.
  2012-02-04  2:50 ` Andreas Müller
@ 2012-02-04 10:00   ` Peter Tworek
       [not found]     ` <CALbNGRR+McF-f3fQ61EZ4fpxsLdthDP-DJ2uMLoRFJNRWmyyBA@mail.gmail.com>
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Tworek @ 2012-02-04 10:00 UTC (permalink / raw)
  To: openembedded-devel

On 02/04/2012 03:50 AM, Andreas Müller wrote:
> On Sat, Feb 4, 2012 at 1:03 AM, Peter Tworek<tworaz666@gmail.com>  wrote:
>> Run tested on netbook pro.
>>
>> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
>> ---
>>   .../xfce4-power-manager_1.0.10.bb                  |   28 ++++++++++++++++++++
>>   1 files changed, 28 insertions(+), 0 deletions(-)
>>   create mode 100644 meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>>
>> diff --git a/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>> new file mode 100644
>> index 0000000..4641178
>> --- /dev/null
>> +++ b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>> @@ -0,0 +1,28 @@
>> +DESCRIPTION = "Power manager for the Xfce desktop environment"
>> +HOMEPAGE = "http://goodies.xfce.org/projects/applications/xfce4-power-manager"
>> +SECTION = "x11"
>> +
>> +LICENSE = "GPLv2+"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
>> +
>> +inherit xfce
>> +
>> +DEPENDS = "gtk+ glib-2.0 dbus-glib xfconf libxfce4ui libxfce4util libnotify \
>> +           libxrandr virtual/libx11 libxext xfce4-panel"
>> +RDEPENDS_${PN} = "networkmanager udisks upower polkit"
>> +
>> +EXTRA_OECONF = " \
>> +    --enable-polkit \
>> +    --enable-network-manager \
> networkmanager conflicts with conman. I don't if this makes sense to
> use conman with xfce (am using networkmanager too). What happens if
> this option is not set?

Haven't tested it (yet), but I think it should work fine without 
networkmanager, event when it's enabled. You'll probably see some 
warnings in you logs, saying that it can't contact it via dbus, but that 
should be it. Anyway I'll try to verify my theory...

>> +    --enable-panel-plugins \
>> +    "
>> +
>> +PACKAGES += "xfce4-brightness-plugin"
>> +FILES_${PN} += "${datadir}/polkit-1"
>> +FILES_xfce4-brightness-plugin = " \
>> +    ${libdir}/xfce4/panel-plugins/xfce4-brightness-plugin \
>> +    ${datadir}/xfce4/panel-plugins/xfce4-brightness-plugin.desktop \
>> +    "
>> +
>> +SRC_URI[md5sum] = "38cbd272eb30e36ae538d9f38858bd38"
>> +SRC_URI[sha256sum] = "80e4bb44f81c485ec09654dde432d6e28667d49a787625632a4413aac30422f0"
>> --
>> 1.7.3.4
>>
>>
> This was part of my TODO - Thanks. Give it a test next week.
You're welcome.

/ptw



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [meta-xfce][PATCH] xfce4-power-manager: Add initial recipe for version 1.0.10.
       [not found]     ` <CALbNGRR+McF-f3fQ61EZ4fpxsLdthDP-DJ2uMLoRFJNRWmyyBA@mail.gmail.com>
@ 2012-02-12 22:53       ` Andreas Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Müller @ 2012-02-12 22:53 UTC (permalink / raw)
  To: openembedded-devel

On Sun, Feb 12, 2012 at 10:26 PM, Andreas Müller
<schnitzeltony@googlemail.com> wrote:
> On Sat, Feb 4, 2012 at 11:00 AM, Peter Tworek <tworaz666@gmail.com> wrote:
>> On 02/04/2012 03:50 AM, Andreas Müller wrote:
>>>
>>> On Sat, Feb 4, 2012 at 1:03 AM, Peter Tworek<tworaz666@gmail.com>  wrote:
>>>>
>>>> Run tested on netbook pro.
>>>>
>>>> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
>>>> ---
>>>>  .../xfce4-power-manager_1.0.10.bb                  |   28
>>>> ++++++++++++++++++++
>>>>  1 files changed, 28 insertions(+), 0 deletions(-)
>>>>  create mode 100644
>>>> meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>>>>
>>>> diff --git
>>>> a/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>>>> b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>>>> new file mode 100644
>>>> index 0000000..4641178
>>>> --- /dev/null
>>>> +++
>>>> b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.0.10.bb
>>>> @@ -0,0 +1,28 @@
>>>> +DESCRIPTION = "Power manager for the Xfce desktop environment"
>>>> +HOMEPAGE =
>>>> "http://goodies.xfce.org/projects/applications/xfce4-power-manager"
>>>> +SECTION = "x11"
>>>> +
>>>> +LICENSE = "GPLv2+"
>>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
>>>> +
>>>> +inherit xfce
>>>> +
>>>> +DEPENDS = "gtk+ glib-2.0 dbus-glib xfconf libxfce4ui libxfce4util
>>>> libnotify \
>>>> +           libxrandr virtual/libx11 libxext xfce4-panel"
>>>> +RDEPENDS_${PN} = "networkmanager udisks upower polkit"
>>>> +
>>>> +EXTRA_OECONF = " \
>>>> +    --enable-polkit \
>>>> +    --enable-network-manager \
>>>
>>> networkmanager conflicts with conman. I don't if this makes sense to
>>> use conman with xfce (am using networkmanager too). What happens if
>>> this option is not set?
>>
>>
>> Haven't tested it (yet), but I think it should work fine without
>> networkmanager, event when it's enabled. You'll probably see some warnings
>> in you logs, saying that it can't contact it via dbus, but that should be
>> it. Anyway I'll try to verify my theory...
You are right: I cross checked in source - so

Acked-by: Andreas Müller<schnitzeltony@googlemail.com>

Andreas



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-12 23:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-04  0:03 [meta-xfce][PATCH] xfce4-power-manager: Add initial recipe for version 1.0.10 Peter Tworek
2012-02-04  2:50 ` Andreas Müller
2012-02-04 10:00   ` Peter Tworek
     [not found]     ` <CALbNGRR+McF-f3fQ61EZ4fpxsLdthDP-DJ2uMLoRFJNRWmyyBA@mail.gmail.com>
2012-02-12 22:53       ` Andreas Müller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.