diff options
Diffstat (limited to 'gpsd')
-rw-r--r-- | gpsd/gpsd-qpegps_0.9.2.oe | 26 | ||||
-rw-r--r-- | gpsd/gpsd_1.10.oe | 8 |
2 files changed, 30 insertions, 4 deletions
diff --git a/gpsd/gpsd-qpegps_0.9.2.oe b/gpsd/gpsd-qpegps_0.9.2.oe index e69de29bb2..1526273a81 100644 --- a/gpsd/gpsd-qpegps_0.9.2.oe +++ b/gpsd/gpsd-qpegps_0.9.2.oe @@ -0,0 +1,26 @@ +DESCRIPTION = "A TCP/IP Daemon simplifying the communication with GPS devices" +SECTION = "net" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +RDEPENDS = "libc6" +DEPENDS = "virtual/libc" + +SRC_URI = "${SOURCEFORGE_MIRROR}/qpegps/gpsd_from_qpegps_${PV}.tar.gz \ + file://${FILESDIR}/gcc3.patch;patch=1 \ + file://${FILESDIR}/nmea-fix.patch;patch=1" +S = "${WORKDIR}/gpsd" + +inherit autotools + +do_configure() { + oe_runconf +} + +do_compile() { + oe_runmake gpsd +} + +do_install () { + install -d ${D}/${bindir} + install -m 0755 ${S}/gpsd ${D}/${bindir}/gpsd +} diff --git a/gpsd/gpsd_1.10.oe b/gpsd/gpsd_1.10.oe index 9cbe5ed194..f7adff5f13 100644 --- a/gpsd/gpsd_1.10.oe +++ b/gpsd/gpsd_1.10.oe @@ -5,10 +5,10 @@ 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 \ - file://${FILESDIR}/gpsdc.patch;patch=1 \ - file://${FILESDIR}/nmea-fix.patch;patch=1 +SRC_URI = "http://pygps.org/gpsd/downloads/gpsd-${PV}.tar.gz \ + file://${FILESDIR}/gcc3.patch;patch=1 \ + file://${FILESDIR}/gpsdc.patch;patch=1 \ + file://${FILESDIR}/nmea-fix.patch;patch=1" inherit autotools |