mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
78cf6f7694
o un"echo" commands on Makefile o switch maintainership over to submitter PR: 30537 Submitted by: Adam Kranzel <adam@alameda.edu>
33 lines
868 B
Makefile
33 lines
868 B
Makefile
# New ports collection makefile for: frotz
|
|
# Date created: 16 May 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= frotz
|
|
PORTVERSION= 2.41
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.ifarchive.org/if-archive/infocom/interpreters/frotz/ \
|
|
http://wuarchive.wustl.edu/doc/misc/if-archive/infocom/interpreters/frotz/ \
|
|
http://www.ifarchive.org/if-archive/infocom/interpreters/frotz/
|
|
|
|
MAINTAINER= adam@alameda.edu
|
|
|
|
MAKE_ARGS= CC="${CC}" OPTS="${CFLAGS}" PREFIX="${PREFIX}" \
|
|
CONFIG_DIR="${PREFIX}/etc" INCL="" LIB=""
|
|
|
|
MAN6= frotz.6
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/frotz ${PREFIX}/bin
|
|
@${INSTALL_MAN} ${WRKSRC}/frotz.6 ${MANPREFIX}/man/man6
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/frotz
|
|
.for file in BUGS HOW_TO_PLAY README
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/frotz
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|