mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7acc6ba743
PR: 23074 Submitted by: Ports Fury
31 lines
707 B
Makefile
31 lines
707 B
Makefile
# New ports collection makefile for: frotz
|
|
# Date created: 16 May 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= frotz
|
|
PORTVERSION= 2.40
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.cs.csubak.edu/~dgriffi/frotz/files/ \
|
|
ftp://ftp.gmd.de/if-archive/infocom/interpreters/frotz/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
ALL_TARGET= # empty
|
|
|
|
MAN6= frotz.6
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/frotz ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/frotz.6 ${PREFIX}/man/man6
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/frotz
|
|
.for file in AUTHORS BUGS ChangeLog HOW_TO_PLAY INSTALL README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/frotz
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|