Make this port install docs in the right place. If you create

${PREFIX}/share/doc/v, and do a cp -r foo/doc ${PREFIX}/share/doc/v,
cp will create a new directory "share/doc/v/doc"....
This commit is contained in:
Satoshi Asami 1998-02-16 13:28:18 +00:00
parent d44a58abe9
commit f28b26a308
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9755

View File

@ -3,7 +3,7 @@
# Date created: 8 Feb 1998
# Whom: Donald Burr <dburr@POBoxes.com>
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1998/02/10 07:05:12 jkh Exp $
#
DISTNAME= v-1.17
@ -30,7 +30,7 @@ post-install:
.else
@echo "==> Installing extra docs under ${PREFIX}/share/doc/v..."
${MKDIR} ${PREFIX}/share/doc/v
${CP} -R ${WRKSRC}/doc ${PREFIX}/share/doc/v
${CP} -R ${WRKSRC}/doc/* ${PREFIX}/share/doc/v
find ${PREFIX}/share/doc/v -type d -exec chmod 755 {} \;
find ${PREFIX}/share/doc/v -type f -exec chmod 644 {} \;
@echo "==> Extra docs installed. Note, you will need *tex to read 'em."