GPSBabel converts waypoints, tracks, and routes from one

format to another, whether that format is a common mapping
format like Delorme, Streets and Trips, or even a serial
or USB upload or download to a GPS receiver such as those
from Garmin and Magellan.

Imported from wip.
This commit is contained in:
martti 2007-09-21 05:12:08 +00:00
parent ea0570e3ce
commit ee8601af37
7 changed files with 79 additions and 0 deletions

5
geography/gpsbabel/DESCR Normal file
View file

@ -0,0 +1,5 @@
GPSBabel converts waypoints, tracks, and routes from one
format to another, whether that format is a common mapping
format like Delorme, Streets and Trips, or even a serial
or USB upload or download to a GPS receiver such as those
from Garmin and Magellan.

View file

@ -0,0 +1,16 @@
# $NetBSD: Makefile,v 1.1.1.1 2007/09/21 05:12:08 martti Exp $
#
DISTNAME= gpsbabel-1.3.4
CATEGORIES= geography
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gpsbabel/}
MAINTAINER= martti@NetBSD.org
HOMEPAGE= http://www.gpsbabel.org/
COMMENT= Utility to convert and fetch GPS related data
GNU_CONFIGURE= yes
.include "../../devel/libusb/buildlink3.mk"
.include "../../textproc/expat/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

2
geography/gpsbabel/PLIST Normal file
View file

@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2007/09/21 05:12:08 martti Exp $
bin/gpsbabel

View file

@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.1.1.1 2007/09/21 05:12:08 martti Exp $
SHA1 (gpsbabel-1.3.4.tar.gz) = 9b504ce151bb44b86558cce5c3f727819cdb30c5
RMD160 (gpsbabel-1.3.4.tar.gz) = 2391f0b3aef271567808edbed6fc2c481d5514ea
Size (gpsbabel-1.3.4.tar.gz) = 3547058 bytes
SHA1 (patch-aa) = 06166a96029100d6e5828875d00d7dde1acf90f9
SHA1 (patch-ab) = 194779944c80cbab89563dad1d7876564bd374df
SHA1 (patch-ac) = 3d464f3fc7786f1a5dff61e4a3b88b0f358081e7

View file

@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.1.1.1 2007/09/21 05:12:08 martti Exp $
--- tools/mkfilelist.orig 2007-09-21 08:06:37.000000000 +0000
+++ tools/mkfilelist 2007-09-21 08:06:53.000000000 +0000
@@ -34,7 +34,7 @@
echo "$LINE" |
(
read LEAD NAME READ
- test "x$NAME" == "x" && continue
+ test "x$NAME" = "x" && continue
case $LEAD in
D)
loop "$1/$NAME/" "$2"

View file

@ -0,0 +1,13 @@
$NetBSD: patch-ab,v 1.1.1.1 2007/09/21 05:12:08 martti Exp $
--- tools/mkspec.orig 2007-09-21 08:07:45.000000000 +0000
+++ tools/mkspec 2007-09-21 08:07:57.000000000 +0000
@@ -6,7 +6,7 @@
RELEASE=$3 # may be empty
REL=`echo $RELEASE | sed 's/^-//'`
-test "$REL" == "" && REL=0
+test "$REL" = "" && REL=0
cat << EOF
Summary: GPSBabel

View file

@ -0,0 +1,22 @@
$NetBSD: patch-ac,v 1.1.1.1 2007/09/21 05:12:08 martti Exp $
--- testw.orig 2007-09-21 08:08:32.000000000 +0000
+++ testw 2007-09-21 08:08:48.000000000 +0000
@@ -58,7 +58,7 @@
while read type caps format comment; do
for i in $EXCL; do
- if [ "$format" == "$i" ]; then
+ if [ "$format" = "$i" ]; then
caps="------"
fi
done
@@ -97,7 +97,7 @@
while read type caps format comment; do
for i in $EXCL; do
- if [ "$format" == "$i" ]; then
+ if [ "$format" = "$i" ]; then
caps="------"
fi
done