blob: c627f255bf25b319a8f4cc5f3a2e359d5731915c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: c2ps
# Version required: 4.0
# Date created: 19 March 1997
# Whom: Matthew Hunt <mph@pobox.com>
#
# $Id: Makefile,v 1.4 1998/02/26 04:32:17 asami Exp $
#
DISTNAME= c2ps-4.0
PKGNAME= c2ps-${PAPERSIZE:S/A4/a4/:S/LETTER/letter/:S/Letter/letter/}-4.0
CATEGORIES= print
MASTER_SITES= http://www.cs.technion.ac.il/users/c2ps/
MAINTAINER= mph@freebsd.org
MANUAL_PACKAGE_BUILD= PAPERSIZE has to be set to Letter A4
MAN1= c2ps.1
MAKE_ENV= DEFAULT_PAPER_TYPE=${PAPERSIZE}
.if !defined(PAPERSIZE)
PAPERSIZE=A4
.elif ${PAPERSIZE} == letter || ${PAPERSIZE} == Letter
PAPERSIZE=LETTER
.elif ${PAPERSIZE} == a4
PAPERSIZE=A4
.elif ${PAPERSIZE} != A4 && ${PAPERSIZE} != LETTER
PAPERSIZE_INVALID=yes
.endif
pre-fetch:
.if defined(PAPERSIZE_INVALID)
@${ECHO} "Invalid value for PAPERSIZE: \"${PAPERSIZE}\""
@${ECHO} "Possible values are: A4 (default), and Letter."
@${FALSE}
.endif
.include <bsd.port.mk>
|