1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00

Do not mkdir ${PREFIX}/man nor ${PREFIX}/bin

Compress man pages
This commit is contained in:
Jean-Marc Zucconi 1996-03-28 23:25:40 +00:00
parent 57263ac952
commit 0a3a799382
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=2899

View File

@ -3,7 +3,7 @@
# Date created: 21 September 1994
# Whom: jmz
#
# $Id: Makefile,v 1.6 1995/04/15 04:34:04 asami Exp $
# $Id: Makefile,v 1.7 1995/11/22 13:18:23 asami Exp $
#
DISTNAME= psutils-1.13
@ -16,7 +16,13 @@ WRKSRC= $(WRKDIR)/src-1.3
pre-install:
@mkdir -p ${PREFIX}/share/psutils
@mkdir -p ${PREFIX}/man/man1
@mkdir -p ${PREFIX}/bin
post-install:
.if !defined(NOMANCOMPRESS)
@for f in psbook.1 psselect.1 pstops.1 epsffit.1 psnup.1 psresize.1 \
getafm.1 fixdlsrps.1 fixfmps.1 fixmacps.1 fixpsditps.1 fixpspps.1 \
fixtpps.1 fixwfwps.1 fixwpps.1 fixwwps.1 extractres.1 includeres.1; do \
gzip -nf ${PREFIX}/man/man1/$$f; done
.endif
.include <bsd.port.mk>