tkinfo port

This commit is contained in:
angelos 1998-05-20 07:56:40 +00:00
parent 03b539cdd7
commit fa5d2d46cd
6 changed files with 64 additions and 0 deletions

24
misc/tkinfo/Makefile Normal file
View File

@ -0,0 +1,24 @@
# OpenBSD makefile for: tkinfo
# Version required: 1.8
# Date created: May 20 1998
# Whom: Angelos D. Keromytis
#
# $OpenBSD: Makefile,v 1.1.1.1 1998/05/20 07:56:40 angelos Exp $
#
DISTNAME= tkinfo-1.8
CATEGORIES= misc tk80
MASTER_SITES= http://math-www.uni-paderborn.de/~axel/tkinfo/
MAINTAINER= angelos@openbsd.org
RUN_DEPENDS= wish8.0:${PORTSDIR}/x11/tk80
NO_BUILD= yes
MAN1= tkinfo.1
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/tkinfo ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/tkinfo.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

1
misc/tkinfo/files/md5 Normal file
View File

@ -0,0 +1 @@
MD5 (tkinfo-1.8.tar.gz) = 103650c438714c98ffd43c4a98be6900

View File

@ -0,0 +1,19 @@
--- tkinfo.orig Thu Mar 6 02:07:29 1997
+++ tkinfo Thu Mar 6 11:41:30 1997
@@ -1,6 +1,6 @@
#!/bin/sh
# This is a Tcl/Tk script to be interpreted by wish (Tk4.0 or better): \
-exec wish "$0" "$@"
+exec wish8.0 "$0" "$@"
##########################################################################
# Version of TkInfo:
@@ -443,7 +443,7 @@
proc tkiInit { } {
global tki env auto_path tkiEmbed geometry
- set defInfoPath [list . \
+ set defInfoPath [list . /usr/share/info \
/usr/info /usr/local/info /usr/local/gnu/info \
/usr/local/emacs/info /usr/local/lib/emacs/info \
/usr/lib/xemacs/info /usr/local/lib/xemacs/info \

1
misc/tkinfo/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
A tk script to read GNU "info" files and display them.

17
misc/tkinfo/pkg/DESCR Normal file
View File

@ -0,0 +1,17 @@
tkInfo is a tk script to read GNU "info" files and display them.
tkInfo can be used stand alone (via WISH), or embeded within an
application to provide integrated, on-line help.
Info files provide a robust hyper-text capability that is ideal for
on-line help. The format is suitable for both tty-based systems and
graphical systems. In addition, the same document source can produce
both a "nice" hardcopy manual and Info files. Note that most GNU tools
are documented in this way (via texinfo).
Info files can be created manually with any text editor, with the
support of the emacs "info" package, with the GNU "makeinfo" program,
or with the emacs scripts for latexinfo. The makeinfo program produces
a set of info files from TeX source that use the GNU texinfo style (the
one that uses "@" everywhere). Similarly, the latexinfo package (like
texinfo, but with latex commands and syntax) provides emacs scripts for
producing info files.

2
misc/tkinfo/pkg/PLIST Normal file
View File

@ -0,0 +1,2 @@
bin/tkinfo
man/man1/tkinfo.1