1998-06-28 15:16:08 +00:00
|
|
|
# New ports collection makefile for: inform
|
1999-01-08 00:15:22 +00:00
|
|
|
# Version required: 6.15 (Library: 6/8)
|
1998-06-28 15:16:08 +00:00
|
|
|
# Date created: 28 June 1998
|
|
|
|
# Whom: Matthew Hunt <mph@FreeBSD.org>
|
|
|
|
#
|
1999-05-01 12:34:38 +00:00
|
|
|
# $Id: Makefile,v 1.3 1999/02/03 11:11:44 asami Exp $
|
1998-06-28 15:16:08 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DISTNAME= inform-6.15
|
|
|
|
CATEGORIES= games
|
|
|
|
MASTER_SITES= ftp://ftp.gmd.de/if-archive/infocom/compilers/inform6/source/ \
|
|
|
|
ftp://ftp.gmd.de/if-archive/infocom/compilers/inform6/library/
|
1999-01-08 00:15:22 +00:00
|
|
|
DISTFILES= inform615_source.zip inform_library68.zip
|
1998-06-28 15:16:08 +00:00
|
|
|
|
1999-05-01 12:34:38 +00:00
|
|
|
MAINTAINER= mph@freebsd.org
|
|
|
|
|
1998-06-28 15:16:08 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
MASTER_SITES+= ftp://ftp.gmd.de/if-archive/infocom/compilers/inform6/manuals/
|
|
|
|
DISTFILES+= designers_manual_html.zip
|
|
|
|
.endif
|
|
|
|
|
|
|
|
DIST_SUBDIR= inform
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
|
1999-05-01 12:34:38 +00:00
|
|
|
EXTRACT_ONLY= inform615_source.zip
|
|
|
|
USE_ZIP= yes
|
1998-06-28 15:16:08 +00:00
|
|
|
|
|
|
|
# I can hardly believe it, but the ".c" and ".h" extensions are
|
|
|
|
# not present on the source files.
|
|
|
|
post-extract:
|
|
|
|
@${MV} ${WRKSRC}/header ${WRKSRC}/header.h
|
|
|
|
.for file in arrays asm bpatch chars directs errors expressc expressp \
|
|
|
|
files inform lexer linker memory objects states symbols syntax \
|
1999-05-01 12:34:38 +00:00
|
|
|
tables text veneer verbs
|
1998-06-28 15:16:08 +00:00
|
|
|
@${MV} ${WRKSRC}/${file} ${WRKSRC}/${file}.c
|
|
|
|
.endfor
|
|
|
|
@${CP} ${FILESDIR}/Makefile.inform ${WRKSRC}/Makefile
|
|
|
|
|
|
|
|
# Install the library files in ${PREFIX}/share/inform. The compiler
|
|
|
|
# is configured to use extensions under Unix, so we need to tack ".h"
|
|
|
|
# onto each filename. Set perms and ownership, because they're odd in
|
|
|
|
# the archive. Many games include "VerbLib" instead of "Verblib" so
|
|
|
|
# make a symlink. Finally, install documentation if appropriate.
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
@${MKDIR} ${PREFIX}/share/inform
|
|
|
|
@(cd ${PREFIX}/share/inform && \
|
1999-01-08 00:15:22 +00:00
|
|
|
unzip -qq ${DISTDIR}/${DIST_SUBDIR}/inform_library68.zip)
|
1998-06-28 15:16:08 +00:00
|
|
|
.for file in English Grammar Parser Verblib linklpa linklv parserm verblibm
|
|
|
|
@${MV} ${PREFIX}/share/inform/${file} ${PREFIX}/share/inform/${file}.h
|
|
|
|
@ chmod ${SHAREMODE} ${PREFIX}/share/inform/${file}.h
|
|
|
|
@ chown ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/inform/${file}.h
|
|
|
|
.endfor
|
|
|
|
@${LN} -s Verblib.h ${PREFIX}/share/inform/VerbLib.h
|
1999-01-08 00:15:22 +00:00
|
|
|
@ chown ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/inform/VerbLib.h \
|
|
|
|
${PREFIX}/share/inform/Relnote
|
|
|
|
@ chmod ${SHAREMODE} ${PREFIX}/share/inform/Relnote
|
1998-06-28 15:16:08 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@ (umask 222 && unzip -qq -d ${PREFIX}/share/doc \
|
|
|
|
${DISTDIR}/${DIST_SUBDIR}/designers_manual_html.zip)
|
|
|
|
@${MV} ${PREFIX}/share/doc/dman ${PREFIX}/share/doc/inform
|
|
|
|
@ chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/inform
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|