diff options
author | wiz <wiz@pkgsrc.org> | 2004-07-26 23:31:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-07-26 23:31:56 +0000 |
commit | ec686cda1e6c1323d1e1e520873231f592af73be (patch) | |
tree | efff23a02d89e0bd9736f2d71de6ade9fd22b19f /geography/gpsd | |
parent | d2c71d44390085f7ddd279fee6430f2cf7bea080 (diff) | |
download | pkgsrc-ec686cda1e6c1323d1e1e520873231f592af73be.tar.gz |
Re-import misc/gpsd as geography/gpsd.
Diffstat (limited to 'geography/gpsd')
-rw-r--r-- | geography/gpsd/DESCR | 10 | ||||
-rw-r--r-- | geography/gpsd/Makefile | 16 | ||||
-rw-r--r-- | geography/gpsd/PLIST | 2 | ||||
-rw-r--r-- | geography/gpsd/distinfo | 5 | ||||
-rw-r--r-- | geography/gpsd/patches/patch-aa | 13 |
5 files changed, 46 insertions, 0 deletions
diff --git a/geography/gpsd/DESCR b/geography/gpsd/DESCR new file mode 100644 index 00000000000..5df8eb10487 --- /dev/null +++ b/geography/gpsd/DESCR @@ -0,0 +1,10 @@ +Gpsd is a user land daemon acting as a liason between a gps or +Loran-C receiver and clients. The receiver is expected to generate +position information as NMEA-0183 sentences, or Rockwell binary format, +although that can be changed. + +Gpsd listens on port 2947 for clients requesting position, time, +velocity or altitude information. + +Gpsd can take information from the gps and translate it into +something easier to understand for clients. diff --git a/geography/gpsd/Makefile b/geography/gpsd/Makefile new file mode 100644 index 00000000000..64a57661efa --- /dev/null +++ b/geography/gpsd/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/07/26 23:31:56 wiz Exp $ + +DISTNAME= gpsd-1.07 +CATEGORIES= geography +MASTER_SITES= http://www.pygps.org/gpsd/ + +MAINTAINER= tsarna@NetBSD.org +HOMEPAGE= http://www.pygps.org/gpsd/ +COMMENT= GPS information daemon + +GNU_CONFIGURE= YES + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gpsd ${PREFIX}/sbin + +.include "../../mk/bsd.pkg.mk" diff --git a/geography/gpsd/PLIST b/geography/gpsd/PLIST new file mode 100644 index 00000000000..e55ea419099 --- /dev/null +++ b/geography/gpsd/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2004/07/26 23:31:56 wiz Exp $ +sbin/gpsd diff --git a/geography/gpsd/distinfo b/geography/gpsd/distinfo new file mode 100644 index 00000000000..845a6332ace --- /dev/null +++ b/geography/gpsd/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2004/07/26 23:31:56 wiz Exp $ + +SHA1 (gpsd-1.07.tar.gz) = 00650bec2f516bee671cd21f8f2fdc6c2aea0902 +Size (gpsd-1.07.tar.gz) = 70930 bytes +SHA1 (patch-aa) = dfe7bbdddb9298f7ea2ac196c121b56233a951d2 diff --git a/geography/gpsd/patches/patch-aa b/geography/gpsd/patches/patch-aa new file mode 100644 index 00000000000..21868e6a193 --- /dev/null +++ b/geography/gpsd/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/07/26 23:31:56 wiz Exp $ + +--- netlib.c.orig 2004-06-04 00:49:02.000000000 +0200 ++++ netlib.c +@@ -9,7 +9,7 @@ + #include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> +-#include <varargs.h> ++#include <stdarg.h> + #include <netdb.h> + #include <stdio.h> + #include <arpa/inet.h> |