diff options
author | jmz <jmz@FreeBSD.org> | 1996-03-29 07:25:40 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1996-03-29 07:25:40 +0800 |
commit | 3c253e43bcd4fe0b3e9b27ac4cfd58db06f4ca67 (patch) | |
tree | 7294649c6ec8971779b092d2661d4c97e4021190 /print | |
parent | 9e6a2d584e5e3a8ecfba72cd3e24d6df607e0e07 (diff) | |
download | freebsd-ports-gnome-3c253e43bcd4fe0b3e9b27ac4cfd58db06f4ca67.tar.gz freebsd-ports-gnome-3c253e43bcd4fe0b3e9b27ac4cfd58db06f4ca67.tar.zst freebsd-ports-gnome-3c253e43bcd4fe0b3e9b27ac4cfd58db06f4ca67.zip |
Do not mkdir ${PREFIX}/man nor ${PREFIX}/bin
Compress man pages
Diffstat (limited to 'print')
-rw-r--r-- | print/psutils-letter/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/print/psutils-letter/Makefile b/print/psutils-letter/Makefile index 71855bfb0f03..ea43c58f2aea 100644 --- a/print/psutils-letter/Makefile +++ b/print/psutils-letter/Makefile @@ -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> |