diff options
author | Koen Kooi <koen@openembedded.org> | 2008-09-25 16:12:21 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-09-25 16:12:21 +0000 |
commit | 6d8ffd9e3515afdb9166d2779319cd33ea7e198b (patch) | |
tree | 164c50134c90d95e8e499ad4143851adf30f3e52 /classes | |
parent | 5c2a1450525aa5198880500f6e1fe9223bb49cd4 (diff) |
xfce: remove pkgconfig hacks and switch to autotools.bbclass, tweak packaging
Diffstat (limited to 'classes')
-rw-r--r-- | classes/xfce.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/xfce.bbclass b/classes/xfce.bbclass index ecc00825bc..c6ccc5fd2c 100644 --- a/classes/xfce.bbclass +++ b/classes/xfce.bbclass @@ -12,9 +12,15 @@ SRC_URI = "http://www.us.xfce.org/archive/xfce-${PV}/src/${PN}-${PV}.tar.bz2" inherit autotools +AUTOTOOLS_STAGE_PKGCONFIG = "1" + EXTRA_OECONF += "--with-pluginsdir=${libdir}/xfce4/panel-plugins/" # FIXME: Put icons in their own package too? FILES_${PN} += "${datadir}/icons/* ${datadir}/applications/* ${libdir}/xfce4/modules/*.so*" FILES_${PN}-doc += "${datadir}/xfce4/doc" + +FILES_${PN}-dev += "${libdir}/xfce4/*/*.la" +FILES_${PN}-dbg += "${libdir}/xfce4/*/.debug" + |