diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-10-30 22:02:59 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-13 12:15:21 +0000 |
commit | 58c01c147cdc04db30af9892cb67220123503337 (patch) | |
tree | a35de9db84c645e76d6f2784026d1acbd6fe6dcd /meta/classes/xfce.bbclass | |
parent | 96ece54fa3268d08bb07bedd8eb31493eed020d3 (diff) | |
download | poky-58c01c147cdc04db30af9892cb67220123503337.tar.gz |
xfce.bbclass: Sync with OE.dev
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/xfce.bbclass')
-rw-r--r-- | meta/classes/xfce.bbclass | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/meta/classes/xfce.bbclass b/meta/classes/xfce.bbclass index ecc00825bc..b18313fa2a 100644 --- a/meta/classes/xfce.bbclass +++ b/meta/classes/xfce.bbclass | |||
@@ -5,16 +5,23 @@ | |||
5 | # Global class to make it easier to maintain XFCE packages | 5 | # Global class to make it easier to maintain XFCE packages |
6 | 6 | ||
7 | HOMEPAGE = "http://www.xfce.org" | 7 | HOMEPAGE = "http://www.xfce.org" |
8 | LICENSE = "LGPL-2" | 8 | LICENSE = "LGPLv2" |
9 | DEPENDS += "startup-notification" | 9 | DEPENDS += "startup-notification" |
10 | 10 | ||
11 | SRC_URI = "http://www.us.xfce.org/archive/xfce-${PV}/src/${PN}-${PV}.tar.bz2" | 11 | XFCE_VERSION = ${PV} |
12 | SRC_URI = "http://www.us.xfce.org/archive/xfce-${XFCE_VERSION}/src/${PN}-${PV}.tar.bz2" | ||
12 | 13 | ||
13 | inherit autotools | 14 | inherit autotools |
14 | 15 | ||
16 | AUTOTOOLS_STAGE_PKGCONFIG = "1" | ||
17 | |||
15 | EXTRA_OECONF += "--with-pluginsdir=${libdir}/xfce4/panel-plugins/" | 18 | EXTRA_OECONF += "--with-pluginsdir=${libdir}/xfce4/panel-plugins/" |
16 | 19 | ||
17 | # FIXME: Put icons in their own package too? | 20 | # FIXME: Put icons in their own package too? |
18 | 21 | ||
19 | FILES_${PN} += "${datadir}/icons/* ${datadir}/applications/* ${libdir}/xfce4/modules/*.so*" | 22 | FILES_${PN} += "${datadir}/icons/* ${datadir}/applications/* ${libdir}/xfce4/modules/*.so*" |
20 | FILES_${PN}-doc += "${datadir}/xfce4/doc" | 23 | FILES_${PN}-doc += "${datadir}/xfce4/doc" |
24 | |||
25 | FILES_${PN}-dev += "${libdir}/xfce4/*/*.la" | ||
26 | FILES_${PN}-dbg += "${libdir}/xfce4/*/.debug" | ||
27 | |||