diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2006-03-01 17:59:53 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-01 17:59:53 +0000 |
commit | 34db4ff998f2ca4831b0213f7d9eba9a81af2a90 (patch) | |
tree | 77e5cbbff4c8d0cbd52c6fe1a6915ae17875b1bb /packages/xlibs/libxt_0.1.5.bb | |
parent | ce789dd71ea9a3654986177a5ccdd9fec544a630 (diff) |
xlibs: move X libraries to a common folder and unify naming to tarball names
Diffstat (limited to 'packages/xlibs/libxt_0.1.5.bb')
-rw-r--r-- | packages/xlibs/libxt_0.1.5.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/xlibs/libxt_0.1.5.bb b/packages/xlibs/libxt_0.1.5.bb new file mode 100644 index 0000000000..00cbe9a3ad --- /dev/null +++ b/packages/xlibs/libxt_0.1.5.bb @@ -0,0 +1,29 @@ +SECTION = "x11/libs" +PRIORITY = "optional" +MAINTAINER = "Phil Blundell <pb@handhelds.org>" +DEPENDS = "libx11 libsm" +PROVIDES = "xt" +DESCRIPTION = "X Toolkit Intrinsics" +LICENSE = "X-MIT" +PR = "r1" +SRC_URI = "${XLIBS_MIRROR}/libXt-${PV}.tar.bz2 \ + file://autofoo.patch;patch=1" +S = "${WORKDIR}/libXt-${PV}" + +PARALLEL_MAKE = "" + +inherit autotools pkgconfig + +#nasty hack as utils need to be native +do_compile() { + ( + unset CC LD CXX CCLD +# unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS + oe_runmake -C util 'CFLAGS=' 'LDFLAGS=' 'CXXFLAGS=' 'CPPFLAGS=' makestrs + ) + oe_runmake +} + +do_stage () { + autotools_stage_all +} |