1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/misc/ewipe/Makefile
Bill Fenner f06d13b6ff Add tk virtual category where missing. List of ports which depend on tk
but aren't in a tk virtual category from
 awk -F\| '$9 ~ /tk-/ && $7 !~ /tk/ {print $1}' INDEX

I didn't do anything about the ports which depend on things which depend
 on a tk revision.  I'd be afraid that the depended-upon port might change
 and thus outdate the virtual category in the depender.
1998-02-21 22:38:11 +00:00

44 lines
1.1 KiB
Makefile

# New ports collection makefile for: ewipe
# Version required: 0.7.0
# Date created: 17 October 1997
# Whom: itojun@itojun.org
#
# $Id: Makefile,v 1.10 1998/02/17 12:58:50 itojun Exp $
#
DISTNAME= ewipe0.7.0
PKGNAME?= ewipe-0.7.0
CATEGORIES= misc tk42
MASTER_SITES= http://al.ei.tuat.ac.jp/~sekisita/ewipe/
MAINTAINER= itojun@itojun.org
RUN_DEPENDS= wish4.2:${PORTSDIR}/x11/tk42
NO_BUILD= yes
NO_CONFIGURE= yes
DOCS= README Changes dot.ewipe
SAMPLES= a1.gif a2.gif a3.gif a4.gif blue1.gif sample.ewp \
sample2.ewp sample3.ewp tutorial.ewp
do-install:
${MKDIR} ${PREFIX}/lib/ewipe
${INSTALL_SCRIPT} ${WRKSRC}/ewipe ${PREFIX}/bin
for i in edittable.tcl setpointer.tcl viewer.tcl tclIndex; do\
${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/lib/ewipe;\
done
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/ewipe
${MKDIR} ${PREFIX}/share/doc/ewipe/sample
for i in ${DOCS}; do\
${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/doc/ewipe;\
done
for i in ${SAMPLES}; do\
${INSTALL_DATA} ${WRKSRC}/sample/$$i \
${PREFIX}/share/doc/ewipe/sample;\
done
.endif
.include <bsd.port.mk>