mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
22d7896c17
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories T-V. CR: D509 Approved by: portmgr (antoine)
31 lines
600 B
Makefile
31 lines
600 B
Makefile
# Created by: Kevin Lo <kevlo@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tkdiff
|
|
PORTVERSION= 4.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc tk
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
COMMENT= Tk frontend for diff(1)
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-unix
|
|
|
|
USES= tk:wrapper
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/tkdiff
|
|
|
|
post-patch:
|
|
${FIND} ${WRKSRC} -type f | ${XARGS} \
|
|
${REINPLACE_CMD} -e '/^exec wish/s|wish|${WISH}|g' -e '/^exec tclsh/s|tclsh|${TCLSH}|g'
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/tkdiff ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|