blob: b3c31b8c8f0b94bf748ca411fcdf46386510f50c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# ex:ts=8
# New ports collection makefile for: textmaze
# Date created: Sep 8, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= textmaze
PORTVERSION= 1.2
CATEGORIES= games perl5
MASTER_SITES= http://www.robobunny.com/projects/textmaze/ \
CRITICAL
DISTNAME= ${PORTNAME}_v${PORTVERSION}
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Generates mazes on a text terminal and lets you traverse them
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Curses.pm:${PORTSDIR}/devel/p5-Curses
USE_PERL5= yes
NO_BUILD= yes
MAKE_JOBS_SAFE= yes
PLIST_FILES= bin/textmaze
WRKSRC= ${WRKDIR}/TextMaze
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local/bin/perl|${PERL}|' \
${WRKSRC}/${PORTNAME}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>
|