bd1bfb8b83
in PR pkg/25528. While here, switch to Tk 8.4. Changes since 2.5: Version 2.8 (22-March-2004): Removed a subtle bug found by Haakon Riiser; now works correctly with identically named info files in different directories. Version 2.7 (21-March-2004): Will now also accept a menu item of the dir file on the command line (closes Debian bug #149387). Included /usr/share/info in default directory list (for Debian). Some documentation updates. Now includes TkInfo.xpm from Debian (under GPL). Options are now read from system-wide app-defaults file as advertised. Version 2.6 (25-June-2003): Minor fixes needed for Tcl/Tk 8.4. This still works with older versions of Tcl/Tk.
29 lines
739 B
Makefile
29 lines
739 B
Makefile
# $NetBSD: Makefile,v 1.19 2004/05/12 15:08:20 minskim Exp $
|
|
# FreeBSD Id: Makefile,v 1.15 1997/12/16 09:26:12 tg Exp
|
|
#
|
|
|
|
DISTNAME= tkinfo-2.8
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://math-www.uni-paderborn.de/~axel/tkinfo/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://math-www.uni-paderborn.de/~axel/tkinfo/
|
|
COMMENT= Tk script to read and display GNU "info" files
|
|
|
|
DEPENDS= tk>=8.3.2:../../x11/tk
|
|
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
cd ${WRKSRC}; \
|
|
${MV} tkinfo tkinfo.src; \
|
|
${SED} \
|
|
-e 's|@LOCALBASE@|${LOCALBASE}|g' \
|
|
-e 's|@X11BASE@|${X11BASE}|g' \
|
|
< tkinfo.src > tkinfo
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tkinfo ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/tkinfo.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|