diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-20 04:15:15 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-20 04:15:15 +0000 |
commit | 751790b51ae4c1152e8944cbaf99d49b1377e95b (patch) | |
tree | 086c03d44a933a34d3f086e2ad7487d5d6b2872d /print/mp-letter | |
parent | 1007d89b1e30bdb9e77bc765b023f4e3c60f6982 (diff) | |
download | ports-751790b51ae4c1152e8944cbaf99d49b1377e95b.tar.gz ports-751790b51ae4c1152e8944cbaf99d49b1377e95b.zip |
Notes
Diffstat (limited to 'print/mp-letter')
-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 684ad73f476d..cf01e60f958a 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 |