aboutsummaryrefslogtreecommitdiffstats
path: root/tslib
diff options
context:
space:
mode:
authorGreg Gilbert <greg@treke.net>2003-09-27 18:15:05 +0000
committerGreg Gilbert <greg@treke.net>2003-09-27 18:15:05 +0000
commitc8917f0eeb3f70d44a95b4409025818a4c9f75e9 (patch)
tree385e47829db8e046c6706a5e25e8247d979adc83 /tslib
parent5ce533fb05c926ab4279ded09b3bce1511af191f (diff)
downloadopenembedded-c8917f0eeb3f70d44a95b4409025818a4c9f75e9.tar.gz
Merge bk://openembedded@eopenembedded.bkbits.net/packages
into treke.ath.cx:/home/ggilbert/oe/packages 2003/09/27 11:14:55-07:00 treke.ath.cx!ggilbert Fixing do_compile and do_install 2003/09/27 11:14:30-07:00 treke.ath.cx!ggilbert * XFree86 now compiles, needs pkg-config to be able to do_stage BKrev: 3f75d3a9cOO_ui4SegERRDc_01enaA
Diffstat (limited to 'tslib')
-rw-r--r--tslib/tslib.oe41
1 files changed, 41 insertions, 0 deletions
diff --git a/tslib/tslib.oe b/tslib/tslib.oe
index e69de29bb2..f569130b03 100644
--- a/tslib/tslib.oe
+++ b/tslib/tslib.oe
@@ -0,0 +1,41 @@
+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}
+
+inherit autotools libtool
+
+do_configure_prepend () {
+ ./autogen.sh
+}
+
+EXTRA_OECONF="--enable-shared "
+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 () {
+
+ install -d ${D}/${libdir}
+ install -d ${D}/usr/include
+ install -m 0755 src/.libs/libts-0.0.so.0.1.0 ${D}/${libdir}
+ ln -sf libts-0.0.so.0.1.0 ${D}/${libdir}/libts-0.0.so.0
+ ln -sf libts-0.0.so.0.1.0 ${D}/${libdir}/libts-0.0.so
+ ln -sf libts-0.0.so ${D}/${libdir}/libts.so
+ install -m 0644 src/tslib.h ${D}/usr/include
+ install -m 0644 src/tslib-private.h ${D}/usr/include
+}
+
+