mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
fbc06e4df6
- Single space for WWW in pkg-descr - Ordering if of items in Makefile - Trim headers - Comment should not begin with leading article - Pet portlint
31 lines
614 B
Makefile
31 lines
614 B
Makefile
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tkinfo
|
|
PORTVERSION= 2.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= misc tk
|
|
MASTER_SITES= http://math-www.uni-paderborn.de/~axel/tkinfo/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tk script to read GNU "info" files and display them
|
|
|
|
LICENSE= BSD
|
|
|
|
NO_BUILD= yes
|
|
|
|
USE_TK_WRAPPER= yes
|
|
|
|
MAN1= tkinfo.1
|
|
PLIST_FILES= bin/tkinfo
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|/usr/local/info|${LOCALBASE}/info|' ${WRKSRC}/tkinfo
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tkinfo ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/tkinfo.1 ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|