aboutsummaryrefslogtreecommitdiffstats
path: root/gpsd
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-01-10 23:58:52 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-01-10 23:58:52 +0000
commit3a491ff2be4f59091e0a9d9cc2eb4abf8e889c6a (patch)
tree9e787eefcf9103c730c44f42af30e89b09bf0345 /gpsd
parent54644876270686e0c30662286f6603809407d95d (diff)
downloadopenembedded-3a491ff2be4f59091e0a9d9cc2eb4abf8e889c6a.tar.gz
python compiles now. the python libs
are not packaged by ipk - this is imo due to a bug in OE, because the lib directory just contains another directory (python23) which then contains the real files. probably just fixing the build stage to install recursively. BKrev: 400091bcehzNnj2WXlXfNx5uzZZEBg
Diffstat (limited to 'gpsd')
-rw-r--r--gpsd/gpsd_1.10.oe19
1 files changed, 19 insertions, 0 deletions
diff --git a/gpsd/gpsd_1.10.oe b/gpsd/gpsd_1.10.oe
index e69de29bb2..fdd1d8150a 100644
--- a/gpsd/gpsd_1.10.oe
+++ b/gpsd/gpsd_1.10.oe
@@ -0,0 +1,19 @@
+SECTION="NET"
+PRIORITY="optional"
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6
+DEPENDS=virtual/libc
+
+SRC_URI=http://pygps.org/gpsd/downloads/gpsd-${PV}.tar.gz \
+ file://${FILESDIR}/gcc3.patch;patch=1
+
+inherit autotools libtool
+
+do_compile() {
+ oe_runmake gpsd
+}
+
+do_install () {
+ install -d ${D}/${bindir}
+ install -m 0755 ${S}/gpsd ${D}/${bindir}/gpsd
+}