mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
bbc8c4d740
Approved by: portmgr (not really, but touches unstaged ports)
37 lines
960 B
Makefile
37 lines
960 B
Makefile
# Created by: Vsevolod Stakhov <vsevolod@highsecure.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= redet
|
|
PORTVERSION= 8.26
|
|
CATEGORIES= textproc tk
|
|
MASTER_SITES= http://www.billposer.org/Software/Downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Visual regexp development and execution
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/iwidgets/iwidgets.tcl:${PORTSDIR}/x11-toolkits/iwidgets
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
NO_BUILD= yes
|
|
USES+= tk:run tar:bzip2
|
|
|
|
PORTDOCS= AUTHORS COPYING CREDITS LICENSE NEWS README-General ChangeLog
|
|
PLIST_FILES= bin/redet \
|
|
man/man1/redet.1.gz
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s@exec wish@exec ${WISH}@" ${WRKSRC}/redet.tcl
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/redet.tcl ${STAGEDIR}${PREFIX}/bin/redet
|
|
${INSTALL_MAN} ${WRKSRC}/redet.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${INSTALL} -d ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|