xfce-mcs-manager: use a single recipe since we don't have multiple versions packaged
authorOtavio Salvador <otavio@ossystems.com.br>
Fri, 13 Jun 2008 22:50:50 +0000 (19:50 -0300)
committerOtavio Salvador <otavio@ossystems.com.br>
Fri, 17 Oct 2008 17:08:01 +0000 (14:08 -0300)
packages/xfce/xfce-mcs-manager_4.4.1.bb

index 76e0452..0b9fc43 100644 (file)
@@ -2,4 +2,24 @@
 # Copyright (C) 2004, Advanced Micro Devices, Inc.  All Rights Reserved
 # Released under the MIT license (see COPYING.MIT)
 
-require ${PN}.inc
+DESCRIPTION="XFCE4 Settings manager."
+DEPENDS="libxfcegui4 libxfce4mcs intltool-native"
+SECTION = "x11"
+PR = "r1"
+
+inherit xfce 
+
+do_stage() {
+       install -d ${STAGING_INCDIR}/xfce4
+       install -d ${STAGING_INCDIR}/xfce4/xfce-mcs-manager
+       install -m 644 xfce-mcs-manager/manager-plugin.h ${STAGING_INCDIR}/xfce4/xfce-mcs-manager
+}
+
+# xfce-mcs-manager.pc uses ${libdir} to indicate where the mcs plugins live
+# the standard pkgconfig mangling was confusing us.  Mangling is not required
+# for this particular .pc, so the following will suffice:
+
+do_stage_append () {
+       install -d ${PKG_CONFIG_DIR}
+       sed -e 's:^includedir=.*:includedir="/usr/include":;' ${S}/xfce-mcs-manager/xfce-mcs-manager.pc >${PKG_CONFIG_DIR}/xfce-mcs-manager.pc
+}