summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/diffutils-2.8.1.oe12
-rw-r--r--content/irda-utils-0.9.15.oe0
-rw-r--r--content/tslib.oe32
3 files changed, 44 insertions, 0 deletions
diff --git a/content/diffutils-2.8.1.oe b/content/diffutils-2.8.1.oe
index e69de29bb2..6009464b7e 100644
--- a/content/diffutils-2.8.1.oe
+++ b/content/diffutils-2.8.1.oe
@@ -0,0 +1,12 @@
+DEPENDS = virtual/libc
+RDEPENDS = libc6
+
+SRC_URI = ${GNU_MIRROR}/${PN}/${P}.tar.gz
+S = ${WORKDIR}/${P}
+
+EXTRA_OEMAKE =
+
+do_install () {
+ set -e
+ oe_runmake DESTDIR="${D}" install
+}
diff --git a/content/irda-utils-0.9.15.oe b/content/irda-utils-0.9.15.oe
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/content/irda-utils-0.9.15.oe
diff --git a/content/tslib.oe b/content/tslib.oe
index e69de29bb2..e8beb09bda 100644
--- a/content/tslib.oe
+++ b/content/tslib.oe
@@ -0,0 +1,32 @@
+DEPENDS = virtual/libc
+RDEPENDS = libc6
+
+SRC_URI := cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib
+SRC_URI_append = " file://${FILESDIR}/pointercal.patch;patch=1"
+SRC_URI_append = " file://${FILESDIR}/automake.patch;patch=1"
+SRC_URI_append = " file://${FILESDIR}/multievent.patch;patch=1"
+SRC_URI_append = " file://${FILESDIR}/envvar_doc.patch;patch=1"
+#SRC_URI_append = " file://${FILESDIR}/raw.patch;patch=1"
+#SRC_URI_append = " file://${FILESDIR}/collie-module.patch;patch=1"
+
+S = ${WORKDIR}/${PN}
+
+EXTRA_OEMAKE=
+do_compile_prepend () {
+ set -e
+ ./autogen.sh
+}
+
+do_stage () {
+ install -m 0755 src/.libs/libts-0.0.so.0.1.0 ${STAGING_LIBDIR}/
+ ln -sf libts-0.0.so.0.1.0 ${STAGING_LIBDIR}/libts-0.0.so.0
+ ln -sf libts-0.0.so.0.1.0 ${STAGING_LIBDIR}/libts-0.0.so
+ ln -sf libts-0.0.so ${STAGING_LIBDIR}/libts.so
+ install -m 0644 src/tslib.h ${STAGING_DIR}/target/include/
+ install -m 0644 src/tslib-private.h ${STAGING_DIR}/target/include/
+}
+
+do_install () {
+ set -e
+ oe_runmake DESTDIR="${D}" install
+}