diff options
author | Phil Blundell <philb@gnu.org> | 2004-10-20 17:53:13 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-10-20 17:53:13 +0000 |
commit | 2f4245831122911f88bb1d10f8ef298be72ab1ba (patch) | |
tree | ee65e6748bf39e4e7a16809fd749449b57199384 | |
parent | 3f05e56cfa5a65496b76f06d2f2bdebd4a205f2c (diff) |
more fun with DEPENDS
BKrev: 4176a609E14L2tx31x5a3e_8q8g6Xg
-rw-r--r-- | libxi/libxi_6.0.1.oe | 3 | ||||
-rw-r--r-- | libxi/libxi_cvs.oe | 17 |
2 files changed, 18 insertions, 2 deletions
diff --git a/libxi/libxi_6.0.1.oe b/libxi/libxi_6.0.1.oe index 27363fe916..2fda03962e 100644 --- a/libxi/libxi_6.0.1.oe +++ b/libxi/libxi_6.0.1.oe @@ -1,7 +1,6 @@ DESCRIPTION = "X Input Extension library" SECTION = "x11/libs" - -DEPENDS = "xproto" +DEPENDS = "xproto x11 xextensions" SRC_URI = "${XLIBS_MIRROR}/libXi-${PV}.tar.bz2" S = "${WORKDIR}/libXi-${PV}" diff --git a/libxi/libxi_cvs.oe b/libxi/libxi_cvs.oe index e69de29bb2..10aa050c5f 100644 --- a/libxi/libxi_cvs.oe +++ b/libxi/libxi_cvs.oe @@ -0,0 +1,17 @@ +PV = "0.0cvs${CVSDATE}" +SECTION = "x11/libs" +DEPENDS = "xproto x11 xextensions" +DESCRIPTION = "X Input extension library." + +SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xi" +S = "${WORKDIR}/Xi" + +inherit autotools pkgconfig + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} +} |