Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Nov 2001 06:41:44 -0800 (PST)
From:      David Wolfskill <david@catwhisker.org>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/32376: New port: GPS Manager (astro/gpsman)
Message-ID:  <200111291441.fATEfi489062@bunrab.catwhisker.org>

next in thread | raw e-mail | index | archive | help

>Number:         32376
>Category:       ports
>Synopsis:       New port: GPS Manager (astro/gpsman)
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Nov 29 06:50:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     David Wolfskill
>Release:        FreeBSD 4.4-STABLE i386
>Organization:
Wolfskill & Dowling residence
>Environment:
System: FreeBSD bunrab.catwhisker.org 4.4-STABLE FreeBSD 4.4-STABLE #5: Sun Nov 25 09:56:28 PST 2001 root@freebeast.catwhisker.org:/common/S1/obj/usr/src/sys/BUNRAB i386


>Description:
	GPSMan (GPS Manager) is a Tcl-based graphical manager of
	GPS data that makes possible the preparation, inspection
	and edition of GPS data in a friendly environment. GPSMan
	supports communication and real-time logging with both
	Garmin and Lowrance receivers and accepts real-time logging
	information in NMEA from any GPS receiver.

	This is my first try at port-construction, so I'm expecting that
	there will be several places where the port may be improved.  In
	particular, handling of ${PREFIX} was rather a hack, since I
	didn't find much in the way of guidance for adjusting such
	things in non-compiled code.  In any case, I would be pleased to
	be able to work with someone to get the port improved.

	I have corresponded with the author of GPSMan, and he seemed
	appreciative of the effort.

>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	./Makefile
#	./pkg-comment
#	./pkg-descr
#	./pkg-plist
#	./distinfo
#	./files/patch-gpsman.tcl
#	./files/patch-exerciser.tcl
#	./pkg-message
#
echo x - ./Makefile
sed 's/^X//' >./Makefile << 'END-of-./Makefile'
X# New ports collection makefile for:	gpsman
X# Date created:		26 November 2001
X# Whom:			David Wolfskill
X#
X# $FreeBSD$
X#
X
XPORTNAME=	gpsman
XPORTVERSION=	5.4.1
XCATEGORIES=	astro tk83
X#		ftp://sunsite.unc.edu/pub/Linux/science/cartography/
XMASTER_SITES=	http://www.ncc.up.pt/~mig/gpsmanhtml/ \
X		${MASTER_SITE_SUNSITE}
XMASTER_SITE_SUBDIR=	science/cartography
X
XMAINTAINER=	david@catwhisker.org
X
XRUN_DEPENDS=	wish8.3:${PORTSDIR}/x11-toolkits/tk83
X
XEXTRACT_SUFX=	.tgz
X
XNO_BUILD=	yes
X
X# MAN1=		gpsman.1
X# MANCOMPRESSED=	yes
X
Xpre-install:
X	@${PERL} -pi -e "s:%%PREFIX%%:${PREFIX}:g" ${WRKSRC}/gpsman.tcl
X
Xdo-install:
X	@${MKDIR} ${PREFIX}/share/gpsman
X	@${MKDIR} ${PREFIX}/share/gpsman/gmsrc
X	${INSTALL_DATA} ${WRKSRC}/gmsrc/*.tcl ${PREFIX}/share/gpsman/gmsrc
X	@${MKDIR} ${PREFIX}/share/gpsman/gmicons
X	${INSTALL_DATA} ${WRKSRC}/gmsrc/gmicons/* ${PREFIX}/share/gpsman/gmicons
X	@${MKDIR} ${PREFIX}/share/gpsman/util
X	${INSTALL_DATA} ${WRKSRC}/util/*.sh ${PREFIX}/share/gpsman/util
X	${INSTALL_DATA} ${WRKSRC}/util/*.tcl ${PREFIX}/share/gpsman/util
X	${INSTALL_SCRIPT} ${WRKSRC}/gpsman.tcl ${PREFIX}/share/gpsman
X	${LN} -fs ${PREFIX}/share/gpsman/gpsman.tcl ${PREFIX}/bin/gpsman
X#	${INSTALL_MAN} ${WRKSRC}/gpsman.1 ${PREFIX}/man/man1
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${PREFIX}/share/doc/gpsman
X	${INSTALL_DATA} ${WRKSRC}/manual/*.pdf ${PREFIX}/share/doc/gpsman
X	${INSTALL_DATA} ${WRKSRC}/manual/*.ps ${PREFIX}/share/doc/gpsman
X	@${MKDIR} ${PREFIX}/share/doc/gpsman/html
X	${INSTALL_DATA} ${WRKSRC}/manual/html/*.html ${PREFIX}/share/doc/gpsman/html
X	${RM} ${PREFIX}/share/doc/gpsman/html/index.html
X	${LN} ${PREFIX}/share/doc/gpsman/html/GPSMandoc.html ${PREFIX}/share/doc/gpsman/html/index.html
X	${INSTALL_DATA} ${WRKSRC}/manual/html/*.gif ${PREFIX}/share/doc/gpsman/html
X	@${MKDIR} ${PREFIX}/share/doc/gpsman/html/info
X	${INSTALL_DATA} ${WRKSRC}/manual/html/info/*.gif ${PREFIX}/share/doc/gpsman/html/info
X	${INSTALL_DATA} ${WRKSRC}/manual/html/info/*.txt ${PREFIX}/share/doc/gpsman/html/info
X	${RM} ${PREFIX}/share/doc/gpsman/html/info/GPL.txt
X	${INSTALL_DATA} ${WRKSRC}/manual/html/info/*.ps ${PREFIX}/share/doc/gpsman/html/info
X	@${SED} -e "s:%%PREFIX%%:${PREFIX}:g" pkg-message
X.endif
X
X.include <bsd.port.mk>
END-of-./Makefile
echo x - ./pkg-comment
sed 's/^X//' >./pkg-comment << 'END-of-./pkg-comment'
XA Tcl/Tk-based GPS management utility
END-of-./pkg-comment
echo x - ./pkg-descr
sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr'
XGPS Manager (GPSMan) is a graphical manager of GPS data that
Xmakes possible the preparation, inspection and edition of GPS data in
Xa friendly environment. GPSMan supports communication and real-time
Xlogging with both Garmin and Lowrance receivers and accepts real-time
Xlogging information in NMEA from any GPS receiver.
X
XWWW:	http://www.ncc.up.pt/~mig/gpsman.html
X- by Miguel Filgueiras
X- ported to FreeBSD by David Wolfskill <freebsd@catwhisker.org>
END-of-./pkg-descr
echo x - ./pkg-plist
sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist'
Xbin/gpsman
X@comment share/gpsman/LICENSE
Xshare/gpsman/gmicons/1st_aid15x15.gif
Xshare/gpsman/gmicons/MOB15x15.gif
Xshare/gpsman/gmicons/RV_park15x15.gif
Xshare/gpsman/gmicons/WP_buoy_white15x15.gif
Xshare/gpsman/gmicons/WP_dot15x15.gif
Xshare/gpsman/gmicons/airport15x15.gif
Xshare/gpsman/gmicons/amusement_park15x15.gif
Xshare/gpsman/gmicons/anchor15x15.gif
Xshare/gpsman/gmicons/avn_danger15x15.gif
Xshare/gpsman/gmicons/avn_ndb15x15.gif
Xshare/gpsman/gmicons/avn_tacan15x15.gif
Xshare/gpsman/gmicons/avn_vor15x15.gif
Xshare/gpsman/gmicons/avn_vordme15x15.gif
Xshare/gpsman/gmicons/avn_vortac15x15.gif
Xshare/gpsman/gmicons/ball15x15.gif
Xshare/gpsman/gmicons/beach15x15.gif
Xshare/gpsman/gmicons/bell15x15.gif
Xshare/gpsman/gmicons/boat15x15.gif
Xshare/gpsman/gmicons/boat_ramp15x15.gif
Xshare/gpsman/gmicons/bowling15x15.gif
Xshare/gpsman/gmicons/bridge15x15.gif
Xshare/gpsman/gmicons/brokenline.bmp
Xshare/gpsman/gmicons/building15x15.gif
Xshare/gpsman/gmicons/buoy_amber15x15.gif
Xshare/gpsman/gmicons/buoy_black15x15.gif
Xshare/gpsman/gmicons/buoy_blue15x15.gif
Xshare/gpsman/gmicons/buoy_green15x15.gif
Xshare/gpsman/gmicons/buoy_green_red15x15.gif
Xshare/gpsman/gmicons/buoy_green_white15x15.gif
Xshare/gpsman/gmicons/buoy_orange15x15.gif
Xshare/gpsman/gmicons/buoy_red15x15.gif
Xshare/gpsman/gmicons/buoy_red_green15x15.gif
Xshare/gpsman/gmicons/buoy_red_white15x15.gif
Xshare/gpsman/gmicons/buoy_violet15x15.gif
Xshare/gpsman/gmicons/buoy_white15x15.gif
Xshare/gpsman/gmicons/buoy_white_green15x15.gif
Xshare/gpsman/gmicons/buoy_white_red15x15.gif
Xshare/gpsman/gmicons/camping15x15.gif
Xshare/gpsman/gmicons/capitol_city15x15.gif
Xshare/gpsman/gmicons/car15x15.gif
Xshare/gpsman/gmicons/car_rental15x15.gif
Xshare/gpsman/gmicons/car_repair15x15.gif
Xshare/gpsman/gmicons/castle15x15.gif
Xshare/gpsman/gmicons/cemetery15x15.gif
Xshare/gpsman/gmicons/chapel15x15.gif
Xshare/gpsman/gmicons/church15x15.gif
Xshare/gpsman/gmicons/circle_x15x15.gif
Xshare/gpsman/gmicons/controlled15x15.gif
Xshare/gpsman/gmicons/crossing15x15.gif
Xshare/gpsman/gmicons/dam15x15.gif
Xshare/gpsman/gmicons/danger15x15.gif
Xshare/gpsman/gmicons/danger_avn15x15.gif
Xshare/gpsman/gmicons/deer15x15.gif
Xshare/gpsman/gmicons/diamond_green15x15.gif
Xshare/gpsman/gmicons/diamond_red15x15.gif
Xshare/gpsman/gmicons/diver_down_115x15.gif
Xshare/gpsman/gmicons/dollar15x15.gif
Xshare/gpsman/gmicons/dot15x15.gif
Xshare/gpsman/gmicons/drinking_water15x15.gif
Xshare/gpsman/gmicons/duck15x15.gif
Xshare/gpsman/gmicons/elevation15x15.gif
Xshare/gpsman/gmicons/exit15x15.gif
Xshare/gpsman/gmicons/exit_no_serv15x15.gif
Xshare/gpsman/gmicons/factory15x15.gif
Xshare/gpsman/gmicons/fastfood15x15.gif
Xshare/gpsman/gmicons/fish15x15.gif
Xshare/gpsman/gmicons/fitness15x15.gif
Xshare/gpsman/gmicons/flag15x15.gif
Xshare/gpsman/gmicons/freeway15x15.gif
Xshare/gpsman/gmicons/fuel15x15.gif
Xshare/gpsman/gmicons/fuel_store15x15.gif
Xshare/gpsman/gmicons/geo_name_land15x15.gif
Xshare/gpsman/gmicons/geo_name_man15x15.gif
Xshare/gpsman/gmicons/geo_name_water15x15.gif
Xshare/gpsman/gmicons/glider15x15.gif
Xshare/gpsman/gmicons/golf15x15.gif
Xshare/gpsman/gmicons/gpsman-logo-small.gif
Xshare/gpsman/gmicons/gpsman-logo.gif
Xshare/gpsman/gmicons/heliport15x15.gif
Xshare/gpsman/gmicons/horn15x15.gif
Xshare/gpsman/gmicons/house15x15.gif
Xshare/gpsman/gmicons/info15x15.gif
Xshare/gpsman/gmicons/intersection15x15.gif
Xshare/gpsman/gmicons/is_highway15x15.gif
Xshare/gpsman/gmicons/knife_fork15x15.gif
Xshare/gpsman/gmicons/ladder15x15.gif
Xshare/gpsman/gmicons/landing15x15.gif
Xshare/gpsman/gmicons/large_city15x15.gif
Xshare/gpsman/gmicons/large_exit_ns15x15.gif
Xshare/gpsman/gmicons/large_ramp_int15x15.gif
Xshare/gpsman/gmicons/levee15x15.gif
Xshare/gpsman/gmicons/light15x15.gif
Xshare/gpsman/gmicons/linestipple.bmp
Xshare/gpsman/gmicons/lodging15x15.gif
Xshare/gpsman/gmicons/many_fish15x15.gif
Xshare/gpsman/gmicons/many_tracks15x15.gif
Xshare/gpsman/gmicons/mark_x15x15.gif
Xshare/gpsman/gmicons/medium_city15x15.gif
Xshare/gpsman/gmicons/mile_marker15x15.gif
Xshare/gpsman/gmicons/mine15x15.gif
Xshare/gpsman/gmicons/monument15x15.gif
Xshare/gpsman/gmicons/mountains15x15.gif
Xshare/gpsman/gmicons/movie15x15.gif
Xshare/gpsman/gmicons/mug15x15.gif
Xshare/gpsman/gmicons/museum15x15.gif
Xshare/gpsman/gmicons/ntl_highway15x15.gif
Xshare/gpsman/gmicons/null15x15.gif
Xshare/gpsman/gmicons/null_215x15.gif
Xshare/gpsman/gmicons/oil_field15x15.gif
Xshare/gpsman/gmicons/parachute15x15.gif
Xshare/gpsman/gmicons/park15x15.gif
Xshare/gpsman/gmicons/parking15x15.gif
Xshare/gpsman/gmicons/pharmacy15x15.gif
Xshare/gpsman/gmicons/phone15x15.gif
Xshare/gpsman/gmicons/picnic15x15.gif
Xshare/gpsman/gmicons/pizza15x15.gif
Xshare/gpsman/gmicons/police15x15.gif
Xshare/gpsman/gmicons/post_office15x15.gif
Xshare/gpsman/gmicons/private15x15.gif
Xshare/gpsman/gmicons/ramp_int15x15.gif
Xshare/gpsman/gmicons/redframe17x17.gif
Xshare/gpsman/gmicons/restricted15x15.gif
Xshare/gpsman/gmicons/restrooms15x15.gif
Xshare/gpsman/gmicons/scenic15x15.gif
Xshare/gpsman/gmicons/school15x15.gif
Xshare/gpsman/gmicons/seaplane15x15.gif
Xshare/gpsman/gmicons/shopping_cart15x15.gif
Xshare/gpsman/gmicons/short_tower15x15.gif
Xshare/gpsman/gmicons/showers15x15.gif
Xshare/gpsman/gmicons/skiing15x15.gif
Xshare/gpsman/gmicons/skull15x15.gif
Xshare/gpsman/gmicons/small_city15x15.gif
Xshare/gpsman/gmicons/soft_field15x15.gif
Xshare/gpsman/gmicons/square_green15x15.gif
Xshare/gpsman/gmicons/square_red15x15.gif
Xshare/gpsman/gmicons/st_highway15x15.gif
Xshare/gpsman/gmicons/stadium15x15.gif
Xshare/gpsman/gmicons/store15x15.gif
Xshare/gpsman/gmicons/street_int15x15.gif
Xshare/gpsman/gmicons/summit15x15.gif
Xshare/gpsman/gmicons/swimming15x15.gif
Xshare/gpsman/gmicons/take_off15x15.gif
Xshare/gpsman/gmicons/tall_tower15x15.gif
Xshare/gpsman/gmicons/theater15x15.gif
Xshare/gpsman/gmicons/toll15x15.gif
Xshare/gpsman/gmicons/traceback15x15.gif
Xshare/gpsman/gmicons/tracks15x15.gif
Xshare/gpsman/gmicons/trail_head15x15.gif
Xshare/gpsman/gmicons/tree15x15.gif
Xshare/gpsman/gmicons/truck_stop15x15.gif
Xshare/gpsman/gmicons/tunnel15x15.gif
Xshare/gpsman/gmicons/ultralight15x15.gif
Xshare/gpsman/gmicons/us_highway15x15.gif
Xshare/gpsman/gmicons/weight_station15x15.gif
Xshare/gpsman/gmicons/wreck15x15.gif
Xshare/gpsman/gmicons/zoo15x15.gif
Xshare/gpsman/gmsrc/acccomp.tcl
Xshare/gpsman/gmsrc/check.tcl
Xshare/gpsman/gmsrc/cluster.tcl
Xshare/gpsman/gmsrc/compute.tcl
Xshare/gpsman/gmsrc/datumell.tcl
Xshare/gpsman/gmsrc/files.tcl
Xshare/gpsman/gmsrc/garmin.tcl
Xshare/gpsman/gmsrc/garmin_nmea.tcl
Xshare/gpsman/gmsrc/garmin_protocols.tcl
Xshare/gpsman/gmsrc/garmin_symbols.tcl
Xshare/gpsman/gmsrc/gdata.tcl
Xshare/gpsman/gmsrc/gendials.tcl
Xshare/gpsman/gmsrc/geod.tcl
Xshare/gpsman/gmsrc/gpsinfo.tcl
Xshare/gpsman/gmsrc/isolatin1.tcl
Xshare/gpsman/gmsrc/know.tcl
Xshare/gpsman/gmsrc/langdeutsch.tcl
Xshare/gpsman/gmsrc/langengl.tcl
Xshare/gpsman/gmsrc/langfr.tcl
Xshare/gpsman/gmsrc/langit.tcl
Xshare/gpsman/gmsrc/langport.tcl
Xshare/gpsman/gmsrc/lists.tcl
Xshare/gpsman/gmsrc/lowrance.tcl
Xshare/gpsman/gmsrc/lowrance_nmea.tcl
Xshare/gpsman/gmsrc/lowrance_symbols.tcl
Xshare/gpsman/gmsrc/main.tcl
Xshare/gpsman/gmsrc/map.tcl
Xshare/gpsman/gmsrc/mapanim.tcl
Xshare/gpsman/gmsrc/maptransf.tcl
Xshare/gpsman/gmsrc/options.tcl
Xshare/gpsman/gmsrc/posncomp.tcl
Xshare/gpsman/gmsrc/projections.tcl
Xshare/gpsman/gmsrc/realtime.tcl
Xshare/gpsman/gmsrc/recdefs.tcl
Xshare/gpsman/gmsrc/recmodels.tcl
Xshare/gpsman/gmsrc/rgb.tcl
Xshare/gpsman/gmsrc/search.tcl
Xshare/gpsman/gmsrc/symbols.tcl
Xshare/gpsman/gmsrc/trtort.tcl
Xshare/gpsman/gmsrc/util.tcl
Xshare/gpsman/gmsrc/wrtdials.tcl
Xshare/gpsman/gpsman.tcl
Xshare/gpsman/util/exerciser.tcl
Xshare/gpsman/util/gpsman.sh
Xshare/gpsman/util/mb2gmn.tcl
X%%PORTDOCS%%share/doc/gpsman/GPSMandoc.pdf
X%%PORTDOCS%%share/doc/gpsman/GPSMandoc.ps
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc.html
X%%PORTDOCS%%share/doc/gpsman/html/index.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_1.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_2.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_3.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_4.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_5.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_6.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_7.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_8.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_9.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_10.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_11.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_12.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_13.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_14.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_15.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_16.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_17.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_18.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_19.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_20.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_21.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_22.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_23.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_24.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_25.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_26.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_27.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_28.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_29.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_30.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_31.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_32.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_33.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_34.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_35.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_36.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_37.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_38.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_39.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_40.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_41.html
X%%PORTDOCS%%share/doc/gpsman/html/GPSMandoc_42.html
X%%PORTDOCS%%share/doc/gpsman/html/backgr.gif
X%%PORTDOCS%%share/doc/gpsman/html/blank.gif
X%%PORTDOCS%%share/doc/gpsman/html/boxes.gif
X%%PORTDOCS%%share/doc/gpsman/html/eqn1.gif
X%%PORTDOCS%%share/doc/gpsman/html/gpsman-logo-small.gif
X%%PORTDOCS%%share/doc/gpsman/html/gpsman-logo.gif
X@comment %%PORTDOCS%%share/doc/gpsman/html/info/GPL.txt
X%%PORTDOCS%%share/doc/gpsman/html/info/WPs.txt
X%%PORTDOCS%%share/doc/gpsman/html/info/coords.gif
X%%PORTDOCS%%share/doc/gpsman/html/info/l_realtime.doc.txt
X%%PORTDOCS%%share/doc/gpsman/html/info/lowrance.doc.txt
X%%PORTDOCS%%share/doc/gpsman/html/info/sample.txt
X%%PORTDOCS%%share/doc/gpsman/html/info/samplecpt.txt
X%%PORTDOCS%%share/doc/gpsman/html/info/samplemap.gif
X%%PORTDOCS%%share/doc/gpsman/html/info/samplemap.ps
X%%PORTDOCS%%share/doc/gpsman/html/info/sampletrrt.gif
X%%PORTDOCS%%share/doc/gpsman/html/next.gif
X%%PORTDOCS%%share/doc/gpsman/html/previous.gif
X%%PORTDOCS%%share/doc/gpsman/html/up.gif
END-of-./pkg-plist
echo x - ./distinfo
sed 's/^X//' >./distinfo << 'END-of-./distinfo'
XMD5 (gpsman-5.4.1.tgz) = 1496631c90900a9419f257bacf4cdfd8
END-of-./distinfo
echo x - ./files/patch-gpsman.tcl
sed 's/^X//' >./files/patch-gpsman.tcl << 'END-of-./files/patch-gpsman.tcl'
Xdiff -ruN gpsman.tcl gpsman.tcl
X--- gpsman.tcl	Mon Nov 26 03:34:12 2001
X+++ gpsman.tcl	Mon Nov 26 16:48:56 2001
X@@ -1,6 +1,6 @@
X #!/bin/sh
X # This is a Tcl/Tk script to be interpreted by wish (Tk8.2 or better): \
X-exec wish "$0" "$@"
X+exec wish8.3 "$0" "$@"
X 
X #
X #  gpsman --- GPS Manager: a manager for GPS receiver data
X@@ -103,7 +103,7 @@
X 	# on Unix systems the path may be passed as an argument
X 	set SERIALPORT [lindex $argv 0]
X 	# otherwise the default is
X-	set DEFSPORT /dev/ttyS0
X+	set DEFSPORT /dev/cuaa0
X 	# path to directory containing user data
X 	set USERDIR ~/.gpsman-dir
X 	# name of user preferences file
X@@ -121,7 +121,7 @@
X }
X 
X  # path to directory containing program files
X-set SRCDIR gmsrc
X+set SRCDIR %%PREFIX%%/share/gpsman/gmsrc
X 
X ## the following values can be set from the options dialog of the interface
X 
END-of-./files/patch-gpsman.tcl
echo x - ./files/patch-exerciser.tcl
sed 's/^X//' >./files/patch-exerciser.tcl << 'END-of-./files/patch-exerciser.tcl'
Xdiff -ruN util/exerciser.tcl util/exerciser.tcl
X--- util/exerciser.tcl	Mon Nov 26 03:34:12 2001
X+++ util/exerciser.tcl	Mon Nov 26 16:48:56 2001
X@@ -1,8 +1,8 @@
X #!/bin/bash
X #\
X-exec wish8.2 "$0" ${1+"$@"}
X+exec wish8.3 "$0" ${1+"$@"}
X 
X-set SRLPORT /dev/ttyS0
X+set SRLPORT /dev/cuaa0
X set BaudRate 4800
X set Hours "0"
X set Minutes "0"
END-of-./files/patch-exerciser.tcl
echo x - ./pkg-message
sed 's/^X//' >./pkg-message << 'END-of-./pkg-message'
X
XPlease see file:%%PREFIX%%/share/doc/gpsman/html/index.html and/or
Xfile:%%PREFIX%%/share/doc/gpsman/GPSMandoc.ps or
Xfile:%%PREFIX%%/share/doc/gpsman/GPSMandoc.pdf for documentation on using GPS
XManager.
X
END-of-./pkg-message
exit

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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