diff options
Diffstat (limited to 'print/mp-letter/Makefile')
-rw-r--r-- | print/mp-letter/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/print/mp-letter/Makefile b/print/mp-letter/Makefile index 684ad73..cf01e60 100644 --- a/print/mp-letter/Makefile +++ b/print/mp-letter/Makefile @@ -1,9 +1,9 @@ -# New ports collection makefile for: mp +# New ports collection makefile for: mp (letter) # Version required: 3.0.1 # Date created: 11 July 1996 # Whom: David O'Brien <obrien@cs.ucdavis.edu> # -# $Id: Makefile,v 1.8 1998/09/19 01:40:37 hoek Exp $ +# $Id: Makefile,v 1.9 1998/10/30 08:35:37 asami Exp $ # DISTNAME= mp-3.0.1 @@ -14,17 +14,14 @@ MASTER_SITES= ftp://ftp.NUXI.com/pub/misc/ \ MAINTAINER= obrien@FreeBSD.org -LOOP_VAR= PAPERSIZE -LOOP_OPTIONS= letter a4 WRKSRC= ${WRKDIR}/mp MAN1= mp.1 MLINKS= mp.1 digestp.1 - filep.1 - filofaxp.1 \ - franklinp.1 - mailp.1 - newsp.1 \ - timemanp.1 - timesysp.1 -.if !defined(PAPERSIZE) -PAPERSIZE=letter -.elif ${PAPERSIZE} == A4 || ${PAPERSIZE} == a4 +PAPERSIZE?= letter +.if ${PAPERSIZE} == a4 INSTALL_TARGET= install-a4 .endif |