summaryrefslogtreecommitdiff
path: root/games/inform
diff options
context:
space:
mode:
authorMatthew Hunt <mph@FreeBSD.org>1999-05-23 20:43:27 +0000
committerMatthew Hunt <mph@FreeBSD.org>1999-05-23 20:43:27 +0000
commite92723e7da523aaf6570a632c3e64c351a2cfa3a (patch)
tree47e0a36789278d37f1aca1435b484d3d39a1bf44 /games/inform
parent"Shouldn't that be "letter" rather than "a4" since "letter" works with (diff)
Install and package documentation more correctly.
Notes
Notes: svn path=/head/; revision=18953
Diffstat (limited to 'games/inform')
-rw-r--r--games/inform/Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/games/inform/Makefile b/games/inform/Makefile
index d5720b475eef..e5541a1cfadf 100644
--- a/games/inform/Makefile
+++ b/games/inform/Makefile
@@ -3,7 +3,7 @@
# Date created: 28 June 1998
# Whom: Matthew Hunt <mph@FreeBSD.org>
#
-# $Id: Makefile,v 1.5 1999/05/02 19:11:30 mharo Exp $
+# $Id: Makefile,v 1.6 1999/05/02 21:10:44 mph Exp $
#
DISTNAME= inform-6.21
@@ -45,19 +45,21 @@ post-extract:
post-install:
@${MKDIR} ${PREFIX}/share/inform
@(cd ${PREFIX}/share/inform && \
- unzip -qq ${DISTDIR}/${DIST_SUBDIR}/inform_library69.zip)
+ unzip -qq -o ${DISTDIR}/${DIST_SUBDIR}/inform_library69.zip)
.for file in English Grammar Parser Verblib infix 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
+ @${LN} -fs Verblib.h ${PREFIX}/share/inform/VerbLib.h
@ chown ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/inform/VerbLib.h
.if !defined(NOPORTDOCS)
- @ (umask 222 && unzip -qq -d ${PREFIX}/share/doc \
+ @ (umask 222 && unzip -qq -o -d ${PREFIX}/share/doc \
${DISTDIR}/${DIST_SUBDIR}/designers_manual_html.zip)
- @${MV} ${PREFIX}/share/doc/dman ${PREFIX}/share/doc/inform
+ @${MKDIR} ${PREFIX}/share/doc/inform
+ @${MV} ${PREFIX}/share/doc/dman/* ${PREFIX}/share/doc/inform
+ @${RMDIR} ${PREFIX}/share/doc/dman
@ chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/inform
.endif