1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/print/papersize-default-a4/Makefile
Jimmy Olgeni fa3a17c064 Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles
where not included as they contain Latin-1 characters that break
the Phabricator workflow. Categories P-S.

CR:		D422
Approved by:	portmgr (bapt)
2014-07-17 08:57:51 +00:00

33 lines
653 B
Makefile

# Created by: hrs
# $FreeBSD$
PORTNAME= papersize-default
PORTVERSION= 0.0.20120302
PORTREVISION= 1
CATEGORIES= print
MASTER_SITES= # none
PKGNAMESUFFIX= -${DEFAULTPAPERSIZE:tl}
DISTFILES= # none
MAINTAINER= hrs@FreeBSD.org
COMMENT= Default paper size configuration file for libpaper
LIB_DEPENDS= libpaper.so:${PORTSDIR}/print/libpaper
NO_BUILD= yes
DEFAULTPAPERSIZE?= a4
.for P in a4 letter
.if ${DEFAULTPAPERSIZE:tl:M${P}} != ${P}
CONFLICTS_INSTALL+= papersize-default-${P}-[0-9]*
.endif
.endfor
PLIST_FILES= etc/papersize
do-install:
${LN} -s -f papersize.${DEFAULTPAPERSIZE:tl} \
${STAGEDIR}${PREFIX}/etc/papersize
.include <bsd.port.mk>