mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
01d088ee13
The definition of STAGEDIR isn't necessary, it was left over from an earlier version of stage support. PR: 185989
29 lines
573 B
Makefile
29 lines
573 B
Makefile
# Created by: David O'Brien <obrien@cs.ucdavis.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mp-${PAPERSIZE}
|
|
PORTVERSION= 3.0.1
|
|
CATEGORIES= print
|
|
MASTER_SITES= LOCAL/obrien
|
|
DISTNAME= mp-3.0.1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PostScript printing util for ASCII files
|
|
|
|
WRKSRC= ${WRKDIR}/mp
|
|
LINKS= digestp filep filofaxp franklinp mailp newsp timemanp timesysp
|
|
|
|
PAPERSIZE?= letter
|
|
.if ${PAPERSIZE:tl} == a4
|
|
INSTALL_TARGET= install-a4
|
|
.endif
|
|
|
|
MAKEFILE= Makefile.dist
|
|
|
|
post-install:
|
|
.for a in ${LINKS}
|
|
${LN} -sf mp.1 ${STAGEDIR}${PREFIX}/man/man1/${a}.1
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|