diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-01-10 23:58:52 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-01-10 23:58:52 +0000 |
commit | 3a491ff2be4f59091e0a9d9cc2eb4abf8e889c6a (patch) | |
tree | 9e787eefcf9103c730c44f42af30e89b09bf0345 /gpsd/gpsd_1.10.oe | |
parent | 54644876270686e0c30662286f6603809407d95d (diff) |
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/gpsd_1.10.oe')
-rw-r--r-- | gpsd/gpsd_1.10.oe | 19 |
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 +} |