summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>2005-01-21 19:40:10 +0000
committernslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>2005-01-21 19:40:10 +0000
commita87a7be83a182ad0caac74c2ac06061b16a16cc7 (patch)
tree10501d2e835993b76c4b21ce155aebfdf5a1d81b
parent6d6e8dcd440c60e47f78b0a80389247f7fefde5e (diff)
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/01/21 14:36:00-05:00 handhelds.org!kergoth Apply patch to fix libxi build with automake 1.9.x. BKrev: 41f15a9aMYw8UDayX3rPiiiEBpMzZQ
-rw-r--r--packages/libxi/files/autofoo.patch0
-rw-r--r--packages/libxi/libxi_6.0.1.bb19
-rw-r--r--packages/libxi/libxi_cvs.bb20
3 files changed, 39 insertions, 0 deletions
diff --git a/packages/libxi/files/autofoo.patch b/packages/libxi/files/autofoo.patch
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/libxi/files/autofoo.patch
diff --git a/packages/libxi/libxi_6.0.1.bb b/packages/libxi/libxi_6.0.1.bb
index e69de29bb2..fae7255b1a 100644
--- a/packages/libxi/libxi_6.0.1.bb
+++ b/packages/libxi/libxi_6.0.1.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "X Input Extension library"
+SECTION = "x11/libs"
+DEPENDS = "xproto x11 xextensions"
+PR = "r1"
+
+SRC_URI = "${XLIBS_MIRROR}/libXi-${PV}.tar.bz2 \
+ file://autofoo.patch;patch=1"
+S = "${WORKDIR}/libXi-${PV}"
+
+inherit autotools pkgconfig
+
+do_stage() {
+ oe_runmake install prefix=${STAGING_DIR} \
+ bindir=${STAGING_BINDIR} \
+ includedir=${STAGING_INCDIR} \
+ libdir=${STAGING_LIBDIR} \
+ datadir=${STAGING_DATADIR}
+}
+
diff --git a/packages/libxi/libxi_cvs.bb b/packages/libxi/libxi_cvs.bb
index e69de29bb2..80955c7f15 100644
--- a/packages/libxi/libxi_cvs.bb
+++ b/packages/libxi/libxi_cvs.bb
@@ -0,0 +1,20 @@
+PV = "0.0cvs${CVSDATE}"
+SECTION = "x11/libs"
+DEPENDS = "xproto x11 xextensions"
+DESCRIPTION = "X Input extension library."
+PR = "r1"
+
+SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xi \
+ file://autofoo.patch;patch=1"
+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} \
+ mandir=${STAGING_DATADIR}/man
+}