mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 02:19:39 +01:00
- Define X_LIBS in libxsettings-client and startup-notification to stop them adding system dirs to the library path - Add do_stage to matchbox-desktop git-svn-id: https://svn.o-hand.com/repos/poky@44 311d38ba-8fff-0310-9ca6-ca027cbcb966
25 lines
565 B
BlitzBasic
25 lines
565 B
BlitzBasic
SECTION = "gpe/libs"
|
|
LICENSE = "BSD-X"
|
|
PRIORITY = "optional"
|
|
DEPENDS = "libxsettings x11"
|
|
PR = "r1"
|
|
|
|
inherit autotools pkgconfig gpe
|
|
|
|
SRC_URI = "${GPE_MIRROR}/xsettings-client-${PV}.tar.bz2"
|
|
S = ${WORKDIR}/xsettings-client-${PV}
|
|
|
|
do_configure () {
|
|
X_LIBS=" -L${STAGING_LIBDIR}" oe_runconf
|
|
}
|
|
|
|
headers = "xsettings-client.h xsettings-common.h"
|
|
do_stage () {
|
|
oe_libinstall -so libXsettings-client ${STAGING_LIBDIR}
|
|
mkdir -p ${STAGING_INCDIR}
|
|
for h in ${headers}; do
|
|
install -m 0644 ${S}/$h ${STAGING_INCDIR}/$h
|
|
done
|
|
}
|
|
|