1.4.4 -> 1.6.0.1
* babelweb HTML documantation (share/doc/gpsbabel/*.html) is no longer supported because it requires new DocBook, DocBook-XSL and Smarty template. * patches follow new filenames of sourcecode, i.e - gbser_posix.c -> gbser_posix.cc - gui/serial_unix.cpp -> gui/serial_unix.cc - configure.in -> (deleted) ok sthen@, thanks to kirby@
This commit is contained in:
parent
71289c26b9
commit
7b9029f751
@ -1,58 +1,50 @@
|
||||
# $OpenBSD: Makefile,v 1.34 2019/07/12 20:46:29 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.35 2019/09/03 13:48:25 uaa Exp $
|
||||
|
||||
COMMENT-main= GPS waypoint, track, and route conversion tool
|
||||
COMMENT-tk= Tk front-end to gpsbabel
|
||||
COMMENT-qt= Qt front-end to gpsbabel
|
||||
|
||||
VERSION= 1.4.4
|
||||
VERSION= 1.6.0.1
|
||||
GH_ACCOUNT= gpsbabel
|
||||
GH_PROJECT= gpsbabel
|
||||
GH_TAGNAME= gpsbabel_1_6_0.1
|
||||
DISTNAME= gpsbabel-${VERSION}
|
||||
PKGNAME-main= gpsbabel-${VERSION}
|
||||
PKGNAME-tk= gpsbabel-tk-${VERSION}
|
||||
PKGNAME-qt= gpsbabel-qt-${VERSION}
|
||||
CATEGORIES= geo
|
||||
|
||||
REVISION-main= 2
|
||||
REVISION-tk= 2
|
||||
REVISION-qt= 3
|
||||
|
||||
HOMEPAGE= http://www.gpsbabel.org/
|
||||
HOMEPAGE= https://www.gpsbabel.org/
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE= Yes
|
||||
|
||||
MASTER_SITES= http://www.linklevel.net/distfiles/
|
||||
PERMIT_PACKAGE= Yes
|
||||
|
||||
COMPILER = base-clang ports-gcc base-gcc
|
||||
|
||||
AUTOCONF_VERSION= 2.61
|
||||
AUTOCONF_VERSION= 2.69
|
||||
CONFIGURE_STYLE= autoconf qmake
|
||||
CONFIGURE_ARGS+= --with-zlib=system \
|
||||
--with-shapefile=system \
|
||||
--with-doc=./babelweb
|
||||
#CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
|
||||
# LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib" \
|
||||
# WEB=${WRKSRC}
|
||||
USE_GMAKE= yes
|
||||
CONFIGURE_ARGS+= --with-zlib=system
|
||||
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib -lshp" \
|
||||
WEB=${WRKSRC}
|
||||
|
||||
MULTI_PACKAGES= -main -tk -qt
|
||||
|
||||
MODULES= devel/qmake x11/tk x11/qt4
|
||||
MODULES= devel/qmake x11/tk x11/qt5
|
||||
MODQMAKE_PROJECTS = gui/app.pro
|
||||
SEPARATE_BUILD= No
|
||||
|
||||
BUILD_DEPENDS= textproc/docbook-xsl
|
||||
LIB_DEPENDS-main= devel/libusb-compat \
|
||||
devel/shapelib
|
||||
|
||||
cWANTLIB = c m pthread
|
||||
WANTLIB-main += expat shp>=1 usb z ${cWANTLIB}
|
||||
WANTLIB-main += shp>=1 usb z ${cWANTLIB} ${COMPILER_LIBCXX}
|
||||
WANTLIB-tk =
|
||||
WANTLIB-qt += ICE QtCore QtGui QtNetwork QtWebKit QtXml SM X11 Xext Xi
|
||||
WANTLIB-qt += Xinerama Xrender fontconfig freetype ${COMPILER_LIBCXX} ${cWANTLIB}
|
||||
WANTLIB-qt += GL Qt5Core Qt5Gui Qt5Network Qt5WebKit Qt5WebKitWidgets
|
||||
WANTLIB-qt += Qt5Widgets Qt5Xml ${COMPILER_LIBCXX} ${cWANTLIB}
|
||||
|
||||
LIB_DEPENDS-tk=
|
||||
LIB_DEPENDS-qt= x11/qt5/qtwebkit
|
||||
PKG_ARCH-tk= *
|
||||
RUN_DEPENDS-tk= geo/gpsbabel \
|
||||
${MODTK_RUN_DEPENDS}
|
||||
@ -65,17 +57,14 @@ pre-configure:
|
||||
${WRKSRC}/gui/gpsbabel.desktop
|
||||
|
||||
post-build:
|
||||
cd ${WRKBUILD} && make doc
|
||||
${MODQMAKE_build}
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKBUILD}/gpsbabel ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKBUILD}/gui/objects/gpsbabelfe-bin \
|
||||
${INSTALL_PROGRAM} ${WRKBUILD}/gui/objects/gpsbabelfe \
|
||||
${PREFIX}/bin/guibabel-qt
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/guibabel ${PREFIX}/bin
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gpsbabel
|
||||
${INSTALL_DATA} ${WRKSRC}/babelweb/htmldoc-*/*.html \
|
||||
${PREFIX}/share/doc/gpsbabel
|
||||
${INSTALL_DATA} ${WRKSRC}/README* ${PREFIX}/share/doc/gpsbabel
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/applications
|
||||
${INSTALL_DATA} ${WRKSRC}/gui/gpsbabel.desktop \
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (gpsbabel-1.4.4.tar.gz) = ndKgboh8sobJoHFkqPLt4RrtEUfmQZAHNwxShBIyGUQ=
|
||||
SIZE (gpsbabel-1.4.4.tar.gz) = 7811264
|
||||
SHA256 (gpsbabel-1.6.0.1.tar.gz) = /vHVYr3ylrasXqG8ChxG+YnVU1Ro4arfEwNdU4PHTso=
|
||||
SIZE (gpsbabel-1.6.0.1.tar.gz) = 14099101
|
||||
|
@ -1,24 +1,14 @@
|
||||
$OpenBSD: patch-Makefile_in,v 1.6 2012/02/18 22:04:07 sthen Exp $
|
||||
--- Makefile.in.orig Sun Jan 8 01:11:51 2012
|
||||
+++ Makefile.in Sun Jan 8 01:15:47 2012
|
||||
@@ -98,7 +98,7 @@ LIBOBJS = queue.o route.o waypt.o filter_vecs.o util.o
|
||||
uuid.o formspec.o xmltag.o cet.o cet_util.o fatal.o rgbcolors.o \
|
||||
inifile.o garmin_fs.o gbsleep.o units.o @GBSER@ gbser.o \
|
||||
gbfile.o parse.o avltree.o session.o \
|
||||
- $(PALM_DB) $(GARMIN) $(JEEPS) $(SHAPE) @ZLIB@ $(FMTS) $(FILTERS)
|
||||
+ $(PALM_DB) $(GARMIN) $(JEEPS) @SHAPE@ @ZLIB@ $(FMTS) $(FILTERS)
|
||||
OBJS = main.o globals.o $(LIBOBJS) @FILEINFO@
|
||||
|
||||
.c.o:
|
||||
@@ -193,7 +193,6 @@ dep:
|
||||
--- Makefile.in.orig Thu May 2 17:26:47 2019
|
||||
+++ Makefile.in Mon Sep 2 22:09:45 2019
|
||||
@@ -236,7 +236,6 @@ dep:
|
||||
$(WEB)/htmldoc-$(DOCVERSION)/index.html: FORCE
|
||||
mkdir -p $(WEB)/htmldoc-$(DOCVERSION)
|
||||
perl xmldoc/makedoc
|
||||
- xmlwf xmldoc/readme.xml #check for well-formedness
|
||||
xmllint --noout --valid xmldoc/readme.xml #validate
|
||||
xsltproc \
|
||||
xsltproc --load-trace \
|
||||
--stringparam base.dir "$(WEB)/htmldoc-$(DOCVERSION)/" \
|
||||
@@ -246,7 +245,7 @@ changes.html: FORCE
|
||||
@@ -293,7 +292,7 @@ changes.html: FORCE
|
||||
wget -O $(WEB)/changes.html http://www.gpsbabel.org/changes.html || exit 1
|
||||
rm -f $(WEB)/changes.html.1 > /dev/null
|
||||
|
||||
|
@ -1,64 +0,0 @@
|
||||
--- configure.in.orig Tue Sep 4 07:09:52 2012
|
||||
+++ configure.in Tue Dec 25 21:50:38 2012
|
||||
@@ -62,15 +62,20 @@ if test "$cet" = "default"; then
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING(whether to support shapefiles)
|
||||
-AC_ARG_ENABLE(shapefile,
|
||||
- [ --enable-shapefile=[(yes)|no]],
|
||||
- [ enable_shapefile="$enableval"],[enable_shapefile="yes"])
|
||||
- if test "$enable_shapefile" != "no" ; then
|
||||
+AC_ARG_WITH(shapefile, [ --enable-shapefile=[(included)|system|no]])
|
||||
+ case $with_shapefile in
|
||||
+ "system")
|
||||
+ AC_CHECK_LIB([shp], [SHPOpen])
|
||||
AC_DEFINE(SHAPELIB_ENABLED, 1, [1 to enable shapefile support])
|
||||
- AC_MSG_RESULT(yes)
|
||||
- else
|
||||
+ ;;
|
||||
+ "no")
|
||||
AC_MSG_RESULT(no)
|
||||
- fi
|
||||
+ ;;
|
||||
+ *) SHAPE="\$(SHAPE)"
|
||||
+ AC_DEFINE(SHAPELIB_ENABLED, 1, [1 to enable shapefile support])
|
||||
+ AC_MSG_RESULT(using included version)
|
||||
+ ;;
|
||||
+ esac
|
||||
|
||||
AC_MSG_CHECKING(whether to support Palm/OS pdb formats)
|
||||
AC_ARG_ENABLE(pdb,
|
||||
@@ -223,32 +228,8 @@ AC_SUBST(USB_LIBS)
|
||||
AC_SUBST(USB_CFLAGS)
|
||||
AC_SUBST(OSJEEPS)
|
||||
AC_SUBST(GBSER)
|
||||
+AC_SUBST(SHAPE)
|
||||
AC_SUBST(ZLIB)
|
||||
-
|
||||
-dnl Linux HID support
|
||||
-case "$target" in
|
||||
- *-linux-*)
|
||||
- AC_MSG_CHECKING(for Linux HID interface)
|
||||
- AC_COMPILE_IFELSE([
|
||||
- #include <sys/ioctl.h>
|
||||
- #include <linux/types.h>
|
||||
- #include <linux/hiddev.h>
|
||||
- #include <linux/hidraw.h>
|
||||
- void f(void) {
|
||||
- struct hidraw_devinfo info;
|
||||
- struct hiddev_field_info finfo;
|
||||
- struct hiddev_usage_ref_multi urefm;
|
||||
- struct hiddev_report_info rinfo;
|
||||
- ioctl(0, HIDIOCGRAWINFO, &info);
|
||||
- ioctl(0, HIDIOCGFIELDINFO, &finfo);
|
||||
- ioctl(0, HIDIOCSUSAGES, &urefm);
|
||||
- ioctl(0, HIDIOCSREPORT, &rinfo);
|
||||
- }],
|
||||
- AC_MSG_RESULT(yes)
|
||||
- AC_DEFINE(HAVE_LINUX_HID, 1, [Defined if you have Linux HID]),
|
||||
- AC_MSG_RESULT(no))
|
||||
- ;;
|
||||
-esac
|
||||
|
||||
AC_MSG_CHECKING(for random stuff to make you feel better)
|
||||
AC_MSG_RESULT(failed)
|
@ -1,5 +1,5 @@
|
||||
--- gbser_posix.c.orig Tue Jul 26 10:56:33 2011
|
||||
+++ gbser_posix.c Tue Dec 25 21:52:11 2012
|
||||
--- gbser_posix.cc.orig Thu May 2 17:26:47 2019
|
||||
+++ gbser_posix.cc Sat Aug 24 19:55:42 2019
|
||||
@@ -142,7 +142,7 @@ void* gbser_init(const char* port_name)
|
||||
if (0 == strcmp(port_name, "-")) {
|
||||
h->fd = 0;
|
21
geo/gpsbabel/patches/patch-gui_serial_unix_cc
Normal file
21
geo/gpsbabel/patches/patch-gui_serial_unix_cc
Normal file
@ -0,0 +1,21 @@
|
||||
--- gui/serial_unix.cc.orig Thu May 2 17:26:47 2019
|
||||
+++ gui/serial_unix.cc Sat Aug 24 19:55:42 2019
|
||||
@@ -84,12 +84,12 @@ static QStringList dynamicDevices()
|
||||
|
||||
|
||||
static const char* deviceNames[] = {
|
||||
- "/dev/ttyS0",
|
||||
- "/dev/ttyS1",
|
||||
- "/dev/ttyS2",
|
||||
- "/dev/ttyS3",
|
||||
- "/dev/ttyUSB0",
|
||||
- "/dev/rfcomm0",
|
||||
+ "/dev/cua00",
|
||||
+ "/dev/cua01",
|
||||
+ "/dev/cua02",
|
||||
+ "/dev/cua03",
|
||||
+ "/dev/cuaU0",
|
||||
+ "/dev/cuaU1",
|
||||
nullptr
|
||||
};
|
||||
|
@ -1,22 +0,0 @@
|
||||
$OpenBSD: patch-gui_serial_unix_cpp,v 1.1 2012/02/18 22:04:07 sthen Exp $
|
||||
--- gui/serial_unix.cpp.orig Sun Jan 15 20:10:04 2012
|
||||
+++ gui/serial_unix.cpp Sun Jan 15 20:11:26 2012
|
||||
@@ -22,12 +22,12 @@
|
||||
#if !defined (Q_OS_MAC) // FIXME: find a better way to hide this on Mac.
|
||||
|
||||
static const char *deviceNames[] = {
|
||||
- "/dev/ttyS0",
|
||||
- "/dev/ttyS1",
|
||||
- "/dev/ttyS2",
|
||||
- "/dev/ttyS3",
|
||||
- "/dev/ttyUSB0",
|
||||
- "/dev/rfcomm0",
|
||||
+ "/dev/cua00",
|
||||
+ "/dev/cua01",
|
||||
+ "/dev/cua02",
|
||||
+ "/dev/cua03",
|
||||
+ "/dev/cuaU0",
|
||||
+ "/dev/cuaU1",
|
||||
0
|
||||
};
|
||||
|
@ -4,4 +4,4 @@ or even a serial upload or download to a GPS unit such as those from Garmin and
|
||||
Magellan. By flattening the Tower of Babel that the authors of various programs
|
||||
for manipulating GPS data have imposed upon us, it returns to us the ability to
|
||||
freely move our own waypoint data between the programs and hardware we choose to
|
||||
use.
|
||||
use.
|
||||
|
@ -1,234 +1,10 @@
|
||||
@comment $OpenBSD: PLIST-main,v 1.5 2013/01/05 06:18:06 sasano Exp $
|
||||
@comment $OpenBSD: PLIST-main,v 1.6 2019/09/03 13:48:25 uaa Exp $
|
||||
@pkgpath geo/gpsbabel
|
||||
@bin bin/gpsbabel
|
||||
@comment share/applications/
|
||||
share/doc/gpsbabel/
|
||||
share/doc/gpsbabel/Advanced_Usage.html
|
||||
share/doc/gpsbabel/Data_Filters.html
|
||||
share/doc/gpsbabel/Datums.html
|
||||
share/doc/gpsbabel/Download.html
|
||||
share/doc/gpsbabel/GarminIcons.html
|
||||
share/doc/gpsbabel/Getting_and_Building.html
|
||||
share/doc/gpsbabel/Glossary.html
|
||||
share/doc/gpsbabel/Introduction.html
|
||||
share/doc/gpsbabel/Invocation.html
|
||||
share/doc/gpsbabel/README.contrib
|
||||
share/doc/gpsbabel/README.igc
|
||||
share/doc/gpsbabel/README.magnav
|
||||
share/doc/gpsbabel/README.mapconverter
|
||||
share/doc/gpsbabel/README.psp
|
||||
share/doc/gpsbabel/README.md
|
||||
share/doc/gpsbabel/README.xmapwpt
|
||||
share/doc/gpsbabel/Route_And_Track_Modes.html
|
||||
share/doc/gpsbabel/Source.html
|
||||
share/doc/gpsbabel/Styles.html
|
||||
share/doc/gpsbabel/Suboptions.html
|
||||
share/doc/gpsbabel/The_Formats.html
|
||||
share/doc/gpsbabel/The_Problem.html
|
||||
share/doc/gpsbabel/The_Solution.html
|
||||
share/doc/gpsbabel/Usage.html
|
||||
share/doc/gpsbabel/all_options.html
|
||||
share/doc/gpsbabel/batchfile.html
|
||||
share/doc/gpsbabel/filter_arc.html
|
||||
share/doc/gpsbabel/filter_bend.html
|
||||
share/doc/gpsbabel/filter_discard.html
|
||||
share/doc/gpsbabel/filter_duplicate.html
|
||||
share/doc/gpsbabel/filter_height.html
|
||||
share/doc/gpsbabel/filter_interpolate.html
|
||||
share/doc/gpsbabel/filter_nuketypes.html
|
||||
share/doc/gpsbabel/filter_polygon.html
|
||||
share/doc/gpsbabel/filter_position.html
|
||||
share/doc/gpsbabel/filter_radius.html
|
||||
share/doc/gpsbabel/filter_reverse.html
|
||||
share/doc/gpsbabel/filter_simplify.html
|
||||
share/doc/gpsbabel/filter_sort.html
|
||||
share/doc/gpsbabel/filter_stack.html
|
||||
share/doc/gpsbabel/filter_swap.html
|
||||
share/doc/gpsbabel/filter_track.html
|
||||
share/doc/gpsbabel/filter_transform.html
|
||||
share/doc/gpsbabel/fmt_alantrl.html
|
||||
share/doc/gpsbabel/fmt_alanwpr.html
|
||||
share/doc/gpsbabel/fmt_an1.html
|
||||
share/doc/gpsbabel/fmt_arc.html
|
||||
share/doc/gpsbabel/fmt_axim_gpb.html
|
||||
share/doc/gpsbabel/fmt_baroiq.html
|
||||
share/doc/gpsbabel/fmt_bcr.html
|
||||
share/doc/gpsbabel/fmt_bushnell.html
|
||||
share/doc/gpsbabel/fmt_bushnell_trl.html
|
||||
share/doc/gpsbabel/fmt_cambridge.html
|
||||
share/doc/gpsbabel/fmt_cetus.html
|
||||
share/doc/gpsbabel/fmt_coastexp.html
|
||||
share/doc/gpsbabel/fmt_compegps.html
|
||||
share/doc/gpsbabel/fmt_copilot.html
|
||||
share/doc/gpsbabel/fmt_coto.html
|
||||
share/doc/gpsbabel/fmt_cst.html
|
||||
share/doc/gpsbabel/fmt_csv.html
|
||||
share/doc/gpsbabel/fmt_cup.html
|
||||
share/doc/gpsbabel/fmt_custom.html
|
||||
share/doc/gpsbabel/fmt_delbin.html
|
||||
share/doc/gpsbabel/fmt_destinator_itn.html
|
||||
share/doc/gpsbabel/fmt_destinator_poi.html
|
||||
share/doc/gpsbabel/fmt_destinator_trl.html
|
||||
share/doc/gpsbabel/fmt_dg-100.html
|
||||
share/doc/gpsbabel/fmt_dg-200.html
|
||||
share/doc/gpsbabel/fmt_dmtlog.html
|
||||
share/doc/gpsbabel/fmt_dna.html
|
||||
share/doc/gpsbabel/fmt_easygps.html
|
||||
share/doc/gpsbabel/fmt_enigma.html
|
||||
share/doc/gpsbabel/fmt_exif.html
|
||||
share/doc/gpsbabel/fmt_flysight.html
|
||||
share/doc/gpsbabel/fmt_fugawi.html
|
||||
share/doc/gpsbabel/fmt_g7towin.html
|
||||
share/doc/gpsbabel/fmt_garmin.html
|
||||
share/doc/gpsbabel/fmt_garmin301.html
|
||||
share/doc/gpsbabel/fmt_garmin_fit.html
|
||||
share/doc/gpsbabel/fmt_garmin_gpi.html
|
||||
share/doc/gpsbabel/fmt_garmin_poi.html
|
||||
share/doc/gpsbabel/fmt_garmin_txt.html
|
||||
share/doc/gpsbabel/fmt_garmin_xt.html
|
||||
share/doc/gpsbabel/fmt_gcdb.html
|
||||
share/doc/gpsbabel/fmt_gdb.html
|
||||
share/doc/gpsbabel/fmt_geo.html
|
||||
share/doc/gpsbabel/fmt_geonet.html
|
||||
share/doc/gpsbabel/fmt_geoniche.html
|
||||
share/doc/gpsbabel/fmt_ggv_log.html
|
||||
share/doc/gpsbabel/fmt_ggv_ovl.html
|
||||
share/doc/gpsbabel/fmt_glogbook.html
|
||||
share/doc/gpsbabel/fmt_gnav_trl.html
|
||||
share/doc/gpsbabel/fmt_google.html
|
||||
share/doc/gpsbabel/fmt_gopal.html
|
||||
share/doc/gpsbabel/fmt_gpilots.html
|
||||
share/doc/gpsbabel/fmt_gpl.html
|
||||
share/doc/gpsbabel/fmt_gpsdrive.html
|
||||
share/doc/gpsbabel/fmt_gpsdrivetrack.html
|
||||
share/doc/gpsbabel/fmt_gpsman.html
|
||||
share/doc/gpsbabel/fmt_gpspilot.html
|
||||
share/doc/gpsbabel/fmt_gpssim.html
|
||||
share/doc/gpsbabel/fmt_gpsutil.html
|
||||
share/doc/gpsbabel/fmt_gpx.html
|
||||
share/doc/gpsbabel/fmt_gtm.html
|
||||
share/doc/gpsbabel/fmt_gtrnctr.html
|
||||
share/doc/gpsbabel/fmt_gtrnctr1.html
|
||||
share/doc/gpsbabel/fmt_hiketech.html
|
||||
share/doc/gpsbabel/fmt_holux.html
|
||||
share/doc/gpsbabel/fmt_hsandv.html
|
||||
share/doc/gpsbabel/fmt_html.html
|
||||
share/doc/gpsbabel/fmt_humminbird.html
|
||||
share/doc/gpsbabel/fmt_humminbird_ht.html
|
||||
share/doc/gpsbabel/fmt_iblue747.html
|
||||
share/doc/gpsbabel/fmt_iblue757.html
|
||||
share/doc/gpsbabel/fmt_igc.html
|
||||
share/doc/gpsbabel/fmt_ignrando.html
|
||||
share/doc/gpsbabel/fmt_igo2008_poi.html
|
||||
share/doc/gpsbabel/fmt_igo8.html
|
||||
share/doc/gpsbabel/fmt_ik3d.html
|
||||
share/doc/gpsbabel/fmt_itracku-bin.html
|
||||
share/doc/gpsbabel/fmt_itracku.html
|
||||
share/doc/gpsbabel/fmt_jogmap.html
|
||||
share/doc/gpsbabel/fmt_jtr.html
|
||||
share/doc/gpsbabel/fmt_kml.html
|
||||
share/doc/gpsbabel/fmt_kompass_tk.html
|
||||
share/doc/gpsbabel/fmt_kompass_wp.html
|
||||
share/doc/gpsbabel/fmt_ktf2.html
|
||||
share/doc/gpsbabel/fmt_kwf2.html
|
||||
share/doc/gpsbabel/fmt_land_air_sea.html
|
||||
share/doc/gpsbabel/fmt_lmx.html
|
||||
share/doc/gpsbabel/fmt_lowranceusr.html
|
||||
share/doc/gpsbabel/fmt_lowranceusr4.html
|
||||
share/doc/gpsbabel/fmt_m241-bin.html
|
||||
share/doc/gpsbabel/fmt_m241.html
|
||||
share/doc/gpsbabel/fmt_mag_pdb.html
|
||||
share/doc/gpsbabel/fmt_magellan.html
|
||||
share/doc/gpsbabel/fmt_magellan1.html
|
||||
share/doc/gpsbabel/fmt_magellanx.html
|
||||
share/doc/gpsbabel/fmt_maggeo.html
|
||||
share/doc/gpsbabel/fmt_magnav.html
|
||||
share/doc/gpsbabel/fmt_mapasia_tr7.html
|
||||
share/doc/gpsbabel/fmt_mapconverter.html
|
||||
share/doc/gpsbabel/fmt_mapsend.html
|
||||
share/doc/gpsbabel/fmt_mapsource.html
|
||||
share/doc/gpsbabel/fmt_miniHomer.html
|
||||
share/doc/gpsbabel/fmt_mmo.html
|
||||
share/doc/gpsbabel/fmt_motoactv.html
|
||||
share/doc/gpsbabel/fmt_msroute.html
|
||||
share/doc/gpsbabel/fmt_msroute1.html
|
||||
share/doc/gpsbabel/fmt_mtk-bin.html
|
||||
share/doc/gpsbabel/fmt_mtk.html
|
||||
share/doc/gpsbabel/fmt_mxf.html
|
||||
share/doc/gpsbabel/fmt_navicache.html
|
||||
share/doc/gpsbabel/fmt_navigonwpt.html
|
||||
share/doc/gpsbabel/fmt_naviguide.html
|
||||
share/doc/gpsbabel/fmt_navilink.html
|
||||
share/doc/gpsbabel/fmt_navitel_trk.html
|
||||
share/doc/gpsbabel/fmt_netstumbler.html
|
||||
share/doc/gpsbabel/fmt_nima.html
|
||||
share/doc/gpsbabel/fmt_nmea.html
|
||||
share/doc/gpsbabel/fmt_nmn4.html
|
||||
share/doc/gpsbabel/fmt_openoffice.html
|
||||
share/doc/gpsbabel/fmt_osm.html
|
||||
share/doc/gpsbabel/fmt_ozi.html
|
||||
share/doc/gpsbabel/fmt_palmdoc.html
|
||||
share/doc/gpsbabel/fmt_pathaway.html
|
||||
share/doc/gpsbabel/fmt_pcx.html
|
||||
share/doc/gpsbabel/fmt_pocketfms_bc.html
|
||||
share/doc/gpsbabel/fmt_pocketfms_fp.html
|
||||
share/doc/gpsbabel/fmt_pocketfms_wp.html
|
||||
share/doc/gpsbabel/fmt_psitrex.html
|
||||
share/doc/gpsbabel/fmt_psp.html
|
||||
share/doc/gpsbabel/fmt_quovadis.html
|
||||
share/doc/gpsbabel/fmt_raymarine.html
|
||||
share/doc/gpsbabel/fmt_ricoh.html
|
||||
share/doc/gpsbabel/fmt_s_and_t.html
|
||||
share/doc/gpsbabel/fmt_saplus.html
|
||||
share/doc/gpsbabel/fmt_saroute.html
|
||||
share/doc/gpsbabel/fmt_sbn.html
|
||||
share/doc/gpsbabel/fmt_sbp.html
|
||||
share/doc/gpsbabel/fmt_skyforce.html
|
||||
share/doc/gpsbabel/fmt_skytraq-bin.html
|
||||
share/doc/gpsbabel/fmt_skytraq.html
|
||||
share/doc/gpsbabel/fmt_sportsim.html
|
||||
share/doc/gpsbabel/fmt_stmsdf.html
|
||||
share/doc/gpsbabel/fmt_stmwpp.html
|
||||
share/doc/gpsbabel/fmt_subrip.html
|
||||
share/doc/gpsbabel/fmt_tabsep.html
|
||||
share/doc/gpsbabel/fmt_tef.html
|
||||
share/doc/gpsbabel/fmt_teletype.html
|
||||
share/doc/gpsbabel/fmt_text.html
|
||||
share/doc/gpsbabel/fmt_tiger.html
|
||||
share/doc/gpsbabel/fmt_tmpro.html
|
||||
share/doc/gpsbabel/fmt_tomtom.html
|
||||
share/doc/gpsbabel/fmt_tomtom_asc.html
|
||||
share/doc/gpsbabel/fmt_tomtom_itn.html
|
||||
share/doc/gpsbabel/fmt_tomtom_itn_places.html
|
||||
share/doc/gpsbabel/fmt_tpg.html
|
||||
share/doc/gpsbabel/fmt_tpo2.html
|
||||
share/doc/gpsbabel/fmt_tpo3.html
|
||||
share/doc/gpsbabel/fmt_unicsv.html
|
||||
share/doc/gpsbabel/fmt_v900.html
|
||||
share/doc/gpsbabel/fmt_vcard.html
|
||||
share/doc/gpsbabel/fmt_vidaone.html
|
||||
share/doc/gpsbabel/fmt_vitosmt.html
|
||||
share/doc/gpsbabel/fmt_vitovtt.html
|
||||
share/doc/gpsbabel/fmt_vpl.html
|
||||
share/doc/gpsbabel/fmt_wbt-bin.html
|
||||
share/doc/gpsbabel/fmt_wbt-tk1.html
|
||||
share/doc/gpsbabel/fmt_wbt.html
|
||||
share/doc/gpsbabel/fmt_wfff.html
|
||||
share/doc/gpsbabel/fmt_wintec_tes.html
|
||||
share/doc/gpsbabel/fmt_xcsv.html
|
||||
share/doc/gpsbabel/fmt_xmap.html
|
||||
share/doc/gpsbabel/fmt_xmap2006.html
|
||||
share/doc/gpsbabel/fmt_xmapwpt.html
|
||||
share/doc/gpsbabel/fmt_xol.html
|
||||
share/doc/gpsbabel/fmt_yahoo.html
|
||||
share/doc/gpsbabel/index.html
|
||||
share/doc/gpsbabel/inifile.html
|
||||
share/doc/gpsbabel/style_behavior.html
|
||||
share/doc/gpsbabel/style_define.html
|
||||
share/doc/gpsbabel/style_examples.html
|
||||
share/doc/gpsbabel/style_global.html
|
||||
share/doc/gpsbabel/style_intro2.html
|
||||
share/doc/gpsbabel/style_layout.html
|
||||
share/doc/gpsbabel/style_notes.html
|
||||
share/doc/gpsbabel/styles_internal_const.html
|
||||
share/doc/gpsbabel/styles_intro.html
|
||||
share/doc/gpsbabel/tracking.html
|
||||
|
Loading…
Reference in New Issue
Block a user