diff options
author | Richard Purdie <richard@openedhand.com> | 2006-03-31 09:21:51 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-03-31 09:21:51 +0000 |
commit | dbc24a883d61c5bc2b7cfaaac1831be40ee7d7fd (patch) | |
tree | ea920240b278390945858e18aaa88ddac2c78a18 /openembedded/packages/libxsettings-client/libxsettings-client_0.16.bb | |
parent | 24b8210a43c7e558aa8480200ce7e8d373dc5a1a (diff) | |
download | openembedded-core-dbc24a883d61c5bc2b7cfaaac1831be40ee7d7fd.tar.gz openembedded-core-dbc24a883d61c5bc2b7cfaaac1831be40ee7d7fd.tar.bz2 openembedded-core-dbc24a883d61c5bc2b7cfaaac1831be40ee7d7fd.zip |
libxsettings: Include libxt in DEPENDS as without it, configure pulls in system directories, corrupts its .la files and breaks later packages. Also add version 0.16 from OE.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@343 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/libxsettings-client/libxsettings-client_0.16.bb')
-rw-r--r-- | openembedded/packages/libxsettings-client/libxsettings-client_0.16.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/openembedded/packages/libxsettings-client/libxsettings-client_0.16.bb b/openembedded/packages/libxsettings-client/libxsettings-client_0.16.bb new file mode 100644 index 0000000000..45d9b1c307 --- /dev/null +++ b/openembedded/packages/libxsettings-client/libxsettings-client_0.16.bb @@ -0,0 +1,24 @@ +SECTION = "gpe/libs" +LICENSE = "BSD-X" +PRIORITY = "optional" +DEPENDS = "libxsettings libx11 libxt" +# libxt is required to stop configure breaking builds by +# including system paths to find it if it isn't present. +MAINTAINER = "Florian Boor <florian@kernelconcepts.de>" +PR="r1" + +inherit autotools pkgconfig gpe + +SRC_URI = "${GPE_MIRROR}/libxsettings-client-${PV}.tar.bz2 \ + file://Makefile-am.patch;patch=1" + + +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 +} + |