diff options
author | steve <steve@FreeBSD.org> | 1998-02-15 21:24:52 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-02-15 21:24:52 +0000 |
commit | 7fe434d01d495c68a8fc9603ed9a5ac7f54f9921 (patch) | |
tree | 713241cc3c7d8fa58b56028f70f7f2a16f3fc147 /print/a2ps-letter/Makefile | |
parent | e2b4549eafd7ca0e92a3d1785e0a353bf422cb79 (diff) | |
download | FreeBSD-ports-7fe434d01d495c68a8fc9603ed9a5ac7f54f9921.zip FreeBSD-ports-7fe434d01d495c68a8fc9603ed9a5ac7f54f9921.tar.gz |
Update to version 4.9.9 and portlint.
PR: 5756
Submitted by: Brian Handy <handy@lambic.spasci.com>
Diffstat (limited to 'print/a2ps-letter/Makefile')
-rw-r--r-- | print/a2ps-letter/Makefile | 47 |
1 files changed, 22 insertions, 25 deletions
diff --git a/print/a2ps-letter/Makefile b/print/a2ps-letter/Makefile index 13d0872..3965a35 100644 --- a/print/a2ps-letter/Makefile +++ b/print/a2ps-letter/Makefile @@ -1,21 +1,19 @@ # New ports collection makefile for: a2ps -# Version required: 4.9.7 +# Version required: 4.9.9 # Date created: 18 August 1997 # Whom: Chuck Robey (chuckr@freebsd.org) # -# $Id: Makefile,v 1.10 1997/10/11 02:57:02 chuckr Exp $ +# $Id: Makefile,v 1.11 1997/11/10 11:23:14 asami Exp $ # -DISTNAME= a2ps -PKGNAME= a2ps-${PAPERSIZE}-4.9.8 +DISTNAME= a2ps-4.9.9 +PKGNAME= a2ps-${PAPERSIZE}-4.9.9 CATEGORIES= print MASTER_SITES= http://www-inf.enst.fr/~demaille/ftp/a2ps/ -DISTFILES= a2ps-4.9.8.tar.gz MAINTAINER= chuckr@FreeBSD.org MANUAL_PACKAGE_BUILD= PAPERSIZE has to be set to Letter A4 -WRKSRC= $(WRKDIR)/$(DISTNAME)-4.9.8 GNU_CONFIGURE= yes MAN1= a2ps.1 ogonkify.1 @@ -23,7 +21,6 @@ PAPERSIZE?= STRIP= CONFIGURE_ARGS= --with-medium=$(PAPERSIZE) - Letter:: $(MAKE) PAPERSIZE=Letter @@ -43,34 +40,34 @@ a4:: $(MAKE) PAPERSIZE=A4 pre-build: - /usr/bin/touch $(WRKSRC)/doc/*.info - /usr/bin/touch $(WRKSRC)/doc/*.dvi + ${TOUCH} $(WRKSRC)/doc/*.info + ${TOUCH} $(WRKSRC)/doc/*.dvi pre-configure: .if empty(PAPERSIZE) - @echo - @echo "PAPERSIZE not specified." - @echo - @echo "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" - @echo "using setenv, or via Makefile targets of the same name. Note" - @echo "that each PAPERSIZE has a leading capital letter, and Letterdj" - @echo "allows a slightly larger margins for DeskJets." + @${ECHO} + @${ECHO} "PAPERSIZE not specified." + @${ECHO} + @${ECHO} "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" + @${ECHO} "using setenv, or via Makefile targets of the same name. Note" + @${ECHO} "that each PAPERSIZE has a leading capital letter, and Letterdj" + @${ECHO} "allows a slightly larger margins for DeskJets." @false .elif $(PAPERSIZE)!=A4 && $(PAPERSIZE)!=Letter && $(PAPERSIZE)!=Letterdj - @echo - @echo "PAPERSIZE incorrect value: $(PAPERSIZE)." - @echo - @echo "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" - @echo "using setenv, or via Makefile targets of the same name. Note" - @echo "that each PAPERSIZE has a leading capital letter, and Letterdj" - @echo "allows a slightly larger margins for DeskJets." + @${ECHO} + @${ECHO} "PAPERSIZE incorrect value: $(PAPERSIZE)." + @${ECHO} + @${ECHO} "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" + @${ECHO} "using setenv, or via Makefile targets of the same name. Note" + @${ECHO} "that each PAPERSIZE has a leading capital letter, and Letterdj" + @${ECHO} "allows a slightly larger margins for DeskJets." @false .endif - echo $(PAPERSIZE) > $(WRKDIR)/.media + ${ECHO} $(PAPERSIZE) > $(WRKDIR)/.media .include <bsd.port.mk> .if exists($(WRKDIR)/.media) PAPERSIZE= -PAPERSIZE!= cat $(WRKDIR)/.media +PAPERSIZE!= ${CAT} $(WRKDIR)/.media .endif |