mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
29 lines
666 B
Makefile
29 lines
666 B
Makefile
# New ports collection makefile for: c2ps (letter)
|
|
# Date created: 19 March 1997
|
|
# Whom: Matthew Hunt <mph@pobox.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= c2ps-${PAPERSIZE}
|
|
PORTVERSION= 4.0
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://www.cs.technion.ac.il/users/c2ps/
|
|
DISTNAME= c2ps-${PORTVERSION}
|
|
|
|
MAINTAINER= mph@freebsd.org
|
|
|
|
MAN1= c2ps.1
|
|
MAKE_ENV= DEFAULT_PAPER_TYPE=${PS}
|
|
|
|
PAPERSIZE?= letter
|
|
PS!= echo ${PAPERSIZE} | awk '{print toupper($$1)}'
|
|
.if ${PAPERSIZE} != a4 && ${PAPERSIZE} != letter
|
|
.BEGIN:
|
|
@${ECHO} "Invalid value for PAPERSIZE: \"${PAPERSIZE}\""
|
|
@${ECHO} "Possible values are: a4, and letter."
|
|
@${FALSE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|