From: Otavio Salvador Date: Fri, 13 Jun 2008 22:50:50 +0000 (-0300) Subject: xfce-mcs-manager: use a single recipe since we don't have multiple versions packaged X-Git-Tag: Release-2010-05/1~5716^2~84 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f61b447ce825235a3c0bd83f8321fb6646834d5b;p=openembedded.git xfce-mcs-manager: use a single recipe since we don't have multiple versions packaged --- diff --git a/packages/xfce/xfce-mcs-manager_4.4.1.bb b/packages/xfce/xfce-mcs-manager_4.4.1.bb index 76e0452ad8..0b9fc43f70 100644 --- a/packages/xfce/xfce-mcs-manager_4.4.1.bb +++ b/packages/xfce/xfce-mcs-manager_4.4.1.bb @@ -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 +}