Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Jan 2019 10:34:07 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r490126 - in head/cad: . xtrkcad xtrkcad/files
Message-ID:  <201901131034.x0DAY7TW098037@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sun Jan 13 10:34:07 2019
New Revision: 490126
URL: https://svnweb.freebsd.org/changeset/ports/490126

Log:
  cad/xtrkcad: CAD program for designing model railroad layouts
  
  XTrackCAD is a CAD program for designing model railroad layouts.
  
  WWW: http://www.xtrkcad.org/
  
  PR:		234531
  Submitted by:	Matthias Wolf <freebsd@rheinwolf.de>
  Reviewed by:	koobs

Added:
  head/cad/xtrkcad/
  head/cad/xtrkcad/Makefile   (contents, props changed)
  head/cad/xtrkcad/distinfo   (contents, props changed)
  head/cad/xtrkcad/files/
  head/cad/xtrkcad/files/patch-app_bin_ccornu.c   (contents, props changed)
  head/cad/xtrkcad/pkg-descr   (contents, props changed)
  head/cad/xtrkcad/pkg-plist   (contents, props changed)
Modified:
  head/cad/Makefile

Modified: head/cad/Makefile
==============================================================================
--- head/cad/Makefile	Sun Jan 13 10:33:31 2019	(r490125)
+++ head/cad/Makefile	Sun Jan 13 10:34:07 2019	(r490126)
@@ -103,6 +103,7 @@
     SUBDIR += varkon
     SUBDIR += verilog-mode.el
     SUBDIR += xcircuit
+    SUBDIR += xtrkcad
     SUBDIR += z88
     SUBDIR += zcad
 

Added: head/cad/xtrkcad/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/xtrkcad/Makefile	Sun Jan 13 10:34:07 2019	(r490126)
@@ -0,0 +1,59 @@
+# $FreeBSD$
+
+PORTNAME=	xtrkcad
+DISTVERSIONPREFIX=	source-
+DISTVERSION=	5.1.2a
+CATEGORIES=	cad
+MASTER_SITES=	SF/xtrkcad-fork/XTrackCad/Version%20${DISTVERSION:C/[:alpha:]//}
+
+MAINTAINER=	freebsd@rheinwolf.de
+COMMENT=	CAD program for designing model railroad layouts
+
+LICENSE=	GPLv2
+
+LIB_DEPENDS=	libcmocka.so:sysutils/cmocka \
+		libfontconfig.so:x11-fonts/fontconfig \
+		libfreetype.so:print/freetype2 \
+		libsoup-2.4.so:devel/libsoup \
+		libwebkitgtk-1.0.so:www/webkit-gtk2
+BUILD_DEPENDS=	pkg-config:devel/pkgconf
+
+USES=		cmake gnome
+USE_GNOME=	gdkpixbuf2 gtk20 cairo
+
+CMAKE_ON=	XTRKCAD_USE_GTK
+CMAKE_OFF=	XTRKCAD_TESTING
+
+OPTIONS_DEFINE=	DOCS EXAMPLES NLS
+OPTIONS_SUB=	NLS
+
+DOCS_BUILD_DEPENDS=	pandoc:textproc/hs-pandoc
+
+NLS_USES=	gettext-runtime:lib gettext-tools:build
+NLS_CMAKE_BOOL=	XTRKCAD_USE_GETTEXT
+
+post-install:
+	${MKDIR} ${STAGEDIR}${DESKTOPDIR} \
+		 ${STAGEDIR}${DOCSDIR} \
+		 ${STAGEDIR}${EXAMPLESDIR} \
+		 ${STAGEDIR}${PREFIX}/share/pixmaps
+	${MV} ${STAGEDIR}/usr/share/applications/xtrkcad.desktop ${STAGEDIR}${DESKTOPDIR}
+	${MV} ${STAGEDIR}/usr/share/pixmaps/xtrkcad.png ${STAGEDIR}${PREFIX}/share/pixmaps
+	${RM} ${STAGEDIR}${DATADIR}/COPYING
+	${RMDIR} ${STAGEDIR}/usr/share/applications ${STAGEDIR}/usr/share/pixmaps ${STAGEDIR}/usr/share
+
+post-install-DOCS-on:
+	${MV} ${STAGEDIR}${DATADIR}/CHANGELOG.txt ${STAGEDIR}${DOCSDIR}
+	${MV} ${STAGEDIR}${DATADIR}/Readme.txt ${STAGEDIR}${DOCSDIR}
+
+post-install-DOCS-off:
+	${RM} ${STAGEDIR}${DATADIR}/*.txt
+
+post-install-EXAMPLES-on:
+	${MV} ${STAGEDIR}${DATADIR}/examples/* ${STAGEDIR}${EXAMPLESDIR}
+	${RMDIR} ${STAGEDIR}${DATADIR}/examples
+
+post-install-EXAMPLES-off:
+	${RM} -rf ${STAGEDIR}${DATADIR}/examples
+
+.include <bsd.port.mk>

Added: head/cad/xtrkcad/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/xtrkcad/distinfo	Sun Jan 13 10:34:07 2019	(r490126)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1545943850
+SHA256 (xtrkcad-source-5.1.2a.tar.gz) = 6ef8d92af48eef4dfc1d15d7449525951ea102e34042d3fa1d7b4bbc63e23488
+SIZE (xtrkcad-source-5.1.2a.tar.gz) = 12667102

Added: head/cad/xtrkcad/files/patch-app_bin_ccornu.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/xtrkcad/files/patch-app_bin_ccornu.c	Sun Jan 13 10:34:07 2019	(r490126)
@@ -0,0 +1,10 @@
+--- app/bin/ccornu.c.orig	2018-10-04 16:29:16 UTC
++++ app/bin/ccornu.c
+@@ -64,6 +64,7 @@
+ 
+ 
+ #include "track.h"
++#include "bezctx.h"
+ #include "spiro.h"
+ #include "spiroentrypoints.h"
+ #include "bezctx_xtrkcad.h"

Added: head/cad/xtrkcad/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/xtrkcad/pkg-descr	Sun Jan 13 10:34:07 2019	(r490126)
@@ -0,0 +1,3 @@
+XTrackCAD is a CAD program for designing model railroad layouts.
+
+WWW: http://www.xtrkcad.org/

Added: head/cad/xtrkcad/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/xtrkcad/pkg-plist	Sun Jan 13 10:34:07 2019	(r490126)
@@ -0,0 +1,833 @@
+bin/xtrkcad
+share/applications/xtrkcad.desktop
+share/pixmaps/xtrkcad.png
+%%NLS%%share/locale/de_DE/LC_MESSAGES/xtrkcad.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/xtrkcad.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/xtrkcad.mo
+%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
+%%PORTDOCS%%%%DOCSDIR%%/Readme.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2_train_round_mrklnhomde_v1_2014_01.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2oval8_mrklnhomde_v1_2013_03.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2way2loop_mrklnhomde_v1_2013_04.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2x8+L+layout+01c.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3_circles_loops_mrklnhomde_2013_06_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3oval1circle_mrklnhomde_v1_2013_03.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3oval2loops_mrklnhomde_v1_2013_04.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3oval8_mrklnhomde_v1_2013_03.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3way_track_and_looping_mrklnhomde_2013_02_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/4_Triangles_mrklnhomde_2012_11_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Bridge_over_central_station.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Central_Station_City_mrklnhomde_2013_06_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Central_Station_mrklnhomde_2013_04_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Control-Panels.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DVRR v3.0 E Stroudsburg - Pt Jervis.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Eishindo T Track Test Layout.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MaerklinLayout_ReverseLoop4.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Station_2ladder_v1_2014_07_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Station_and_Circles_mrklnhomde_2013_02_jruppert.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bridge_and_loops_mrklnhomde_v1_2013_03.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cascade.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/iota.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/katoxing.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/laurel_hon3.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mr03.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mrklnhomde_v1_geometry.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ntrak4.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ntrak6.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ntrak8.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pmi.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/port_dinllean.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/psr.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rack-rail-ski-train-t-trak-triple-double-wide.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw1.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw2.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw3.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw4.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw5.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stonega.xtc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timesavr.xtc
+%%DATADIR%%/demos/dmadjend.xtr
+%%DATADIR%%/demos/dmbench.xtr
+%%DATADIR%%/demos/dmcancel.xtr
+%%DATADIR%%/demos/dmcircle.xtr
+%%DATADIR%%/demos/dmconn1.xtr
+%%DATADIR%%/demos/dmconn2.xtr
+%%DATADIR%%/demos/dmcrvtrk.xtr
+%%DATADIR%%/demos/dmctlpnl.xtr
+%%DATADIR%%/demos/dmdelund.xtr
+%%DATADIR%%/demos/dmdialog.xtr
+%%DATADIR%%/demos/dmdimlin.xtr
+%%DATADIR%%/demos/dmease.xtr
+%%DATADIR%%/demos/dmelev.xtr
+%%DATADIR%%/demos/dmexcept.xtr
+%%DATADIR%%/demos/dmextend.xtr
+%%DATADIR%%/demos/dmflip.xtr
+%%DATADIR%%/demos/dmgroup.xtr
+%%DATADIR%%/demos/dmhelix.xtr
+%%DATADIR%%/demos/dmhndld.xtr
+%%DATADIR%%/demos/dmintro.xtr
+%%DATADIR%%/demos/dmjcir.xtr
+%%DATADIR%%/demos/dmjnabut.xtr
+%%DATADIR%%/demos/dmjncs.xtr
+%%DATADIR%%/demos/dmjnmove.xtr
+%%DATADIR%%/demos/dmjnss.xtr
+%%DATADIR%%/demos/dmjntt.xtr
+%%DATADIR%%/demos/dmlines.xtr
+%%DATADIR%%/demos/dmlines2.xtr
+%%DATADIR%%/demos/dmmouse.xtr
+%%DATADIR%%/demos/dmmovabt.xtr
+%%DATADIR%%/demos/dmnotes.xtr
+%%DATADIR%%/demos/dmparall.xtr
+%%DATADIR%%/demos/dmplymod.xtr
+%%DATADIR%%/demos/dmprof.xtr
+%%DATADIR%%/demos/dmrescal.xtr
+%%DATADIR%%/demos/dmrotate.xtr
+%%DATADIR%%/demos/dmruler.xtr
+%%DATADIR%%/demos/dmselect.xtr
+%%DATADIR%%/demos/dmsplit.xtr
+%%DATADIR%%/demos/dmstrtrk.xtr
+%%DATADIR%%/demos/dmtbledg.xtr
+%%DATADIR%%/demos/dmtodes.xtr
+%%DATADIR%%/demos/dmtosel.xtr
+%%DATADIR%%/demos/dmtotrim.xtr
+%%DATADIR%%/demos/dmtoyard.xtr
+%%DATADIR%%/demos/dmtrkwid.xtr
+%%DATADIR%%/demos/dmtrntab.xtr
+%%DATADIR%%/html/EasementsCornu.html
+%%DATADIR%%/html/EasementsSectional.html
+%%DATADIR%%/html/EasementsTraditional.html
+%%DATADIR%%/html/ExportDXF.html
+%%DATADIR%%/html/GNUGPLicense.html
+%%DATADIR%%/html/IndexPage.html
+%%DATADIR%%/html/Linux.html
+%%DATADIR%%/html/LinuxInstall.html
+%%DATADIR%%/html/MS-Windows.html
+%%DATADIR%%/html/MSG_2ND_TRK_NOT_SEL_UNSEL.html
+%%DATADIR%%/html/MSG_BITMAP_SIZE_WARNING.html
+%%DATADIR%%/html/MSG_BITMAP_TOO_LARGE.html
+%%DATADIR%%/html/MSG_CANNOT_CHANGE.html
+%%DATADIR%%/html/MSG_CANNOT_GROUP_TRACK.html
+%%DATADIR%%/html/MSG_CANT_GROUP_BUMPER1.html
+%%DATADIR%%/html/MSG_CANT_MODIFY_FROZEN_TRK.html
+%%DATADIR%%/html/MSG_CANT_MOVE_UNDER_TRAIN.html
+%%DATADIR%%/html/MSG_CANT_PASTE.html
+%%DATADIR%%/html/MSG_CANT_PLACE_FROGPOINTS.html
+%%DATADIR%%/html/MSG_CANT_SPLIT_TRK.html
+%%DATADIR%%/html/MSG_CARDESC_VALUE_ZERO.html
+%%DATADIR%%/html/MSG_CARIMP_DUP_COLUMNS.html
+%%DATADIR%%/html/MSG_CARIMP_DUP_INDEX.html
+%%DATADIR%%/html/MSG_CARIMP_IGNORED_COLUMN.html
+%%DATADIR%%/html/MSG_CARIMP_MISSING_COLUMNS.html
+%%DATADIR%%/html/MSG_CARIMP_MISSING_DIMS.html
+%%DATADIR%%/html/MSG_CARIMP_MISSING_PARTNO.html
+%%DATADIR%%/html/MSG_CARIMP_NO_DATA.html
+%%DATADIR%%/html/MSG_CARPART_DUPNAME.html
+%%DATADIR%%/html/MSG_CARPROTO_BADSEGS.html
+%%DATADIR%%/html/MSG_CARPROTO_DUPNAME.html
+%%DATADIR%%/html/MSG_CHANGE_ELEV_MODE.html
+%%DATADIR%%/html/MSG_COMMAND_DISABLED.html
+%%DATADIR%%/html/MSG_CONN_PARAMS_TOO_BIG.html
+%%DATADIR%%/html/MSG_CONN_PARAMS_TOO_SMALL.html
+%%DATADIR%%/html/MSG_CURVE_OUT_OF_RANGE.html
+%%DATADIR%%/html/MSG_CURVE_TOO_LARGE.html
+%%DATADIR%%/html/MSG_CUSTMGM_CANT_WRITE.html
+%%DATADIR%%/html/MSG_CUSTMGM_DELETE_CONFIRM.html
+%%DATADIR%%/html/MSG_DESC_NOT_VISIBLE.html
+%%DATADIR%%/html/MSG_DOMOUSE_BAD_OP.html
+%%DATADIR%%/html/MSG_ENTERED_STRING_TRUNCATED.html
+%%DATADIR%%/html/MSG_EP_ON_PATH.html
+%%DATADIR%%/html/MSG_GRID_ENABLE_SPACE_GTR_0.html
+%%DATADIR%%/html/MSG_GRID_SHOW_SPACE_GTR_0.html
+%%DATADIR%%/html/MSG_GROUP_NONBLANK.html
+%%DATADIR%%/html/MSG_HELIX_TURNS_GTR_0.html
+%%DATADIR%%/html/MSG_JOIN_CORNU_SAME.html
+%%DATADIR%%/html/MSG_JOIN_DIFFER_ELEV.html
+%%DATADIR%%/html/MSG_JOIN_EASEMENTS.html
+%%DATADIR%%/html/MSG_JOIN_SAME.html
+%%DATADIR%%/html/MSG_JOIN_TURNTABLE.html
+%%DATADIR%%/html/MSG_LARGE_FONT.html
+%%DATADIR%%/html/MSG_LAYER_FREEZE.html
+%%DATADIR%%/html/MSG_LAYER_HIDE.html
+%%DATADIR%%/html/MSG_LAYER_SEL_FROZEN.html
+%%DATADIR%%/html/MSG_MOVE_OUT_OF_BOUNDS.html
+%%DATADIR%%/html/MSG_MOVE_POINTS_AWAY_CLOSE.html
+%%DATADIR%%/html/MSG_MOVE_POINTS_AWAY_NO_INTERSECTION.html
+%%DATADIR%%/html/MSG_MOVE_POINTS_OTHER_SIDE.html
+%%DATADIR%%/html/MSG_NO_CARPROTO.html
+%%DATADIR%%/html/MSG_NO_CARS.html
+%%DATADIR%%/html/MSG_NO_PATH_TO_EP.html
+%%DATADIR%%/html/MSG_NO_REDO.html
+%%DATADIR%%/html/MSG_NO_ROOM_BTW_TRKS.html
+%%DATADIR%%/html/MSG_NO_SELECTED_TRK.html
+%%DATADIR%%/html/MSG_NO_TURNOUTS_AVAILABLE.html
+%%DATADIR%%/html/MSG_NO_UNCONN_EP.html
+%%DATADIR%%/html/MSG_NO_UNDO.html
+%%DATADIR%%/html/MSG_OBJECT_TOO_SHORT.html
+%%DATADIR%%/html/MSG_OUT_OF_BOUNDS.html
+%%DATADIR%%/html/MSG_PARALLEL_SEP_GTR_0.html
+%%DATADIR%%/html/MSG_PLAYBACK_LISTENTRY.html
+%%DATADIR%%/html/MSG_PLAYBACK_VERSION_UPGRADE.html
+%%DATADIR%%/html/MSG_POINT_INSIDE_TURNTABLE.html
+%%DATADIR%%/html/MSG_POLY_SHAPES_3_SIDES.html
+%%DATADIR%%/html/MSG_PRINT_MAX_SIZE.html
+%%DATADIR%%/html/MSG_PRINT_NO_PAGES.html
+%%DATADIR%%/html/MSG_PRMFIL_NO_CONTENTS.html
+%%DATADIR%%/html/MSG_PRMFIL_NO_MAP.html
+%%DATADIR%%/html/MSG_PRMFIL_OPEN_NEW.html
+%%DATADIR%%/html/MSG_PROG_CORRUPTED.html
+%%DATADIR%%/html/MSG_PT_IS_NOT_TRK.html
+%%DATADIR%%/html/MSG_PULL_FEW_SECTIONS.html
+%%DATADIR%%/html/MSG_RADIUS_GTR_0.html
+%%DATADIR%%/html/MSG_RADIUS_GTR_10000.html
+%%DATADIR%%/html/MSG_RADIUS_LSS_EASE_MIN.html
+%%DATADIR%%/html/MSG_RADIUS_TOO_BIG.html
+%%DATADIR%%/html/MSG_RESCALE_TOO_BIG.html
+%%DATADIR%%/html/MSG_SAVE_CHANGES.html
+%%DATADIR%%/html/MSG_SEGMENTS_DIFFER.html
+%%DATADIR%%/html/MSG_SELECTED_TRACKS_PARALLEL.html
+%%DATADIR%%/html/MSG_SEL_POS_FIRST.html
+%%DATADIR%%/html/MSG_SEL_TRK_FROZEN.html
+%%DATADIR%%/html/MSG_SPLIT_PATH_NOT_UNIQUE.html
+%%DATADIR%%/html/MSG_SPLIT_POS_BTW_MERGEPTS.html
+%%DATADIR%%/html/MSG_STRUCT_NO_STRUCTS.html
+%%DATADIR%%/html/MSG_TODSGN_CROSSOVER_TOO_SHORT.html
+%%DATADIR%%/html/MSG_TODSGN_DESC_NONBLANK.html
+%%DATADIR%%/html/MSG_TODSGN_REPLACE.html
+%%DATADIR%%/html/MSG_TODSGN_VALUES_GTR_0.html
+%%DATADIR%%/html/MSG_TOOMANYSEGSINGROUP.html
+%%DATADIR%%/html/MSG_TOO_FAR_APART_DIVERGE.html
+%%DATADIR%%/html/MSG_TRK_ALREADY_CONN.html
+%%DATADIR%%/html/MSG_TRK_TOO_SHORT.html
+%%DATADIR%%/html/MSG_TURNOUT_NO_TURNOUT.html
+%%DATADIR%%/html/MSG_TURNTABLE_DIAM_GTR_0.html
+%%DATADIR%%/html/MSG_UNDO_ASSERT.html
+%%DATADIR%%/html/MSG_UPGRADE_VERSION1.html
+%%DATADIR%%/html/MSG_UPGRADE_VERSION2.html
+%%DATADIR%%/html/MSG_WBITMAP_FAILED.html
+%%DATADIR%%/html/MSWinInstall.html
+%%DATADIR%%/html/MessagesandExplanations.html
+%%DATADIR%%/html/NoteDialog.html
+%%DATADIR%%/html/aboutmanual.html
+%%DATADIR%%/html/addFeatures.html
+%%DATADIR%%/html/addM.html
+%%DATADIR%%/html/addText.html
+%%DATADIR%%/html/addshortcutkeys.html
+%%DATADIR%%/html/bugs.html
+%%DATADIR%%/html/bugs_enhancements.html
+%%DATADIR%%/html/carpart.html
+%%DATADIR%%/html/carprototype.html
+%%DATADIR%%/html/changeM.html
+%%DATADIR%%/html/chgBezier.html
+%%DATADIR%%/html/chgCornu.html
+%%DATADIR%%/html/chgTrackLength.html
+%%DATADIR%%/html/chgTrackRadius.html
+%%DATADIR%%/html/clrElev.html
+%%DATADIR%%/html/cmdAboveBelow.html
+%%DATADIR%%/html/cmdAcclKeys.html
+%%DATADIR%%/html/cmdAdd.html
+%%DATADIR%%/html/cmdBlock.html
+%%DATADIR%%/html/cmdCarinv.html
+%%DATADIR%%/html/cmdCarpart.html
+%%DATADIR%%/html/cmdChange.html
+%%DATADIR%%/html/cmdCircle.html
+%%DATADIR%%/html/cmdCircleL.html
+%%DATADIR%%/html/cmdCmdopt.html
+%%DATADIR%%/html/cmdConnect.html
+%%DATADIR%%/html/cmdContmgm.html
+%%DATADIR%%/html/cmdControl.html
+%%DATADIR%%/html/cmdCurve.html
+%%DATADIR%%/html/cmdCurvedL.html
+%%DATADIR%%/html/cmdCustmgm.html
+%%DATADIR%%/html/cmdDelete.html
+%%DATADIR%%/html/cmdDemo.html
+%%DATADIR%%/html/cmdDescribe.html
+%%DATADIR%%/html/cmdDisplay.html
+%%DATADIR%%/html/cmdDraw.html
+%%DATADIR%%/html/cmdDrawCircle.html
+%%DATADIR%%/html/cmdDrawCurve.html
+%%DATADIR%%/html/cmdDrawShape.html
+%%DATADIR%%/html/cmdDrawStraight.html
+%%DATADIR%%/html/cmdEasement.html
+%%DATADIR%%/html/cmdEdit.html
+%%DATADIR%%/html/cmdElev.html
+%%DATADIR%%/html/cmdEnum.html
+%%DATADIR%%/html/cmdExport.html
+%%DATADIR%%/html/cmdFile.html
+%%DATADIR%%/html/cmdFlip.html
+%%DATADIR%%/html/cmdGrid.html
+%%DATADIR%%/html/cmdGroup.html
+%%DATADIR%%/html/cmdHandLaidTurnout.html
+%%DATADIR%%/html/cmdHelix.html
+%%DATADIR%%/html/cmdHotBar.html
+%%DATADIR%%/html/cmdImport.html
+%%DATADIR%%/html/cmdJoin.html
+%%DATADIR%%/html/cmdLayer.html
+%%DATADIR%%/html/cmdLayout.html
+%%DATADIR%%/html/cmdMacro.html
+%%DATADIR%%/html/cmdManage.html
+%%DATADIR%%/html/cmdMap.html
+%%DATADIR%%/html/cmdModify.html
+%%DATADIR%%/html/cmdMove.html
+%%DATADIR%%/html/cmdMoveLabel.html
+%%DATADIR%%/html/cmdNote.html
+%%DATADIR%%/html/cmdOption.html
+%%DATADIR%%/html/cmdOutputbitmap.html
+%%DATADIR%%/html/cmdPan.html
+%%DATADIR%%/html/cmdParallel.html
+%%DATADIR%%/html/cmdPref.html
+%%DATADIR%%/html/cmdPricelist.html
+%%DATADIR%%/html/cmdPrint.html
+%%DATADIR%%/html/cmdPrmfile.html
+%%DATADIR%%/html/cmdProfile.html
+%%DATADIR%%/html/cmdRaiseElev.html
+%%DATADIR%%/html/cmdRefreshSpecial.html
+%%DATADIR%%/html/cmdRescale.html
+%%DATADIR%%/html/cmdRgbcolor.html
+%%DATADIR%%/html/cmdRotate.html
+%%DATADIR%%/html/cmdRuler.html
+%%DATADIR%%/html/cmdSelect.html
+%%DATADIR%%/html/cmdSensor.html
+%%DATADIR%%/html/cmdShapes.html
+%%DATADIR%%/html/cmdSignal.html
+%%DATADIR%%/html/cmdSplitTrack.html
+%%DATADIR%%/html/cmdStatusbar.html
+%%DATADIR%%/html/cmdSticky.html
+%%DATADIR%%/html/cmdStraight.html
+%%DATADIR%%/html/cmdStraightL.html
+%%DATADIR%%/html/cmdStructure.html
+%%DATADIR%%/html/cmdSwitchmotor.html
+%%DATADIR%%/html/cmdText.html
+%%DATADIR%%/html/cmdTrain.html
+%%DATADIR%%/html/cmdTunnel.html
+%%DATADIR%%/html/cmdTurnout.html
+%%DATADIR%%/html/cmdTurnoutNew.html
+%%DATADIR%%/html/cmdTurntable.html
+%%DATADIR%%/html/cmdUndo.html
+%%DATADIR%%/html/cmdUngroup.html
+%%DATADIR%%/html/cmdUpdatetitle.html
+%%DATADIR%%/html/cmdView.html
+%%DATADIR%%/html/cmdZoom.html
+%%DATADIR%%/html/commandMenus.html
+%%DATADIR%%/html/computeElevations.html
+%%DATADIR%%/html/contents.html
+%%DATADIR%%/html/controlElementScripts.html
+%%DATADIR%%/html/copydist.html
+%%DATADIR%%/html/createTangent.html
+%%DATADIR%%/html/dirOverview.html
+%%DATADIR%%/html/directories.html
+%%DATADIR%%/html/editM.html
+%%DATADIR%%/html/enhancements.html
+%%DATADIR%%/html/enterValue.html
+%%DATADIR%%/html/extendTrack.html
+%%DATADIR%%/html/faqs.html
+%%DATADIR%%/html/faqsButtonColor.html
+%%DATADIR%%/html/faqsHotBar.html
+%%DATADIR%%/html/faqsJoin.html
+%%DATADIR%%/html/faqsPrototype.html
+%%DATADIR%%/html/faqsTransfer.html
+%%DATADIR%%/html/fileM.html
+%%DATADIR%%/html/fontSelW.html
+%%DATADIR%%/html/generalTerms.html
+%%DATADIR%%/html/generaloperation.html
+%%DATADIR%%/html/glossary.html
+%%DATADIR%%/html/hbStructures.html
+%%DATADIR%%/html/hbTurnouts.html
+%%DATADIR%%/html/helpM.html
+%%DATADIR%%/html/index.html
+%%DATADIR%%/html/installDir.html
+%%DATADIR%%/html/installSoftware.html
+%%DATADIR%%/html/introQT.html
+%%DATADIR%%/html/joinCornu.html
+%%DATADIR%%/html/joinNormalEasment.html
+%%DATADIR%%/html/joinTrackCurve.html
+%%DATADIR%%/html/joinTrackMove.html
+%%DATADIR%%/html/joinTrackStraight.html
+%%DATADIR%%/html/kbshortcutHotBar.html
+%%DATADIR%%/html/kbshortcutMainCanvas.html
+%%DATADIR%%/html/kbshortcutdraw.html
+%%DATADIR%%/html/kbshortcuts.html
+%%DATADIR%%/html/keyFeatures.html
+%%DATADIR%%/html/macroM.html
+%%DATADIR%%/html/mainW.html
+%%DATADIR%%/html/manageM.html
+%%DATADIR%%/html/messageList.html
+%%DATADIR%%/html/messageType.html
+%%DATADIR%%/html/mouseBcmd.html
+%%DATADIR%%/html/moveByMenu.html
+%%DATADIR%%/html/moveByMouse.html
+%%DATADIR%%/html/navigation.html
+%%DATADIR%%/html/optionM.html
+%%DATADIR%%/html/performance.html
+%%DATADIR%%/html/png.d/ahelix.png
+%%DATADIR%%/html/png.d/bblock.png
+%%DATADIR%%/html/png.d/bcircl1.png
+%%DATADIR%%/html/png.d/bcircl2.png
+%%DATADIR%%/html/png.d/bcircl3.png
+%%DATADIR%%/html/png.d/bcircle.png
+%%DATADIR%%/html/png.d/bconnect.png
+%%DATADIR%%/html/png.d/bcontrol.png
+%%DATADIR%%/html/png.d/bcurve.png
+%%DATADIR%%/html/png.d/bcurve1.png
+%%DATADIR%%/html/png.d/bcurve2.png
+%%DATADIR%%/html/png.d/bcurve3.png
+%%DATADIR%%/html/png.d/bcurve4.png
+%%DATADIR%%/html/png.d/bdelete.png
+%%DATADIR%%/html/png.d/bdescrib.png
+%%DATADIR%%/html/png.d/bdraw.png
+%%DATADIR%%/html/png.d/beasement.png
+%%DATADIR%%/html/png.d/belev.png
+%%DATADIR%%/html/png.d/bezier.png
+%%DATADIR%%/html/png.d/bflip.png
+%%DATADIR%%/html/png.d/bgsnap.png
+%%DATADIR%%/html/png.d/bgundo.png
+%%DATADIR%%/html/png.d/bgzoom.png
+%%DATADIR%%/html/png.d/bhelix.png
+%%DATADIR%%/html/png.d/bhndldto.png
+%%DATADIR%%/html/png.d/bitmap.png
+%%DATADIR%%/html/png.d/bjoin.png
+%%DATADIR%%/html/png.d/blayer.png
+%%DATADIR%%/html/png.d/block.png
+%%DATADIR%%/html/png.d/blockBoth.png
+%%DATADIR%%/html/png.d/blockBottom.png
+%%DATADIR%%/html/png.d/blockNone.png
+%%DATADIR%%/html/png.d/blockTop.png
+%%DATADIR%%/html/png.d/bmap.png
+%%DATADIR%%/html/png.d/bmcircle.png
+%%DATADIR%%/html/png.d/bmcurved.png
+%%DATADIR%%/html/png.d/bmenu.png
+%%DATADIR%%/html/png.d/bmodify.png
+%%DATADIR%%/html/png.d/bmove.png
+%%DATADIR%%/html/png.d/bmovedes.png
+%%DATADIR%%/html/png.d/bnew.png
+%%DATADIR%%/html/png.d/bnewcar.png
+%%DATADIR%%/html/png.d/bnote.png
+%%DATADIR%%/html/png.d/bopen.png
+%%DATADIR%%/html/png.d/bparalle.png
+%%DATADIR%%/html/png.d/brotate.png
+%%DATADIR%%/html/png.d/bruler.png
+%%DATADIR%%/html/png.d/bsave.png
+%%DATADIR%%/html/png.d/bselect.png
+%%DATADIR%%/html/png.d/bsensor.png
+%%DATADIR%%/html/png.d/bsignal.png
+%%DATADIR%%/html/png.d/bsplit.png
+%%DATADIR%%/html/png.d/bstraigh.png
+%%DATADIR%%/html/png.d/bstruct.png
+%%DATADIR%%/html/png.d/bswitchmotor.png
+%%DATADIR%%/html/png.d/btext.png
+%%DATADIR%%/html/png.d/btop_bottom.png
+%%DATADIR%%/html/png.d/btrain.png
+%%DATADIR%%/html/png.d/btunnel.png
+%%DATADIR%%/html/png.d/bturnout.png
+%%DATADIR%%/html/png.d/bturntbl.png
+%%DATADIR%%/html/png.d/carinv.png
+%%DATADIR%%/html/png.d/caritem.png
+%%DATADIR%%/html/png.d/carlist.png
+%%DATADIR%%/html/png.d/carpart.png
+%%DATADIR%%/html/png.d/carproto.png
+%%DATADIR%%/html/png.d/celev.png
+%%DATADIR%%/html/png.d/cgroup.png
+%%DATADIR%%/html/png.d/chelix.png
+%%DATADIR%%/html/png.d/cmdopt.png
+%%DATADIR%%/html/png.d/colorw.png
+%%DATADIR%%/html/png.d/control.png
+%%DATADIR%%/html/png.d/custmgm.png
+%%DATADIR%%/html/png.d/dbench.png
+%%DATADIR%%/html/png.d/dbezier.png
+%%DATADIR%%/html/png.d/dbox.png
+%%DATADIR%%/html/png.d/dchgelev.png
+%%DATADIR%%/html/png.d/dcircle2.png
+%%DATADIR%%/html/png.d/dcircle3.png
+%%DATADIR%%/html/png.d/dcprofile.png
+%%DATADIR%%/html/png.d/dcurve1.png
+%%DATADIR%%/html/png.d/dcurve2.png
+%%DATADIR%%/html/png.d/dcurve3.png
+%%DATADIR%%/html/png.d/dcurve4.png
+%%DATADIR%%/html/png.d/ddimlin.png
+%%DATADIR%%/html/png.d/demo.png
+%%DATADIR%%/html/png.d/dfilbox.png
+%%DATADIR%%/html/png.d/dfilpoly.png
+%%DATADIR%%/html/png.d/dflcrcl2.png
+%%DATADIR%%/html/png.d/dflcrcl3.png
+%%DATADIR%%/html/png.d/displayopt.png
+%%DATADIR%%/html/png.d/dlayer.png
+%%DATADIR%%/html/png.d/dlayers.png
+%%DATADIR%%/html/png.d/dline.png
+%%DATADIR%%/html/png.d/dpoly.png
+%%DATADIR%%/html/png.d/dprmfile.png
+%%DATADIR%%/html/png.d/dproperties.png
+%%DATADIR%%/html/png.d/dpropertieshighlight.png
+%%DATADIR%%/html/png.d/drotateangle.png
+%%DATADIR%%/html/png.d/dtbledge.png
+%%DATADIR%%/html/png.d/dtipofday.png
+%%DATADIR%%/html/png.d/easeex1.png
+%%DATADIR%%/html/png.d/easeex2.png
+%%DATADIR%%/html/png.d/easew.png
+%%DATADIR%%/html/png.d/exportfile.png
+%%DATADIR%%/html/png.d/exportfiledxf.png
+%%DATADIR%%/html/png.d/flip1.png
+%%DATADIR%%/html/png.d/flip2.png
+%%DATADIR%%/html/png.d/flip3.png
+%%DATADIR%%/html/png.d/flip4.png
+%%DATADIR%%/html/png.d/fonts.png
+%%DATADIR%%/html/png.d/grid.png
+%%DATADIR%%/html/png.d/hotbar.png
+%%DATADIR%%/html/png.d/iconnote.png
+%%DATADIR%%/html/png.d/import.png
+%%DATADIR%%/html/png.d/joincornu1.png
+%%DATADIR%%/html/png.d/joincornu2.png
+%%DATADIR%%/html/png.d/joincornu3.png
+%%DATADIR%%/html/png.d/joincornu4.png
+%%DATADIR%%/html/png.d/joincornu5.png
+%%DATADIR%%/html/png.d/joincrv1.png
+%%DATADIR%%/html/png.d/joincrv2.png
+%%DATADIR%%/html/png.d/joincrv3.png
+%%DATADIR%%/html/png.d/joincrv4.png
+%%DATADIR%%/html/png.d/joincrv5.png
+%%DATADIR%%/html/png.d/joinmove1.png
+%%DATADIR%%/html/png.d/joinmove2.png
+%%DATADIR%%/html/png.d/joinmove3.png
+%%DATADIR%%/html/png.d/joinmove4.png
+%%DATADIR%%/html/png.d/joinstrt1.png
+%%DATADIR%%/html/png.d/joinstrt2.png
+%%DATADIR%%/html/png.d/joinstrt3.png
+%%DATADIR%%/html/png.d/layout.png
+%%DATADIR%%/html/png.d/lcemanager.png
+%%DATADIR%%/html/png.d/madd.png
+%%DATADIR%%/html/png.d/main.png
+%%DATADIR%%/html/png.d/main1.png
+%%DATADIR%%/html/png.d/maincanvas.png
+%%DATADIR%%/html/png.d/map.png
+%%DATADIR%%/html/png.d/mchange.png
+%%DATADIR%%/html/png.d/mdraw.png
+%%DATADIR%%/html/png.d/mdrawcircles.png
+%%DATADIR%%/html/png.d/mdrawcurve.png
+%%DATADIR%%/html/png.d/mdrawshapes.png
+%%DATADIR%%/html/png.d/mdrawstraight.png
+%%DATADIR%%/html/png.d/medit.png
+%%DATADIR%%/html/png.d/menu.png
+%%DATADIR%%/html/png.d/menu.xcf
+%%DATADIR%%/html/png.d/mfile.png
+%%DATADIR%%/html/png.d/mhelp.png
+%%DATADIR%%/html/png.d/mhelpdemos.png
+%%DATADIR%%/html/png.d/mhelprecent.png
+%%DATADIR%%/html/png.d/mmacro.png
+%%DATADIR%%/html/png.d/mmanage.png
+%%DATADIR%%/html/png.d/mmanageturnoutdesign.png
+%%DATADIR%%/html/png.d/mmovedraw.png
+%%DATADIR%%/html/png.d/moptions.png
+%%DATADIR%%/html/png.d/mrotatealign.png
+%%DATADIR%%/html/png.d/mrotatefixed.png
+%%DATADIR%%/html/png.d/mrotatemove.png
+%%DATADIR%%/html/png.d/mselect.png
+%%DATADIR%%/html/png.d/mselected.png
+%%DATADIR%%/html/png.d/msplitblock.png
+%%DATADIR%%/html/png.d/msplitblockLR.png
+%%DATADIR%%/html/png.d/mtoolbar.png
+%%DATADIR%%/html/png.d/mtrainmanagement.png
+%%DATADIR%%/html/png.d/mview.png
+%%DATADIR%%/html/png.d/mwindow.png
+%%DATADIR%%/html/png.d/mzoomscale.png
+%%DATADIR%%/html/png.d/openwindows.png
+%%DATADIR%%/html/png.d/pan.png
+%%DATADIR%%/html/png.d/partslist.png
+%%DATADIR%%/html/png.d/pref.png
+%%DATADIR%%/html/png.d/pricelist.png
+%%DATADIR%%/html/png.d/print.png
+%%DATADIR%%/html/png.d/printset.png
+%%DATADIR%%/html/png.d/printset_win.png
+%%DATADIR%%/html/png.d/rescale.png
+%%DATADIR%%/html/png.d/satusbarparallel.png
+%%DATADIR%%/html/png.d/sensor.png
+%%DATADIR%%/html/png.d/signal.png
+%%DATADIR%%/html/png.d/splitConnect.png
+%%DATADIR%%/html/png.d/splitDisconnect.png
+%%DATADIR%%/html/png.d/splitNotYet.png
+%%DATADIR%%/html/png.d/statusbar.png
+%%DATADIR%%/html/png.d/statusbartrain.png
+%%DATADIR%%/html/png.d/statusbarturntable.png
+%%DATADIR%%/html/png.d/statustext.png
+%%DATADIR%%/html/png.d/sticky.png
+%%DATADIR%%/html/png.d/strsel.png
+%%DATADIR%%/html/png.d/switchmotor.png
+%%DATADIR%%/html/png.d/title.png
+%%DATADIR%%/html/png.d/toolbar.png
+%%DATADIR%%/html/png.d/trainbar.png
+%%DATADIR%%/html/png.d/trainctrl.png
+%%DATADIR%%/html/png.d/trainsimulator.png
+%%DATADIR%%/html/png.d/turndes.png
+%%DATADIR%%/html/png.d/turnsel.png
+%%DATADIR%%/html/png.d/updttl.png
+%%DATADIR%%/html/png.d/xtrkcad_logo.gif
+%%DATADIR%%/html/printSetup.html
+%%DATADIR%%/html/rotateByAlign.html
+%%DATADIR%%/html/rotateByMenu.html
+%%DATADIR%%/html/rotateByMouse.html
+%%DATADIR%%/html/splitBlockGap.html
+%%DATADIR%%/html/splitDisconnect.html
+%%DATADIR%%/html/splitDivide.html
+%%DATADIR%%/html/startSoftware.html
+%%DATADIR%%/html/toolbarM.html
+%%DATADIR%%/html/uninstall.html
+%%DATADIR%%/html/upgrades.html
+%%DATADIR%%/html/v4.0.3_revisions.html
+%%DATADIR%%/html/v4.0.x_revisions.html
+%%DATADIR%%/html/viewM.html
+%%DATADIR%%/html/warranty.html
+%%DATADIR%%/html/warrantyLicenseCopy.html
+%%DATADIR%%/html/whyXTrackCAD.html
+%%DATADIR%%/html/windowM.html
+%%DATADIR%%/html/windowTerms.html
+%%DATADIR%%/html/workDir.html
+%%DATADIR%%/html/xtrkcad_lin.css
+%%DATADIR%%/logo.bmp
+%%DATADIR%%/params/ACG19.350 Track.xtp
+%%DATADIR%%/params/ACG20.000 Track.xtp
+%%DATADIR%%/params/ACG20.000_Track.xtp
+%%DATADIR%%/params/Any-CTC_panel.xtp
+%%DATADIR%%/params/Any-CabooseIndustries.xtp
+%%DATADIR%%/params/Any-ElecSymbol.xtp
+%%DATADIR%%/params/AtlasTrueTrk.xtp
+%%DATADIR%%/params/Azatrax.xtp
+%%DATADIR%%/params/BachmannEZ-HO.xtp
+%%DATADIR%%/params/BachmannEZ-N.xtp
+%%DATADIR%%/params/Central Valley turnout kits.xtp
+%%DATADIR%%/params/Central Valley turnouts.xtp
+%%DATADIR%%/params/Circuits.xtp
+%%DATADIR%%/params/DiamondSc.xtp
+%%DATADIR%%/params/EM-UK Fine Scale.xtp
+%%DATADIR%%/params/F-NMRA-RP12-21.xtp
+%%DATADIR%%/params/FastTrack-HO.xtp
+%%DATADIR%%/params/FastTrack_n.xtp
+%%DATADIR%%/params/G-NMRA-RP12-23.xtp
+%%DATADIR%%/params/G-NQD-AMAX Plastic.xtp
+%%DATADIR%%/params/G-aristo.xtp
+%%DATADIR%%/params/Gn15-nmra.xtp
+%%DATADIR%%/params/H0_ncb-Roads.xtp
+%%DATADIR%%/params/HO-AtlasHOstruct.xtp
+%%DATADIR%%/params/HO-DapolHOOO.xtp
+%%DATADIR%%/params/HO-Frateschi.xtp
+%%DATADIR%%/params/HO-HornbyHO.xtp
+%%DATADIR%%/params/HO-LifeLike-Power-Loc.xtp
+%%DATADIR%%/params/HO-Mehano.xtp
+%%DATADIR%%/params/HO-MetcalfeHOOO.xtp
+%%DATADIR%%/params/HO-MicroEngineering.xtp
+%%DATADIR%%/params/HO-OldJouefHO100.xtp
+%%DATADIR%%/params/HO-Peco-Code100Setrack.xtp
+%%DATADIR%%/params/HO-Peco-Code100Streamline.xtp
+%%DATADIR%%/params/HO-Peco-Code75Finescale.xtp
+%%DATADIR%%/params/HO-Peco-Code83.xtp
+%%DATADIR%%/params/HO-Peco70USA.xtp
+%%DATADIR%%/params/HO-RatioHOOO.xtp
+%%DATADIR%%/params/HO-Slot-Car-AFX-Track.xtp
+%%DATADIR%%/params/HO-Slot-Car-Adapter-Track.xtp
+%%DATADIR%%/params/HO-Slot-Car-Aurora-Track-Manually-Modified.xtp
+%%DATADIR%%/params/HO-Slot-Car-Aurora-Track.xtp
+%%DATADIR%%/params/HO-Slot-Cars.xtp
+%%DATADIR%%/params/HO-Superquick.xtp
+%%DATADIR%%/params/HO-WalthCornerstone 1.xtp
+%%DATADIR%%/params/HO-Weinert-Code75.xtp
+%%DATADIR%%/params/HO-WillsHOOO.xtp
+%%DATADIR%%/params/HO-atl100ho.xtp
+%%DATADIR%%/params/HO-cmr-ho.xtp
+%%DATADIR%%/params/HO_toolkit-Roads.xtp
+%%DATADIR%%/params/HOn3-BlackStoneProTraxx.xtp
+%%DATADIR%%/params/HOn3-MicroEngineering.xtp
+%%DATADIR%%/params/HOn30_Minitrains.xtp
+%%DATADIR%%/params/Hornby Dublo 2 Rail Buildings.xtp
+%%DATADIR%%/params/Hornby Dublo 2 Rail.xtp
+%%DATADIR%%/params/Hornby Dublo 3 Rail with Turntable.xtp
+%%DATADIR%%/params/Hornby Dublo Signals.xtp
+%%DATADIR%%/params/Hornby Dublo Wood Buildings.xtp
+%%DATADIR%%/params/HornbyOO.xtp
+%%DATADIR%%/params/JouefHO.xtp
+%%DATADIR%%/params/K-Line  O Structures (Kits).xtp
+%%DATADIR%%/params/Lego-Track.xtp
+%%DATADIR%%/params/LifeLike-N.xtp
+%%DATADIR%%/params/LimaHO.xtp
+%%DATADIR%%/params/Lionel  O Misc.xtp
+%%DATADIR%%/params/Lionel  O Operating Structures.xtp
+%%DATADIR%%/params/Lionel  O Structures (Kits).xtp
+%%DATADIR%%/params/Lionel-O-O27.xtp
+%%DATADIR%%/params/Lionel-O.xtp
+%%DATADIR%%/params/Lionel27.xtp
+%%DATADIR%%/params/LionelFasttrack.xtp
+%%DATADIR%%/params/Lionel_Marx Beacons & Floodlight Towers.xtp
+%%DATADIR%%/params/Lionel_Marx Highway Signals & Blocks.xtp
+%%DATADIR%%/params/Marx.xtp
+%%DATADIR%%/params/N-AtlasTrueTrack.xtp
+%%DATADIR%%/params/N-BRIDGES.xtp
+%%DATADIR%%/params/N-Bonus Commercial Structures.xtp
+%%DATADIR%%/params/N-Bonus Generic Industrial Structures.xtp
+%%DATADIR%%/params/N-Bonus Industrial Structures.xtp
+%%DATADIR%%/params/N-Bonus Railroad Structures.xtp
+%%DATADIR%%/params/N-Bonus Residential Structures.xtp
+%%DATADIR%%/params/N-Bonus Structures.xtp
+%%DATADIR%%/params/N-BritishFinescaleFineTraxC40.xtp
+%%DATADIR%%/params/N-DESIGN-PRESERVATION.xtp
+%%DATADIR%%/params/N-GRAIN-ELEVATORS.xtp
+%%DATADIR%%/params/N-Greenmax-Engine sheds.xtp
+%%DATADIR%%/params/N-Greenmax-Island platform 16.xtp
+%%DATADIR%%/params/N-Ibertren.xtp
+%%DATADIR%%/params/N-Kato-Unitram.xtp
+%%DATADIR%%/params/N-Katocn.xtp
+%%DATADIR%%/params/N-LifeLike Power-Loc.xtp
+%%DATADIR%%/params/N-ME Structures.xtp
+%%DATADIR%%/params/N-MOBILE-HOMES.xtp
+%%DATADIR%%/params/N-N- 90ft-ROUNDHOUSE.xtp
+%%DATADIR%%/params/N-NScaleArchitect.xtp
+%%DATADIR%%/params/N-NULINE.xtp
+%%DATADIR%%/params/N-PecoCode55Finescale.xtp
+%%DATADIR%%/params/N-PecoCode80Setrack.xtp
+%%DATADIR%%/params/N-PecoCode80Streamline.xtp
+%%DATADIR%%/params/N-Rix-Pikestuff.xtp
+%%DATADIR%%/params/N-Shinohara70.xtp
+%%DATADIR%%/params/N-atlasn55.xtp
+%%DATADIR%%/params/N-cmr.xtp
+%%DATADIR%%/params/N-fl.xtp
+%%DATADIR%%/params/N-kato-n-gl-trk.xtp
+%%DATADIR%%/params/N-kato-turntable.xtp
+%%DATADIR%%/params/N-kato.xtp
+%%DATADIR%%/params/N-me.xtp
+%%DATADIR%%/params/N-walth-n.xtp
+%%DATADIR%%/params/NJI.xtp
+%%DATADIR%%/params/NScale_SectorPlate_Traverser_Examples.xtp
+%%DATADIR%%/params/Ninco_SCX Slot Car.xtp
+%%DATADIR%%/params/Nm-NTram.xtp
+%%DATADIR%%/params/Nn3-FastTrack.xtp
+%%DATADIR%%/params/O-Bassett-Lowke (discontinued).xtp
+%%DATADIR%%/params/O-ETS TramTrack.xtp
+%%DATADIR%%/params/O-ETS.xtp
+%%DATADIR%%/params/O-Lehnhardt Tramrails.xtp
+%%DATADIR%%/params/O-Lenz.xtp
+%%DATADIR%%/params/O-RealTrax.xtp
+%%DATADIR%%/params/O-Ross.xtp
+%%DATADIR%%/params/O-atlaso3rail.xtp
+%%DATADIR%%/params/O-nmra-lapped.xtp
+%%DATADIR%%/params/On14mm KBScale.xtp
+%%DATADIR%%/params/On30-FastTrack.xtp
+%%DATADIR%%/params/On30-Guy.xtp
+%%DATADIR%%/params/On30-Interfaceplates.xtp
+%%DATADIR%%/params/On30.xtp
+%%DATADIR%%/params/Peco-On30.xtp
+%%DATADIR%%/params/Piko-A.xtp
+%%DATADIR%%/params/Piko-g.xtp
+%%DATADIR%%/params/ProZ-Track.xtp
+%%DATADIR%%/params/Proto-AmSlotCar.xtp
+%%DATADIR%%/params/RSLaserKits.xtp
+%%DATADIR%%/params/RocoGeoLineHO.xtp
+%%DATADIR%%/params/S-AmericanModel.xtp
+%%DATADIR%%/params/S-MTH S-Trax.xtp
+%%DATADIR%%/params/S-SHelper S-Trax.xtp
+%%DATADIR%%/params/S-Trax.xtp
+%%DATADIR%%/params/S_ACG_18.824in Radius Track.xtp
+%%DATADIR%%/params/S_ACG_20.000 Track.xtp
+%%DATADIR%%/params/SideTrk.xtp
+%%DATADIR%%/params/T-Eishindo.xtp
+%%DATADIR%%/params/TT-Kuehn.xtp
+%%DATADIR%%/params/TT-Roco-Turntable.xtp
+%%DATADIR%%/params/TT-TilligAdvBeddingTrack.xtp
+%%DATADIR%%/params/TT-Trak Modules.xtp
+%%DATADIR%%/params/TTi-AuhagenNG.xtp
+%%DATADIR%%/params/Tables (all scales).xtp
+%%DATADIR%%/params/TilligAdvTT.xtp
+%%DATADIR%%/params/TilligH0EliteCode83.xtp
+%%DATADIR%%/params/TilligH0e.xtp
+%%DATADIR%%/params/TilligH0m.xtp
+%%DATADIR%%/params/TilligTTModellGS.xtp
+%%DATADIR%%/params/USA-G.xtp
+%%DATADIR%%/params/Woodland.xtp
+%%DATADIR%%/params/Z-Atlas55.xtp
+%%DATADIR%%/params/Z-Fasttrack.xtp
+%%DATADIR%%/params/Z-Peco60.xtp
+%%DATADIR%%/params/Z-Rokuhan.xtp
+%%DATADIR%%/params/Z-T-Trak.xtp
+%%DATADIR%%/params/accurail.xtp
+%%DATADIR%%/params/amb-n.xtp
+%%DATADIR%%/params/arnold.xtp
+%%DATADIR%%/params/atl83ho.xtp
+%%DATADIR%%/params/atlascho.xtp
+%%DATADIR%%/params/atlascn.xtp
+%%DATADIR%%/params/atlaseho.xtp
+%%DATADIR%%/params/atlasen.xtp
+%%DATADIR%%/params/atlasn.xtp
+%%DATADIR%%/params/atlaso2rail.xtp
+%%DATADIR%%/params/bach-n.xtp
+%%DATADIR%%/params/br.xtp
+%%DATADIR%%/params/busch-HOf.xtp
+%%DATADIR%%/params/ctlpanel.xtp
+%%DATADIR%%/params/dpm-ho.xtp
+%%DATADIR%%/params/dpm-n.xtp
+%%DATADIR%%/params/eu.xtp
+%%DATADIR%%/params/fallerho.xtp
+%%DATADIR%%/params/fl-model.xtp
+%%DATADIR%%/params/fl-profi.xtp
+%%DATADIR%%/params/flnpicco.xtp
+%%DATADIR%%/params/gargrv-o.xtp
+%%DATADIR%%/params/ho-amb.xtp
+%%DATADIR%%/params/ho-barm.xtp
+%%DATADIR%%/params/ho-blair.xtp
+%%DATADIR%%/params/ho-branc.xtp
+%%DATADIR%%/params/ho-campb.xtp
+%%DATADIR%%/params/ho-craft.xtp
+%%DATADIR%%/params/ho-fos.xtp
+%%DATADIR%%/params/ho-jlinn.xtp
+%%DATADIR%%/params/ho-ncb-roads.xtp
+%%DATADIR%%/params/hon3-peco.xtp
+%%DATADIR%%/params/hornby3r.xtp
+%%DATADIR%%/params/hubner1.xtp
+%%DATADIR%%/params/kato-ho.xtp
+%%DATADIR%%/params/kato-n-DblTrk.xtp
+%%DATADIR%%/params/kato-n.xtp
+%%DATADIR%%/params/lgb.xtp
+%%DATADIR%%/params/marcway-EM.xtp
+%%DATADIR%%/params/me-ho.xtp
+%%DATADIR%%/params/minitrix.xtp
+%%DATADIR%%/params/mp-n.xtp
+%%DATADIR%%/params/mrkholde.xtp
+%%DATADIR%%/params/mrkhomde.xtp
+%%DATADIR%%/params/mrkln1.xtp
+%%DATADIR%%/params/mrklnhoc-de.xtp
+%%DATADIR%%/params/mrklnhoc.xtp
+%%DATADIR%%/params/mrklnhok.xtp
+%%DATADIR%%/params/mrklnhom.xtp
+%%DATADIR%%/params/mrklnz.xtp
+%%DATADIR%%/params/mtl-z.xtp
+%%DATADIR%%/params/nmra-0-lapped.xtp
+%%DATADIR%%/params/nmra-ho.xtp
+%%DATADIR%%/params/nmra-ho3.xtp
+%%DATADIR%%/params/nmra-n.xtp
+%%DATADIR%%/params/nmra-o.xtp
+%%DATADIR%%/params/nmra-o3.xtp
+%%DATADIR%%/params/nmra-s.xtp
+%%DATADIR%%/params/nmra-tt.xtp
+%%DATADIR%%/params/nmra-z.xtp
+%%DATADIR%%/params/p4.xtp
+%%DATADIR%%/params/peco turntable wo routes.xtp
+%%DATADIR%%/params/peco-O-Bullhead.xtp
+%%DATADIR%%/params/pecohom.xtp
+%%DATADIR%%/params/pecohon30.xtp
+%%DATADIR%%/params/pikestuf.xtp
+%%DATADIR%%/params/protoam.xtp
+%%DATADIR%%/params/protosteam.xtp
+%%DATADIR%%/params/prototype-de.xtp
+%%DATADIR%%/params/revell.xtp
+%%DATADIR%%/params/rocho100.xtp
+%%DATADIR%%/params/rocho83.xtp
+%%DATADIR%%/params/signals_HO.xtp
+%%DATADIR%%/params/smltown.xtp
+%%DATADIR%%/params/supero.xtp
+%%DATADIR%%/params/t-trak-notes.txt
+%%DATADIR%%/params/t-trak.xtp
+%%DATADIR%%/params/taylor-ho.xtp
+%%DATADIR%%/params/tomix-n.xtp
+%%DATADIR%%/params/toolkit-n.xtp
+%%DATADIR%%/params/tortoise.xtp
+%%DATADIR%%/params/trees.xtp
+%%DATADIR%%/params/walth-bkgrd-ho.xtp
+%%DATADIR%%/params/walth-ho.xtp
+%%DATADIR%%/params/walth-n.xtp
+%%DATADIR%%/params/wlthho10.xtp
+%%DATADIR%%/params/wlthho83.xtp
+%%DATADIR%%/xdg-open
+%%DATADIR%%/xtrkcad.tip
+%%DATADIR%%/xtrkcad.xtq



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901131034.x0DAY7TW098037>