mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-04 11:23:46 +00:00
43 lines
917 B
Makefile
43 lines
917 B
Makefile
# New ports collection makefile for: tkcvs
|
|
# Date created: 02 Aug 1996
|
|
# Whom: shanee@augusta.de
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tkcvs
|
|
PORTVERSION= 7.2.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.twobarleycorns.net/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:S/./_/g}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tcl/Tk frontends to CVS and diff
|
|
|
|
LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84
|
|
|
|
NO_BUILD= yes
|
|
MAN1= tkcvs.1
|
|
USE_REINPLACE= yes
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
WISH= wish8.4
|
|
TCLSH= tclsh8.4
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|wish|${WISH}|g' ${WRKSRC}/tkcvs/tkcvs.tcl \
|
|
${WRKSRC}/tkdiff/tkdiff ${WRKSRC}/doinstall.tcl
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${TCLSH} doinstall.tcl -nox ${PREFIX}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for file in FAQ vendor5readme.pdf
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|