Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jan 1999 16:02:53 PST
From:      Bill Fenner <fenner@parc.xerox.com>
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   ports/9786: tk80 port doesn't create man page links
Message-ID:  <199901300002.QAA22592@mango.parc.xerox.com>

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

>Number:         9786
>Category:       ports
>Synopsis:       tk80 port doesn't create man page links
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jan 29 16:10:01 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Bill Fenner
>Release:        FreeBSD 2.2.6-RELEASE i386
>Organization:
Xerox
>Environment:


>Description:

The tk80 port doesn't create the man page links, because the Makefile
was modified to install compressed man pages but the program that
creates the links was not modified to know about it.

>How-To-Repeat:

cd /usr/ports/x11-toolkits/tk80
make install
man Tk_BindEvent

>Fix:
	
Add this patch to the port, and add the new files to the PLIST.
This is one of those unfortunate types of changes that causes a
patch to be less efficient than replacing the entire file (or using
"sed").

--- mkLinks.orig	Fri Jan 29 15:55:49 1999
+++ mkLinks	Fri Jan 29 15:56:43 1999
@@ -2,10 +2,10 @@
 # This script is invoked when installing manual entries.  It generates
 # additional links to manual entries, corresponding to the procedure
 # and command names described by the manual entry.  For example, the
-# Tcl manual entry Hash.3 describes procedures Tcl_InitHashTable,
+# Tcl manual entry Hash.3.gz describes procedures Tcl_InitHashTable,
 # Tcl_CreateHashEntry, and many more.  This script will make hard
-# links so that Tcl_InitHashTable.3, Tcl_CreateHashEntry.3, and so
-# on all refer to Hash.3 in the installed directory.
+# links so that Tcl_InitHashTable.3.gz, Tcl_CreateHashEntry.3.gz, and so
+# on all refer to Hash.3.gz in the installed directory.
 #
 # Because of the length of command and procedure names, this mechanism
 # only works on machines that support file names longer than 14 characters.
@@ -28,856 +28,856 @@
     exit
 fi
 
-if test -r 3DBorder.3; then
-    rm -f Tk_Get3DBorder.3
-    ln 3DBorder.3 Tk_Get3DBorder.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_Get3DBorder.3.gz
+    ln 3DBorder.3.gz Tk_Get3DBorder.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_Draw3DRectangle.3
-    ln 3DBorder.3 Tk_Draw3DRectangle.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_Draw3DRectangle.3.gz
+    ln 3DBorder.3.gz Tk_Draw3DRectangle.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_Fill3DRectangle.3
-    ln 3DBorder.3 Tk_Fill3DRectangle.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_Fill3DRectangle.3.gz
+    ln 3DBorder.3.gz Tk_Fill3DRectangle.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_Draw3DPolygon.3
-    ln 3DBorder.3 Tk_Draw3DPolygon.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_Draw3DPolygon.3.gz
+    ln 3DBorder.3.gz Tk_Draw3DPolygon.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_Fill3DPolygon.3
-    ln 3DBorder.3 Tk_Fill3DPolygon.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_Fill3DPolygon.3.gz
+    ln 3DBorder.3.gz Tk_Fill3DPolygon.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_3DVerticalBevel.3
-    ln 3DBorder.3 Tk_3DVerticalBevel.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_3DVerticalBevel.3.gz
+    ln 3DBorder.3.gz Tk_3DVerticalBevel.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_3DHorizontalBevel.3
-    ln 3DBorder.3 Tk_3DHorizontalBevel.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_3DHorizontalBevel.3.gz
+    ln 3DBorder.3.gz Tk_3DHorizontalBevel.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_SetBackgroundFromBorder.3
-    ln 3DBorder.3 Tk_SetBackgroundFromBorder.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_SetBackgroundFromBorder.3.gz
+    ln 3DBorder.3.gz Tk_SetBackgroundFromBorder.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_NameOf3DBorder.3
-    ln 3DBorder.3 Tk_NameOf3DBorder.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_NameOf3DBorder.3.gz
+    ln 3DBorder.3.gz Tk_NameOf3DBorder.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_3DBorderColor.3
-    ln 3DBorder.3 Tk_3DBorderColor.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_3DBorderColor.3.gz
+    ln 3DBorder.3.gz Tk_3DBorderColor.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_3DBorderGC.3
-    ln 3DBorder.3 Tk_3DBorderGC.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_3DBorderGC.3.gz
+    ln 3DBorder.3.gz Tk_3DBorderGC.3.gz
 fi
-if test -r 3DBorder.3; then
-    rm -f Tk_Free3DBorder.3
-    ln 3DBorder.3 Tk_Free3DBorder.3
+if test -r 3DBorder.3.gz; then
+    rm -f Tk_Free3DBorder.3.gz
+    ln 3DBorder.3.gz Tk_Free3DBorder.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_CreateBindingTable.3
-    ln BindTable.3 Tk_CreateBindingTable.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_CreateBindingTable.3.gz
+    ln BindTable.3.gz Tk_CreateBindingTable.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_DeleteBindingTable.3
-    ln BindTable.3 Tk_DeleteBindingTable.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_DeleteBindingTable.3.gz
+    ln BindTable.3.gz Tk_DeleteBindingTable.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_CreateBinding.3
-    ln BindTable.3 Tk_CreateBinding.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_CreateBinding.3.gz
+    ln BindTable.3.gz Tk_CreateBinding.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_DeleteBinding.3
-    ln BindTable.3 Tk_DeleteBinding.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_DeleteBinding.3.gz
+    ln BindTable.3.gz Tk_DeleteBinding.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_GetBinding.3
-    ln BindTable.3 Tk_GetBinding.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_GetBinding.3.gz
+    ln BindTable.3.gz Tk_GetBinding.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_GetAllBindings.3
-    ln BindTable.3 Tk_GetAllBindings.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_GetAllBindings.3.gz
+    ln BindTable.3.gz Tk_GetAllBindings.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_DeleteAllBindings.3
-    ln BindTable.3 Tk_DeleteAllBindings.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_DeleteAllBindings.3.gz
+    ln BindTable.3.gz Tk_DeleteAllBindings.3.gz
 fi
-if test -r BindTable.3; then
-    rm -f Tk_BindEvent.3
-    ln BindTable.3 Tk_BindEvent.3
+if test -r BindTable.3.gz; then
+    rm -f Tk_BindEvent.3.gz
+    ln BindTable.3.gz Tk_BindEvent.3.gz
 fi
-if test -r CanvPsY.3; then
-    rm -f Tk_CanvasPsY.3
-    ln CanvPsY.3 Tk_CanvasPsY.3
+if test -r CanvPsY.3.gz; then
+    rm -f Tk_CanvasPsY.3.gz
+    ln CanvPsY.3.gz Tk_CanvasPsY.3.gz
 fi
-if test -r CanvPsY.3; then
-    rm -f Tk_CanvasPsBitmap.3
-    ln CanvPsY.3 Tk_CanvasPsBitmap.3
+if test -r CanvPsY.3.gz; then
+    rm -f Tk_CanvasPsBitmap.3.gz
+    ln CanvPsY.3.gz Tk_CanvasPsBitmap.3.gz
 fi
-if test -r CanvPsY.3; then
-    rm -f Tk_CanvasPsColor.3
-    ln CanvPsY.3 Tk_CanvasPsColor.3
+if test -r CanvPsY.3.gz; then
+    rm -f Tk_CanvasPsColor.3.gz
+    ln CanvPsY.3.gz Tk_CanvasPsColor.3.gz
 fi
-if test -r CanvPsY.3; then
-    rm -f Tk_CanvasPsFont.3
-    ln CanvPsY.3 Tk_CanvasPsFont.3
+if test -r CanvPsY.3.gz; then
+    rm -f Tk_CanvasPsFont.3.gz
+    ln CanvPsY.3.gz Tk_CanvasPsFont.3.gz
 fi
-if test -r CanvPsY.3; then
-    rm -f Tk_CanvasPsPath.3
-    ln CanvPsY.3 Tk_CanvasPsPath.3
+if test -r CanvPsY.3.gz; then
+    rm -f Tk_CanvasPsPath.3.gz
+    ln CanvPsY.3.gz Tk_CanvasPsPath.3.gz
 fi
-if test -r CanvPsY.3; then
-    rm -f Tk_CanvasPsStipple.3
-    ln CanvPsY.3 Tk_CanvasPsStipple.3
+if test -r CanvPsY.3.gz; then
+    rm -f Tk_CanvasPsStipple.3.gz
+    ln CanvPsY.3.gz Tk_CanvasPsStipple.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasTkwin.3
-    ln CanvTkwin.3 Tk_CanvasTkwin.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasTkwin.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasTkwin.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasGetCoord.3
-    ln CanvTkwin.3 Tk_CanvasGetCoord.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasGetCoord.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasGetCoord.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasDrawableCoords.3
-    ln CanvTkwin.3 Tk_CanvasDrawableCoords.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasDrawableCoords.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasDrawableCoords.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasSetStippleOrigin.3
-    ln CanvTkwin.3 Tk_CanvasSetStippleOrigin.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasSetStippleOrigin.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasSetStippleOrigin.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasWindowCoords.3
-    ln CanvTkwin.3 Tk_CanvasWindowCoords.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasWindowCoords.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasWindowCoords.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasEventuallyRedraw.3
-    ln CanvTkwin.3 Tk_CanvasEventuallyRedraw.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasEventuallyRedraw.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasEventuallyRedraw.3.gz
 fi
-if test -r CanvTkwin.3; then
-    rm -f Tk_CanvasTagsOption.3
-    ln CanvTkwin.3 Tk_CanvasTagsOption.3
+if test -r CanvTkwin.3.gz; then
+    rm -f Tk_CanvasTagsOption.3.gz
+    ln CanvTkwin.3.gz Tk_CanvasTagsOption.3.gz
 fi
-if test -r CanvTxtInfo.3; then
-    rm -f Tk_CanvasTextInfo.3
-    ln CanvTxtInfo.3 Tk_CanvasTextInfo.3
+if test -r CanvTxtInfo.3.gz; then
+    rm -f Tk_CanvasTextInfo.3.gz
+    ln CanvTxtInfo.3.gz Tk_CanvasTextInfo.3.gz
 fi
-if test -r Clipboard.3; then
-    rm -f Tk_ClipboardClear.3
-    ln Clipboard.3 Tk_ClipboardClear.3
+if test -r Clipboard.3.gz; then
+    rm -f Tk_ClipboardClear.3.gz
+    ln Clipboard.3.gz Tk_ClipboardClear.3.gz
 fi
-if test -r Clipboard.3; then
-    rm -f Tk_ClipboardAppend.3
-    ln Clipboard.3 Tk_ClipboardAppend.3
+if test -r Clipboard.3.gz; then
+    rm -f Tk_ClipboardAppend.3.gz
+    ln Clipboard.3.gz Tk_ClipboardAppend.3.gz
 fi
-if test -r ClrSelect.3; then
-    rm -f Tk_ClearSelection.3
-    ln ClrSelect.3 Tk_ClearSelection.3
+if test -r ClrSelect.3.gz; then
+    rm -f Tk_ClearSelection.3.gz
+    ln ClrSelect.3.gz Tk_ClearSelection.3.gz
 fi
-if test -r ConfigWidg.3; then
-    rm -f Tk_ConfigureWidget.3
-    ln ConfigWidg.3 Tk_ConfigureWidget.3
+if test -r ConfigWidg.3.gz; then
+    rm -f Tk_ConfigureWidget.3.gz
+    ln ConfigWidg.3.gz Tk_ConfigureWidget.3.gz
 fi
-if test -r ConfigWidg.3; then
-    rm -f Tk_Offset.3
-    ln ConfigWidg.3 Tk_Offset.3
+if test -r ConfigWidg.3.gz; then
+    rm -f Tk_Offset.3.gz
+    ln ConfigWidg.3.gz Tk_Offset.3.gz
 fi
-if test -r ConfigWidg.3; then
-    rm -f Tk_ConfigureInfo.3
-    ln ConfigWidg.3 Tk_ConfigureInfo.3
+if test -r ConfigWidg.3.gz; then
+    rm -f Tk_ConfigureInfo.3.gz
+    ln ConfigWidg.3.gz Tk_ConfigureInfo.3.gz
 fi
-if test -r ConfigWidg.3; then
-    rm -f Tk_ConfigureValue.3
-    ln ConfigWidg.3 Tk_ConfigureValue.3
+if test -r ConfigWidg.3.gz; then
+    rm -f Tk_ConfigureValue.3.gz
+    ln ConfigWidg.3.gz Tk_ConfigureValue.3.gz
 fi
-if test -r ConfigWidg.3; then
-    rm -f Tk_FreeOptions.3
-    ln ConfigWidg.3 Tk_FreeOptions.3
+if test -r ConfigWidg.3.gz; then
+    rm -f Tk_FreeOptions.3.gz
+    ln ConfigWidg.3.gz Tk_FreeOptions.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_ConfigureWindow.3
-    ln ConfigWind.3 Tk_ConfigureWindow.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_ConfigureWindow.3.gz
+    ln ConfigWind.3.gz Tk_ConfigureWindow.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_MoveWindow.3
-    ln ConfigWind.3 Tk_MoveWindow.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_MoveWindow.3.gz
+    ln ConfigWind.3.gz Tk_MoveWindow.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_ResizeWindow.3
-    ln ConfigWind.3 Tk_ResizeWindow.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_ResizeWindow.3.gz
+    ln ConfigWind.3.gz Tk_ResizeWindow.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_MoveResizeWindow.3
-    ln ConfigWind.3 Tk_MoveResizeWindow.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_MoveResizeWindow.3.gz
+    ln ConfigWind.3.gz Tk_MoveResizeWindow.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_SetWindowBorderWidth.3
-    ln ConfigWind.3 Tk_SetWindowBorderWidth.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_SetWindowBorderWidth.3.gz
+    ln ConfigWind.3.gz Tk_SetWindowBorderWidth.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_ChangeWindowAttributes.3
-    ln ConfigWind.3 Tk_ChangeWindowAttributes.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_ChangeWindowAttributes.3.gz
+    ln ConfigWind.3.gz Tk_ChangeWindowAttributes.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_SetWindowBackground.3
-    ln ConfigWind.3 Tk_SetWindowBackground.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_SetWindowBackground.3.gz
+    ln ConfigWind.3.gz Tk_SetWindowBackground.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_SetWindowBackgroundPixmap.3
-    ln ConfigWind.3 Tk_SetWindowBackgroundPixmap.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_SetWindowBackgroundPixmap.3.gz
+    ln ConfigWind.3.gz Tk_SetWindowBackgroundPixmap.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_SetWindowBorder.3
-    ln ConfigWind.3 Tk_SetWindowBorder.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_SetWindowBorder.3.gz
+    ln ConfigWind.3.gz Tk_SetWindowBorder.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_SetWindowBorderPixmap.3
-    ln ConfigWind.3 Tk_SetWindowBorderPixmap.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_SetWindowBorderPixmap.3.gz
+    ln ConfigWind.3.gz Tk_SetWindowBorderPixmap.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_SetWindowColormap.3
-    ln ConfigWind.3 Tk_SetWindowColormap.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_SetWindowColormap.3.gz
+    ln ConfigWind.3.gz Tk_SetWindowColormap.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_DefineCursor.3
-    ln ConfigWind.3 Tk_DefineCursor.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_DefineCursor.3.gz
+    ln ConfigWind.3.gz Tk_DefineCursor.3.gz
 fi
-if test -r ConfigWind.3; then
-    rm -f Tk_UndefineCursor.3
-    ln ConfigWind.3 Tk_UndefineCursor.3
+if test -r ConfigWind.3.gz; then
+    rm -f Tk_UndefineCursor.3.gz
+    ln ConfigWind.3.gz Tk_UndefineCursor.3.gz
 fi
-if test -r CoordToWin.3; then
-    rm -f Tk_CoordsToWindow.3
-    ln CoordToWin.3 Tk_CoordsToWindow.3
+if test -r CoordToWin.3.gz; then
+    rm -f Tk_CoordsToWindow.3.gz
+    ln CoordToWin.3.gz Tk_CoordsToWindow.3.gz
 fi
-if test -r CrtErrHdlr.3; then
-    rm -f Tk_CreateErrorHandler.3
-    ln CrtErrHdlr.3 Tk_CreateErrorHandler.3
+if test -r CrtErrHdlr.3.gz; then
+    rm -f Tk_CreateErrorHandler.3.gz
+    ln CrtErrHdlr.3.gz Tk_CreateErrorHandler.3.gz
 fi
-if test -r CrtErrHdlr.3; then
-    rm -f Tk_DeleteErrorHandler.3
-    ln CrtErrHdlr.3 Tk_DeleteErrorHandler.3
+if test -r CrtErrHdlr.3.gz; then
+    rm -f Tk_DeleteErrorHandler.3.gz
+    ln CrtErrHdlr.3.gz Tk_DeleteErrorHandler.3.gz
 fi
-if test -r CrtGenHdlr.3; then
-    rm -f Tk_CreateGenericHandler.3
-    ln CrtGenHdlr.3 Tk_CreateGenericHandler.3
+if test -r CrtGenHdlr.3.gz; then
+    rm -f Tk_CreateGenericHandler.3.gz
+    ln CrtGenHdlr.3.gz Tk_CreateGenericHandler.3.gz
 fi
-if test -r CrtGenHdlr.3; then
-    rm -f Tk_DeleteGenericHandler.3
-    ln CrtGenHdlr.3 Tk_DeleteGenericHandler.3
+if test -r CrtGenHdlr.3.gz; then
+    rm -f Tk_DeleteGenericHandler.3.gz
+    ln CrtGenHdlr.3.gz Tk_DeleteGenericHandler.3.gz
 fi
-if test -r CrtImgType.3; then
-    rm -f Tk_CreateImageType.3
-    ln CrtImgType.3 Tk_CreateImageType.3
+if test -r CrtImgType.3.gz; then
+    rm -f Tk_CreateImageType.3.gz
+    ln CrtImgType.3.gz Tk_CreateImageType.3.gz
 fi
-if test -r CrtImgType.3; then
-    rm -f Tk_GetImageMasterData.3
-    ln CrtImgType.3 Tk_GetImageMasterData.3
+if test -r CrtImgType.3.gz; then
+    rm -f Tk_GetImageMasterData.3.gz
+    ln CrtImgType.3.gz Tk_GetImageMasterData.3.gz
 fi
-if test -r CrtItemType.3; then
-    rm -f Tk_CreateItemType.3
-    ln CrtItemType.3 Tk_CreateItemType.3
+if test -r CrtItemType.3.gz; then
+    rm -f Tk_CreateItemType.3.gz
+    ln CrtItemType.3.gz Tk_CreateItemType.3.gz
 fi
-if test -r CrtItemType.3; then
-    rm -f Tk_GetItemTypes.3
-    ln CrtItemType.3 Tk_GetItemTypes.3
+if test -r CrtItemType.3.gz; then
+    rm -f Tk_GetItemTypes.3.gz
+    ln CrtItemType.3.gz Tk_GetItemTypes.3.gz
 fi
-if test -r CrtPhImgFmt.3; then
-    rm -f Tk_CreatePhotoImageFormat.3
-    ln CrtPhImgFmt.3 Tk_CreatePhotoImageFormat.3
+if test -r CrtPhImgFmt.3.gz; then
+    rm -f Tk_CreatePhotoImageFormat.3.gz
+    ln CrtPhImgFmt.3.gz Tk_CreatePhotoImageFormat.3.gz
 fi
-if test -r CrtSelHdlr.3; then
-    rm -f Tk_CreateSelHandler.3
-    ln CrtSelHdlr.3 Tk_CreateSelHandler.3
+if test -r CrtSelHdlr.3.gz; then
+    rm -f Tk_CreateSelHandler.3.gz
+    ln CrtSelHdlr.3.gz Tk_CreateSelHandler.3.gz
 fi
-if test -r CrtSelHdlr.3; then
-    rm -f Tk_DeleteSelHandler.3
-    ln CrtSelHdlr.3 Tk_DeleteSelHandler.3
+if test -r CrtSelHdlr.3.gz; then
+    rm -f Tk_DeleteSelHandler.3.gz
+    ln CrtSelHdlr.3.gz Tk_DeleteSelHandler.3.gz
 fi
-if test -r CrtWindow.3; then
-    rm -f Tk_CreateWindow.3
-    ln CrtWindow.3 Tk_CreateWindow.3
+if test -r CrtWindow.3.gz; then
+    rm -f Tk_CreateWindow.3.gz
+    ln CrtWindow.3.gz Tk_CreateWindow.3.gz
 fi
-if test -r CrtWindow.3; then
-    rm -f Tk_CreateWindowFromPath.3
-    ln CrtWindow.3 Tk_CreateWindowFromPath.3
+if test -r CrtWindow.3.gz; then
+    rm -f Tk_CreateWindowFromPath.3.gz
+    ln CrtWindow.3.gz Tk_CreateWindowFromPath.3.gz
 fi
-if test -r CrtWindow.3; then
-    rm -f Tk_DestroyWindow.3
-    ln CrtWindow.3 Tk_DestroyWindow.3
+if test -r CrtWindow.3.gz; then
+    rm -f Tk_DestroyWindow.3.gz
+    ln CrtWindow.3.gz Tk_DestroyWindow.3.gz
 fi
-if test -r CrtWindow.3; then
-    rm -f Tk_MakeWindowExist.3
-    ln CrtWindow.3 Tk_MakeWindowExist.3
+if test -r CrtWindow.3.gz; then
+    rm -f Tk_MakeWindowExist.3.gz
+    ln CrtWindow.3.gz Tk_MakeWindowExist.3.gz
 fi
-if test -r DeleteImg.3; then
-    rm -f Tk_DeleteImage.3
-    ln DeleteImg.3 Tk_DeleteImage.3
+if test -r DeleteImg.3.gz; then
+    rm -f Tk_DeleteImage.3.gz
+    ln DeleteImg.3.gz Tk_DeleteImage.3.gz
 fi
-if test -r DrawFocHlt.3; then
-    rm -f Tk_DrawFocusHighlight.3
-    ln DrawFocHlt.3 Tk_DrawFocusHighlight.3
+if test -r DrawFocHlt.3.gz; then
+    rm -f Tk_DrawFocusHighlight.3.gz
+    ln DrawFocHlt.3.gz Tk_DrawFocusHighlight.3.gz
 fi
-if test -r EventHndlr.3; then
-    rm -f Tk_CreateEventHandler.3
-    ln EventHndlr.3 Tk_CreateEventHandler.3
+if test -r EventHndlr.3.gz; then
+    rm -f Tk_CreateEventHandler.3.gz
+    ln EventHndlr.3.gz Tk_CreateEventHandler.3.gz
 fi
-if test -r EventHndlr.3; then
-    rm -f Tk_DeleteEventHandler.3
-    ln EventHndlr.3 Tk_DeleteEventHandler.3
+if test -r EventHndlr.3.gz; then
+    rm -f Tk_DeleteEventHandler.3.gz
+    ln EventHndlr.3.gz Tk_DeleteEventHandler.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_FindPhoto.3
-    ln FindPhoto.3 Tk_FindPhoto.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_FindPhoto.3.gz
+    ln FindPhoto.3.gz Tk_FindPhoto.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoPutBlock.3
-    ln FindPhoto.3 Tk_PhotoPutBlock.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoPutBlock.3.gz
+    ln FindPhoto.3.gz Tk_PhotoPutBlock.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoPutZoomedBlock.3
-    ln FindPhoto.3 Tk_PhotoPutZoomedBlock.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoPutZoomedBlock.3.gz
+    ln FindPhoto.3.gz Tk_PhotoPutZoomedBlock.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoGetImage.3
-    ln FindPhoto.3 Tk_PhotoGetImage.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoGetImage.3.gz
+    ln FindPhoto.3.gz Tk_PhotoGetImage.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoBlank.3
-    ln FindPhoto.3 Tk_PhotoBlank.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoBlank.3.gz
+    ln FindPhoto.3.gz Tk_PhotoBlank.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoExpand.3
-    ln FindPhoto.3 Tk_PhotoExpand.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoExpand.3.gz
+    ln FindPhoto.3.gz Tk_PhotoExpand.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoGetSize.3
-    ln FindPhoto.3 Tk_PhotoGetSize.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoGetSize.3.gz
+    ln FindPhoto.3.gz Tk_PhotoGetSize.3.gz
 fi
-if test -r FindPhoto.3; then
-    rm -f Tk_PhotoSetSize.3
-    ln FindPhoto.3 Tk_PhotoSetSize.3
+if test -r FindPhoto.3.gz; then
+    rm -f Tk_PhotoSetSize.3.gz
+    ln FindPhoto.3.gz Tk_PhotoSetSize.3.gz
 fi
-if test -r FontId.3; then
-    rm -f Tk_FontId.3
-    ln FontId.3 Tk_FontId.3
+if test -r FontId.3.gz; then
+    rm -f Tk_FontId.3.gz
+    ln FontId.3.gz Tk_FontId.3.gz
 fi
-if test -r FontId.3; then
-    rm -f Tk_FontMetrics.3
-    ln FontId.3 Tk_FontMetrics.3
+if test -r FontId.3.gz; then
+    rm -f Tk_FontMetrics.3.gz
+    ln FontId.3.gz Tk_FontMetrics.3.gz
 fi
-if test -r FontId.3; then
-    rm -f Tk_PostscriptFontName.3
-    ln FontId.3 Tk_PostscriptFontName.3
+if test -r FontId.3.gz; then
+    rm -f Tk_PostscriptFontName.3.gz
+    ln FontId.3.gz Tk_PostscriptFontName.3.gz
 fi
-if test -r FreeXId.3; then
-    rm -f Tk_FreeXId.3
-    ln FreeXId.3 Tk_FreeXId.3
+if test -r FreeXId.3.gz; then
+    rm -f Tk_FreeXId.3.gz
+    ln FreeXId.3.gz Tk_FreeXId.3.gz
 fi
-if test -r GeomReq.3; then
-    rm -f Tk_GeometryRequest.3
-    ln GeomReq.3 Tk_GeometryRequest.3
+if test -r GeomReq.3.gz; then
+    rm -f Tk_GeometryRequest.3.gz
+    ln GeomReq.3.gz Tk_GeometryRequest.3.gz
 fi
-if test -r GeomReq.3; then
-    rm -f Tk_SetInternalBorder.3
-    ln GeomReq.3 Tk_SetInternalBorder.3
+if test -r GeomReq.3.gz; then
+    rm -f Tk_SetInternalBorder.3.gz
+    ln GeomReq.3.gz Tk_SetInternalBorder.3.gz
 fi
-if test -r GetAnchor.3; then
-    rm -f Tk_GetAnchor.3
-    ln GetAnchor.3 Tk_GetAnchor.3
+if test -r GetAnchor.3.gz; then
+    rm -f Tk_GetAnchor.3.gz
+    ln GetAnchor.3.gz Tk_GetAnchor.3.gz
 fi
-if test -r GetAnchor.3; then
-    rm -f Tk_NameOfAnchor.3
-    ln GetAnchor.3 Tk_NameOfAnchor.3
+if test -r GetAnchor.3.gz; then
+    rm -f Tk_NameOfAnchor.3.gz
+    ln GetAnchor.3.gz Tk_NameOfAnchor.3.gz
 fi
-if test -r GetBitmap.3; then
-    rm -f Tk_GetBitmap.3
-    ln GetBitmap.3 Tk_GetBitmap.3
+if test -r GetBitmap.3.gz; then
+    rm -f Tk_GetBitmap.3.gz
+    ln GetBitmap.3.gz Tk_GetBitmap.3.gz
 fi
-if test -r GetBitmap.3; then
-    rm -f Tk_DefineBitmap.3
-    ln GetBitmap.3 Tk_DefineBitmap.3
+if test -r GetBitmap.3.gz; then
+    rm -f Tk_DefineBitmap.3.gz
+    ln GetBitmap.3.gz Tk_DefineBitmap.3.gz
 fi
-if test -r GetBitmap.3; then
-    rm -f Tk_NameOfBitmap.3
-    ln GetBitmap.3 Tk_NameOfBitmap.3
+if test -r GetBitmap.3.gz; then
+    rm -f Tk_NameOfBitmap.3.gz
+    ln GetBitmap.3.gz Tk_NameOfBitmap.3.gz
 fi
-if test -r GetBitmap.3; then
-    rm -f Tk_SizeOfBitmap.3
-    ln GetBitmap.3 Tk_SizeOfBitmap.3
+if test -r GetBitmap.3.gz; then
+    rm -f Tk_SizeOfBitmap.3.gz
+    ln GetBitmap.3.gz Tk_SizeOfBitmap.3.gz
 fi
-if test -r GetBitmap.3; then
-    rm -f Tk_FreeBitmap.3
-    ln GetBitmap.3 Tk_FreeBitmap.3
+if test -r GetBitmap.3.gz; then
+    rm -f Tk_FreeBitmap.3.gz
+    ln GetBitmap.3.gz Tk_FreeBitmap.3.gz
 fi
-if test -r GetBitmap.3; then
-    rm -f Tk_GetBitmapFromData.3
-    ln GetBitmap.3 Tk_GetBitmapFromData.3
+if test -r GetBitmap.3.gz; then
+    rm -f Tk_GetBitmapFromData.3.gz
+    ln GetBitmap.3.gz Tk_GetBitmapFromData.3.gz
 fi
-if test -r GetCapStyl.3; then
-    rm -f Tk_GetCapStyle.3
-    ln GetCapStyl.3 Tk_GetCapStyle.3
+if test -r GetCapStyl.3.gz; then
+    rm -f Tk_GetCapStyle.3.gz
+    ln GetCapStyl.3.gz Tk_GetCapStyle.3.gz
 fi
-if test -r GetCapStyl.3; then
-    rm -f Tk_NameOfCapStyle.3
-    ln GetCapStyl.3 Tk_NameOfCapStyle.3
+if test -r GetCapStyl.3.gz; then
+    rm -f Tk_NameOfCapStyle.3.gz
+    ln GetCapStyl.3.gz Tk_NameOfCapStyle.3.gz
 fi
-if test -r GetClrmap.3; then
-    rm -f Tk_GetColormap.3
-    ln GetClrmap.3 Tk_GetColormap.3
+if test -r GetClrmap.3.gz; then
+    rm -f Tk_GetColormap.3.gz
+    ln GetClrmap.3.gz Tk_GetColormap.3.gz
 fi
-if test -r GetClrmap.3; then
-    rm -f Tk_FreeColormap.3
-    ln GetClrmap.3 Tk_FreeColormap.3
+if test -r GetClrmap.3.gz; then
+    rm -f Tk_FreeColormap.3.gz
+    ln GetClrmap.3.gz Tk_FreeColormap.3.gz
 fi
-if test -r GetColor.3; then
-    rm -f Tk_GetColor.3
-    ln GetColor.3 Tk_GetColor.3
+if test -r GetColor.3.gz; then
+    rm -f Tk_GetColor.3.gz
+    ln GetColor.3.gz Tk_GetColor.3.gz
 fi
-if test -r GetColor.3; then
-    rm -f Tk_GetColorByValue.3
-    ln GetColor.3 Tk_GetColorByValue.3
+if test -r GetColor.3.gz; then
+    rm -f Tk_GetColorByValue.3.gz
+    ln GetColor.3.gz Tk_GetColorByValue.3.gz
 fi
-if test -r GetColor.3; then
-    rm -f Tk_NameOfColor.3
-    ln GetColor.3 Tk_NameOfColor.3
+if test -r GetColor.3.gz; then
+    rm -f Tk_NameOfColor.3.gz
+    ln GetColor.3.gz Tk_NameOfColor.3.gz
 fi
-if test -r GetColor.3; then
-    rm -f Tk_FreeColor.3
-    ln GetColor.3 Tk_FreeColor.3
+if test -r GetColor.3.gz; then
+    rm -f Tk_FreeColor.3.gz
+    ln GetColor.3.gz Tk_FreeColor.3.gz
 fi
-if test -r GetCursor.3; then
-    rm -f Tk_GetCursor.3
-    ln GetCursor.3 Tk_GetCursor.3
+if test -r GetCursor.3.gz; then
+    rm -f Tk_GetCursor.3.gz
+    ln GetCursor.3.gz Tk_GetCursor.3.gz
 fi
-if test -r GetCursor.3; then
-    rm -f Tk_GetCursorFromData.3
-    ln GetCursor.3 Tk_GetCursorFromData.3
+if test -r GetCursor.3.gz; then
+    rm -f Tk_GetCursorFromData.3.gz
+    ln GetCursor.3.gz Tk_GetCursorFromData.3.gz
 fi
-if test -r GetCursor.3; then
-    rm -f Tk_NameOfCursor.3
-    ln GetCursor.3 Tk_NameOfCursor.3
+if test -r GetCursor.3.gz; then
+    rm -f Tk_NameOfCursor.3.gz
+    ln GetCursor.3.gz Tk_NameOfCursor.3.gz
 fi
-if test -r GetCursor.3; then
-    rm -f Tk_FreeCursor.3
-    ln GetCursor.3 Tk_FreeCursor.3
+if test -r GetCursor.3.gz; then
+    rm -f Tk_FreeCursor.3.gz
+    ln GetCursor.3.gz Tk_FreeCursor.3.gz
 fi
-if test -r GetFont.3; then
-    rm -f Tk_GetFont.3
-    ln GetFont.3 Tk_GetFont.3
+if test -r GetFont.3.gz; then
+    rm -f Tk_GetFont.3.gz
+    ln GetFont.3.gz Tk_GetFont.3.gz
 fi
-if test -r GetFont.3; then
-    rm -f Tk_NameOfFont.3
-    ln GetFont.3 Tk_NameOfFont.3
+if test -r GetFont.3.gz; then
+    rm -f Tk_NameOfFont.3.gz
+    ln GetFont.3.gz Tk_NameOfFont.3.gz
 fi
-if test -r GetFont.3; then
-    rm -f Tk_FreeFont.3
-    ln GetFont.3 Tk_FreeFont.3
+if test -r GetFont.3.gz; then
+    rm -f Tk_FreeFont.3.gz
+    ln GetFont.3.gz Tk_FreeFont.3.gz
 fi
-if test -r GetGC.3; then
-    rm -f Tk_GetGC.3
-    ln GetGC.3 Tk_GetGC.3
+if test -r GetGC.3.gz; then
+    rm -f Tk_GetGC.3.gz
+    ln GetGC.3.gz Tk_GetGC.3.gz
 fi
-if test -r GetGC.3; then
-    rm -f Tk_FreeGC.3
-    ln GetGC.3 Tk_FreeGC.3
+if test -r GetGC.3.gz; then
+    rm -f Tk_FreeGC.3.gz
+    ln GetGC.3.gz Tk_FreeGC.3.gz
 fi
-if test -r GetImage.3; then
-    rm -f Tk_GetImage.3
-    ln GetImage.3 Tk_GetImage.3
+if test -r GetImage.3.gz; then
+    rm -f Tk_GetImage.3.gz
+    ln GetImage.3.gz Tk_GetImage.3.gz
 fi
-if test -r GetImage.3; then
-    rm -f Tk_RedrawImage.3
-    ln GetImage.3 Tk_RedrawImage.3
+if test -r GetImage.3.gz; then
+    rm -f Tk_RedrawImage.3.gz
+    ln GetImage.3.gz Tk_RedrawImage.3.gz
 fi
-if test -r GetImage.3; then
-    rm -f Tk_SizeOfImage.3
-    ln GetImage.3 Tk_SizeOfImage.3
+if test -r GetImage.3.gz; then
+    rm -f Tk_SizeOfImage.3.gz
+    ln GetImage.3.gz Tk_SizeOfImage.3.gz
 fi
-if test -r GetImage.3; then
-    rm -f Tk_FreeImage.3
-    ln GetImage.3 Tk_FreeImage.3
+if test -r GetImage.3.gz; then
+    rm -f Tk_FreeImage.3.gz
+    ln GetImage.3.gz Tk_FreeImage.3.gz
 fi
-if test -r GetJoinStl.3; then
-    rm -f Tk_GetJoinStyle.3
-    ln GetJoinStl.3 Tk_GetJoinStyle.3
+if test -r GetJoinStl.3.gz; then
+    rm -f Tk_GetJoinStyle.3.gz
+    ln GetJoinStl.3.gz Tk_GetJoinStyle.3.gz
 fi
-if test -r GetJoinStl.3; then
-    rm -f Tk_NameOfJoinStyle.3
-    ln GetJoinStl.3 Tk_NameOfJoinStyle.3
+if test -r GetJoinStl.3.gz; then
+    rm -f Tk_NameOfJoinStyle.3.gz
+    ln GetJoinStl.3.gz Tk_NameOfJoinStyle.3.gz
 fi
-if test -r GetJustify.3; then
-    rm -f Tk_GetJustify.3
-    ln GetJustify.3 Tk_GetJustify.3
+if test -r GetJustify.3.gz; then
+    rm -f Tk_GetJustify.3.gz
+    ln GetJustify.3.gz Tk_GetJustify.3.gz
 fi
-if test -r GetJustify.3; then
-    rm -f Tk_NameOfJustify.3
-    ln GetJustify.3 Tk_NameOfJustify.3
+if test -r GetJustify.3.gz; then
+    rm -f Tk_NameOfJustify.3.gz
+    ln GetJustify.3.gz Tk_NameOfJustify.3.gz
 fi
-if test -r GetOption.3; then
-    rm -f Tk_GetOption.3
-    ln GetOption.3 Tk_GetOption.3
+if test -r GetOption.3.gz; then
+    rm -f Tk_GetOption.3.gz
+    ln GetOption.3.gz Tk_GetOption.3.gz
 fi
-if test -r GetPixels.3; then
-    rm -f Tk_GetPixels.3
-    ln GetPixels.3 Tk_GetPixels.3
+if test -r GetPixels.3.gz; then
+    rm -f Tk_GetPixels.3.gz
+    ln GetPixels.3.gz Tk_GetPixels.3.gz
 fi
-if test -r GetPixels.3; then
-    rm -f Tk_GetScreenMM.3
-    ln GetPixels.3 Tk_GetScreenMM.3
+if test -r GetPixels.3.gz; then
+    rm -f Tk_GetScreenMM.3.gz
+    ln GetPixels.3.gz Tk_GetScreenMM.3.gz
 fi
-if test -r GetPixmap.3; then
-    rm -f Tk_GetPixmap.3
-    ln GetPixmap.3 Tk_GetPixmap.3
+if test -r GetPixmap.3.gz; then
+    rm -f Tk_GetPixmap.3.gz
+    ln GetPixmap.3.gz Tk_GetPixmap.3.gz
 fi
-if test -r GetPixmap.3; then
-    rm -f Tk_FreePixmap.3
-    ln GetPixmap.3 Tk_FreePixmap.3
+if test -r GetPixmap.3.gz; then
+    rm -f Tk_FreePixmap.3.gz
+    ln GetPixmap.3.gz Tk_FreePixmap.3.gz
 fi
-if test -r GetRelief.3; then
-    rm -f Tk_GetRelief.3
-    ln GetRelief.3 Tk_GetRelief.3
+if test -r GetRelief.3.gz; then
+    rm -f Tk_GetRelief.3.gz
+    ln GetRelief.3.gz Tk_GetRelief.3.gz
 fi
-if test -r GetRelief.3; then
-    rm -f Tk_NameOfRelief.3
-    ln GetRelief.3 Tk_NameOfRelief.3
+if test -r GetRelief.3.gz; then
+    rm -f Tk_NameOfRelief.3.gz
+    ln GetRelief.3.gz Tk_NameOfRelief.3.gz
 fi
-if test -r GetRootCrd.3; then
-    rm -f Tk_GetRootCoords.3
-    ln GetRootCrd.3 Tk_GetRootCoords.3
+if test -r GetRootCrd.3.gz; then
+    rm -f Tk_GetRootCoords.3.gz
+    ln GetRootCrd.3.gz Tk_GetRootCoords.3.gz
 fi
-if test -r GetScroll.3; then
-    rm -f Tk_GetScrollInfo.3
-    ln GetScroll.3 Tk_GetScrollInfo.3
+if test -r GetScroll.3.gz; then
+    rm -f Tk_GetScrollInfo.3.gz
+    ln GetScroll.3.gz Tk_GetScrollInfo.3.gz
 fi
-if test -r GetSelect.3; then
-    rm -f Tk_GetSelection.3
-    ln GetSelect.3 Tk_GetSelection.3
+if test -r GetSelect.3.gz; then
+    rm -f Tk_GetSelection.3.gz
+    ln GetSelect.3.gz Tk_GetSelection.3.gz
 fi
-if test -r GetUid.3; then
-    rm -f Tk_GetUid.3
-    ln GetUid.3 Tk_GetUid.3
+if test -r GetUid.3.gz; then
+    rm -f Tk_GetUid.3.gz
+    ln GetUid.3.gz Tk_GetUid.3.gz
 fi
-if test -r GetUid.3; then
-    rm -f Tk_Uid.3
-    ln GetUid.3 Tk_Uid.3
+if test -r GetUid.3.gz; then
+    rm -f Tk_Uid.3.gz
+    ln GetUid.3.gz Tk_Uid.3.gz
 fi
-if test -r GetVRoot.3; then
-    rm -f Tk_GetVRootGeometry.3
-    ln GetVRoot.3 Tk_GetVRootGeometry.3
+if test -r GetVRoot.3.gz; then
+    rm -f Tk_GetVRootGeometry.3.gz
+    ln GetVRoot.3.gz Tk_GetVRootGeometry.3.gz
 fi
-if test -r GetVisual.3; then
-    rm -f Tk_GetVisual.3
-    ln GetVisual.3 Tk_GetVisual.3
+if test -r GetVisual.3.gz; then
+    rm -f Tk_GetVisual.3.gz
+    ln GetVisual.3.gz Tk_GetVisual.3.gz
 fi
-if test -r HandleEvent.3; then
-    rm -f Tk_HandleEvent.3
-    ln HandleEvent.3 Tk_HandleEvent.3
+if test -r HandleEvent.3.gz; then
+    rm -f Tk_HandleEvent.3.gz
+    ln HandleEvent.3.gz Tk_HandleEvent.3.gz
 fi
-if test -r IdToWindow.3; then
-    rm -f Tk_IdToWindow.3
-    ln IdToWindow.3 Tk_IdToWindow.3
+if test -r IdToWindow.3.gz; then
+    rm -f Tk_IdToWindow.3.gz
+    ln IdToWindow.3.gz Tk_IdToWindow.3.gz
 fi
-if test -r ImgChanged.3; then
-    rm -f Tk_ImageChanged.3
-    ln ImgChanged.3 Tk_ImageChanged.3
+if test -r ImgChanged.3.gz; then
+    rm -f Tk_ImageChanged.3.gz
+    ln ImgChanged.3.gz Tk_ImageChanged.3.gz
 fi
-if test -r InternAtom.3; then
-    rm -f Tk_InternAtom.3
-    ln InternAtom.3 Tk_InternAtom.3
+if test -r InternAtom.3.gz; then
+    rm -f Tk_InternAtom.3.gz
+    ln InternAtom.3.gz Tk_InternAtom.3.gz
 fi
-if test -r InternAtom.3; then
-    rm -f Tk_GetAtomName.3
-    ln InternAtom.3 Tk_GetAtomName.3
+if test -r InternAtom.3.gz; then
+    rm -f Tk_GetAtomName.3.gz
+    ln InternAtom.3.gz Tk_GetAtomName.3.gz
 fi
-if test -r MainLoop.3; then
-    rm -f Tk_MainLoop.3
-    ln MainLoop.3 Tk_MainLoop.3
+if test -r MainLoop.3.gz; then
+    rm -f Tk_MainLoop.3.gz
+    ln MainLoop.3.gz Tk_MainLoop.3.gz
 fi
-if test -r MainWin.3; then
-    rm -f Tk_MainWindow.3
-    ln MainWin.3 Tk_MainWindow.3
+if test -r MainWin.3.gz; then
+    rm -f Tk_MainWindow.3.gz
+    ln MainWin.3.gz Tk_MainWindow.3.gz
 fi
-if test -r MaintGeom.3; then
-    rm -f Tk_MaintainGeometry.3
-    ln MaintGeom.3 Tk_MaintainGeometry.3
+if test -r MaintGeom.3.gz; then
+    rm -f Tk_MaintainGeometry.3.gz
+    ln MaintGeom.3.gz Tk_MaintainGeometry.3.gz
 fi
-if test -r MaintGeom.3; then
-    rm -f Tk_UnmaintainGeometry.3
-    ln MaintGeom.3 Tk_UnmaintainGeometry.3
+if test -r MaintGeom.3.gz; then
+    rm -f Tk_UnmaintainGeometry.3.gz
+    ln MaintGeom.3.gz Tk_UnmaintainGeometry.3.gz
 fi
-if test -r ManageGeom.3; then
-    rm -f Tk_ManageGeometry.3
-    ln ManageGeom.3 Tk_ManageGeometry.3
+if test -r ManageGeom.3.gz; then
+    rm -f Tk_ManageGeometry.3.gz
+    ln ManageGeom.3.gz Tk_ManageGeometry.3.gz
 fi
-if test -r MapWindow.3; then
-    rm -f Tk_MapWindow.3
-    ln MapWindow.3 Tk_MapWindow.3
+if test -r MapWindow.3.gz; then
+    rm -f Tk_MapWindow.3.gz
+    ln MapWindow.3.gz Tk_MapWindow.3.gz
 fi
-if test -r MapWindow.3; then
-    rm -f Tk_UnmapWindow.3
-    ln MapWindow.3 Tk_UnmapWindow.3
+if test -r MapWindow.3.gz; then
+    rm -f Tk_UnmapWindow.3.gz
+    ln MapWindow.3.gz Tk_UnmapWindow.3.gz
 fi
-if test -r MeasureChar.3; then
-    rm -f Tk_MeasureChars.3
-    ln MeasureChar.3 Tk_MeasureChars.3
+if test -r MeasureChar.3.gz; then
+    rm -f Tk_MeasureChars.3.gz
+    ln MeasureChar.3.gz Tk_MeasureChars.3.gz
 fi
-if test -r MeasureChar.3; then
-    rm -f Tk_TextWidth.3
-    ln MeasureChar.3 Tk_TextWidth.3
+if test -r MeasureChar.3.gz; then
+    rm -f Tk_TextWidth.3.gz
+    ln MeasureChar.3.gz Tk_TextWidth.3.gz
 fi
-if test -r MeasureChar.3; then
-    rm -f Tk_DrawChars.3
-    ln MeasureChar.3 Tk_DrawChars.3
+if test -r MeasureChar.3.gz; then
+    rm -f Tk_DrawChars.3.gz
+    ln MeasureChar.3.gz Tk_DrawChars.3.gz
 fi
-if test -r MeasureChar.3; then
-    rm -f Tk_UnderlineChars.3
-    ln MeasureChar.3 Tk_UnderlineChars.3
+if test -r MeasureChar.3.gz; then
+    rm -f Tk_UnderlineChars.3.gz
+    ln MeasureChar.3.gz Tk_UnderlineChars.3.gz
 fi
-if test -r MoveToplev.3; then
-    rm -f Tk_MoveToplevelWindow.3
-    ln MoveToplev.3 Tk_MoveToplevelWindow.3
+if test -r MoveToplev.3.gz; then
+    rm -f Tk_MoveToplevelWindow.3.gz
+    ln MoveToplev.3.gz Tk_MoveToplevelWindow.3.gz
 fi
-if test -r Name.3; then
-    rm -f Tk_Name.3
-    ln Name.3 Tk_Name.3
+if test -r Name.3.gz; then
+    rm -f Tk_Name.3.gz
+    ln Name.3.gz Tk_Name.3.gz
 fi
-if test -r Name.3; then
-    rm -f Tk_PathName.3
-    ln Name.3 Tk_PathName.3
+if test -r Name.3.gz; then
+    rm -f Tk_PathName.3.gz
+    ln Name.3.gz Tk_PathName.3.gz
 fi
-if test -r Name.3; then
-    rm -f Tk_NameToWindow.3
-    ln Name.3 Tk_NameToWindow.3
+if test -r Name.3.gz; then
+    rm -f Tk_NameToWindow.3.gz
+    ln Name.3.gz Tk_NameToWindow.3.gz
 fi
-if test -r NameOfImg.3; then
-    rm -f Tk_NameOfImage.3
-    ln NameOfImg.3 Tk_NameOfImage.3
+if test -r NameOfImg.3.gz; then
+    rm -f Tk_NameOfImage.3.gz
+    ln NameOfImg.3.gz Tk_NameOfImage.3.gz
 fi
-if test -r OwnSelect.3; then
-    rm -f Tk_OwnSelection.3
-    ln OwnSelect.3 Tk_OwnSelection.3
+if test -r OwnSelect.3.gz; then
+    rm -f Tk_OwnSelection.3.gz
+    ln OwnSelect.3.gz Tk_OwnSelection.3.gz
 fi
-if test -r ParseArgv.3; then
-    rm -f Tk_ParseArgv.3
-    ln ParseArgv.3 Tk_ParseArgv.3
+if test -r ParseArgv.3.gz; then
+    rm -f Tk_ParseArgv.3.gz
+    ln ParseArgv.3.gz Tk_ParseArgv.3.gz
 fi
-if test -r QWinEvent.3; then
-    rm -f Tk_QueueWindowEvent.3
-    ln QWinEvent.3 Tk_QueueWindowEvent.3
+if test -r QWinEvent.3.gz; then
+    rm -f Tk_QueueWindowEvent.3.gz
+    ln QWinEvent.3.gz Tk_QueueWindowEvent.3.gz
 fi
-if test -r Restack.3; then
-    rm -f Tk_RestackWindow.3
-    ln Restack.3 Tk_RestackWindow.3
+if test -r Restack.3.gz; then
+    rm -f Tk_RestackWindow.3.gz
+    ln Restack.3.gz Tk_RestackWindow.3.gz
 fi
-if test -r RestrictEv.3; then
-    rm -f Tk_RestrictEvents.3
-    ln RestrictEv.3 Tk_RestrictEvents.3
+if test -r RestrictEv.3.gz; then
+    rm -f Tk_RestrictEvents.3.gz
+    ln RestrictEv.3.gz Tk_RestrictEvents.3.gz
 fi
-if test -r SetAppName.3; then
-    rm -f Tk_SetAppName.3
-    ln SetAppName.3 Tk_SetAppName.3
+if test -r SetAppName.3.gz; then
+    rm -f Tk_SetAppName.3.gz
+    ln SetAppName.3.gz Tk_SetAppName.3.gz
 fi
-if test -r SetClass.3; then
-    rm -f Tk_SetClass.3
-    ln SetClass.3 Tk_SetClass.3
+if test -r SetClass.3.gz; then
+    rm -f Tk_SetClass.3.gz
+    ln SetClass.3.gz Tk_SetClass.3.gz
 fi
-if test -r SetClass.3; then
-    rm -f Tk_Class.3
-    ln SetClass.3 Tk_Class.3
+if test -r SetClass.3.gz; then
+    rm -f Tk_Class.3.gz
+    ln SetClass.3.gz Tk_Class.3.gz
 fi
-if test -r SetGrid.3; then
-    rm -f Tk_SetGrid.3
-    ln SetGrid.3 Tk_SetGrid.3
+if test -r SetGrid.3.gz; then
+    rm -f Tk_SetGrid.3.gz
+    ln SetGrid.3.gz Tk_SetGrid.3.gz
 fi
-if test -r SetGrid.3; then
-    rm -f Tk_UnsetGrid.3
-    ln SetGrid.3 Tk_UnsetGrid.3
+if test -r SetGrid.3.gz; then
+    rm -f Tk_UnsetGrid.3.gz
+    ln SetGrid.3.gz Tk_UnsetGrid.3.gz
 fi
-if test -r SetVisual.3; then
-    rm -f Tk_SetWindowVisual.3
-    ln SetVisual.3 Tk_SetWindowVisual.3
+if test -r SetVisual.3.gz; then
+    rm -f Tk_SetWindowVisual.3.gz
+    ln SetVisual.3.gz Tk_SetWindowVisual.3.gz
 fi
-if test -r StrictMotif.3; then
-    rm -f Tk_StrictMotif.3
-    ln StrictMotif.3 Tk_StrictMotif.3
+if test -r StrictMotif.3.gz; then
+    rm -f Tk_StrictMotif.3.gz
+    ln StrictMotif.3.gz Tk_StrictMotif.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_ComputeTextLayout.3
-    ln TextLayout.3 Tk_ComputeTextLayout.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_ComputeTextLayout.3.gz
+    ln TextLayout.3.gz Tk_ComputeTextLayout.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_FreeTextLayout.3
-    ln TextLayout.3 Tk_FreeTextLayout.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_FreeTextLayout.3.gz
+    ln TextLayout.3.gz Tk_FreeTextLayout.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_DrawTextLayout.3
-    ln TextLayout.3 Tk_DrawTextLayout.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_DrawTextLayout.3.gz
+    ln TextLayout.3.gz Tk_DrawTextLayout.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_UnderlineTextLayout.3
-    ln TextLayout.3 Tk_UnderlineTextLayout.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_UnderlineTextLayout.3.gz
+    ln TextLayout.3.gz Tk_UnderlineTextLayout.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_PointToChar.3
-    ln TextLayout.3 Tk_PointToChar.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_PointToChar.3.gz
+    ln TextLayout.3.gz Tk_PointToChar.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_CharBbox.3
-    ln TextLayout.3 Tk_CharBbox.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_CharBbox.3.gz
+    ln TextLayout.3.gz Tk_CharBbox.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_DistanceToTextLayout.3
-    ln TextLayout.3 Tk_DistanceToTextLayout.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_DistanceToTextLayout.3.gz
+    ln TextLayout.3.gz Tk_DistanceToTextLayout.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_IntersectTextLayout.3
-    ln TextLayout.3 Tk_IntersectTextLayout.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_IntersectTextLayout.3.gz
+    ln TextLayout.3.gz Tk_IntersectTextLayout.3.gz
 fi
-if test -r TextLayout.3; then
-    rm -f Tk_TextLayoutToPostscript.3
-    ln TextLayout.3 Tk_TextLayoutToPostscript.3
+if test -r TextLayout.3.gz; then
+    rm -f Tk_TextLayoutToPostscript.3.gz
+    ln TextLayout.3.gz Tk_TextLayoutToPostscript.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_WindowId.3
-    ln WindowId.3 Tk_WindowId.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_WindowId.3.gz
+    ln WindowId.3.gz Tk_WindowId.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Parent.3
-    ln WindowId.3 Tk_Parent.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Parent.3.gz
+    ln WindowId.3.gz Tk_Parent.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Display.3
-    ln WindowId.3 Tk_Display.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Display.3.gz
+    ln WindowId.3.gz Tk_Display.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_DisplayName.3
-    ln WindowId.3 Tk_DisplayName.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_DisplayName.3.gz
+    ln WindowId.3.gz Tk_DisplayName.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_ScreenNumber.3
-    ln WindowId.3 Tk_ScreenNumber.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_ScreenNumber.3.gz
+    ln WindowId.3.gz Tk_ScreenNumber.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Screen.3
-    ln WindowId.3 Tk_Screen.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Screen.3.gz
+    ln WindowId.3.gz Tk_Screen.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_X.3
-    ln WindowId.3 Tk_X.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_X.3.gz
+    ln WindowId.3.gz Tk_X.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Y.3
-    ln WindowId.3 Tk_Y.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Y.3.gz
+    ln WindowId.3.gz Tk_Y.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Width.3
-    ln WindowId.3 Tk_Width.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Width.3.gz
+    ln WindowId.3.gz Tk_Width.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Height.3
-    ln WindowId.3 Tk_Height.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Height.3.gz
+    ln WindowId.3.gz Tk_Height.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Changes.3
-    ln WindowId.3 Tk_Changes.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Changes.3.gz
+    ln WindowId.3.gz Tk_Changes.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Attributes.3
-    ln WindowId.3 Tk_Attributes.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Attributes.3.gz
+    ln WindowId.3.gz Tk_Attributes.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_IsMapped.3
-    ln WindowId.3 Tk_IsMapped.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_IsMapped.3.gz
+    ln WindowId.3.gz Tk_IsMapped.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_IsTopLevel.3
-    ln WindowId.3 Tk_IsTopLevel.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_IsTopLevel.3.gz
+    ln WindowId.3.gz Tk_IsTopLevel.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_ReqWidth.3
-    ln WindowId.3 Tk_ReqWidth.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_ReqWidth.3.gz
+    ln WindowId.3.gz Tk_ReqWidth.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_ReqHeight.3
-    ln WindowId.3 Tk_ReqHeight.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_ReqHeight.3.gz
+    ln WindowId.3.gz Tk_ReqHeight.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_InternalBorderWidth.3
-    ln WindowId.3 Tk_InternalBorderWidth.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_InternalBorderWidth.3.gz
+    ln WindowId.3.gz Tk_InternalBorderWidth.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Visual.3
-    ln WindowId.3 Tk_Visual.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Visual.3.gz
+    ln WindowId.3.gz Tk_Visual.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Depth.3
-    ln WindowId.3 Tk_Depth.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Depth.3.gz
+    ln WindowId.3.gz Tk_Depth.3.gz
 fi
-if test -r WindowId.3; then
-    rm -f Tk_Colormap.3
-    ln WindowId.3 Tk_Colormap.3
+if test -r WindowId.3.gz; then
+    rm -f Tk_Colormap.3.gz
+    ln WindowId.3.gz Tk_Colormap.3.gz
 fi
-if test -r chooseColor.n; then
-    rm -f tk_chooseColor.n
-    ln chooseColor.n tk_chooseColor.n
+if test -r chooseColor.n.gz; then
+    rm -f tk_chooseColor.n.gz
+    ln chooseColor.n.gz tk_chooseColor.n.gz
 fi
-if test -r dialog.n; then
-    rm -f tk_dialog.n
-    ln dialog.n tk_dialog.n
+if test -r dialog.n.gz; then
+    rm -f tk_dialog.n.gz
+    ln dialog.n.gz tk_dialog.n.gz
 fi
-if test -r focusNext.n; then
-    rm -f tk_focusNext.n
-    ln focusNext.n tk_focusNext.n
+if test -r focusNext.n.gz; then
+    rm -f tk_focusNext.n.gz
+    ln focusNext.n.gz tk_focusNext.n.gz
 fi
-if test -r focusNext.n; then
-    rm -f tk_focusPrev.n
-    ln focusNext.n tk_focusPrev.n
+if test -r focusNext.n.gz; then
+    rm -f tk_focusPrev.n.gz
+    ln focusNext.n.gz tk_focusPrev.n.gz
 fi
-if test -r focusNext.n; then
-    rm -f tk_focusFollowsMouse.n
-    ln focusNext.n tk_focusFollowsMouse.n
+if test -r focusNext.n.gz; then
+    rm -f tk_focusFollowsMouse.n.gz
+    ln focusNext.n.gz tk_focusFollowsMouse.n.gz
 fi
-if test -r getOpenFile.n; then
-    rm -f tk_getOpenFile.n
-    ln getOpenFile.n tk_getOpenFile.n
+if test -r getOpenFile.n.gz; then
+    rm -f tk_getOpenFile.n.gz
+    ln getOpenFile.n.gz tk_getOpenFile.n.gz
 fi
-if test -r getOpenFile.n; then
-    rm -f tk_getSaveFile.n
-    ln getOpenFile.n tk_getSaveFile.n
+if test -r getOpenFile.n.gz; then
+    rm -f tk_getSaveFile.n.gz
+    ln getOpenFile.n.gz tk_getSaveFile.n.gz
 fi
-if test -r menubar.n; then
-    rm -f tk_menuBar.n
-    ln menubar.n tk_menuBar.n
+if test -r menubar.n.gz; then
+    rm -f tk_menuBar.n.gz
+    ln menubar.n.gz tk_menuBar.n.gz
 fi
-if test -r menubar.n; then
-    rm -f tk_bindForTraversal.n
-    ln menubar.n tk_bindForTraversal.n
+if test -r menubar.n.gz; then
+    rm -f tk_bindForTraversal.n.gz
+    ln menubar.n.gz tk_bindForTraversal.n.gz
 fi
-if test -r messageBox.n; then
-    rm -f tk_messageBox.n
-    ln messageBox.n tk_messageBox.n
+if test -r messageBox.n.gz; then
+    rm -f tk_messageBox.n.gz
+    ln messageBox.n.gz tk_messageBox.n.gz
 fi
-if test -r optionMenu.n; then
-    rm -f tk_optionMenu.n
-    ln optionMenu.n tk_optionMenu.n
+if test -r optionMenu.n.gz; then
+    rm -f tk_optionMenu.n.gz
+    ln optionMenu.n.gz tk_optionMenu.n.gz
 fi
-if test -r pack-old.n; then
-    rm -f pack.n
-    ln pack-old.n pack.n
+if test -r pack-old.n.gz; then
+    rm -f pack.n.gz
+    ln pack-old.n.gz pack.n.gz
 fi
-if test -r palette.n; then
-    rm -f tk_setPalette.n
-    ln palette.n tk_setPalette.n
+if test -r palette.n.gz; then
+    rm -f tk_setPalette.n.gz
+    ln palette.n.gz tk_setPalette.n.gz
 fi
-if test -r palette.n; then
-    rm -f tk_bisque.n
-    ln palette.n tk_bisque.n
+if test -r palette.n.gz; then
+    rm -f tk_bisque.n.gz
+    ln palette.n.gz tk_bisque.n.gz
 fi
-if test -r popup.n; then
-    rm -f tk_popup.n
-    ln popup.n tk_popup.n
+if test -r popup.n.gz; then
+    rm -f tk_popup.n.gz
+    ln popup.n.gz tk_popup.n.gz
 fi
 exit 0
>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?199901300002.QAA22592>