diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2012-03-17 09:34:50 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2012-03-17 09:34:50 +0000 |
commit | 350c353727e14e33773170008d1454d5d599a0e0 (patch) | |
tree | 5e56c9f5f41218efb7fac63eb12c8ee34b655511 /print/papersize-default-a4 | |
parent | 5f190aa347e3f1c22112c578ca3f6b2a08b4b45c (diff) | |
download | ports-350c353727e14e33773170008d1454d5d599a0e0.tar.gz ports-350c353727e14e33773170008d1454d5d599a0e0.zip |
Notes
Diffstat (limited to 'print/papersize-default-a4')
-rw-r--r-- | print/papersize-default-a4/Makefile | 34 | ||||
-rw-r--r-- | print/papersize-default-a4/pkg-descr | 2 |
2 files changed, 36 insertions, 0 deletions
diff --git a/print/papersize-default-a4/Makefile b/print/papersize-default-a4/Makefile new file mode 100644 index 000000000000..346ab3a383c5 --- /dev/null +++ b/print/papersize-default-a4/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: papersize-default-a4 +# Date created: March 2, 2012 +# Whom: hrs +# +# $FreeBSD$ +# + +PORTNAME= papersize-default +PORTVERSION= 0.0.20120302 +CATEGORIES= print +MASTER_SITES= # none +PKGNAMESUFFIX= -${DEFAULTPAPERSIZE:L} +DISTFILES= # none + +MAINTAINER= hrs@FreeBSD.org +COMMENT= A default paper size configuration file for libpaper + +LIB_DEPENDS= paper:${PORTSDIR}/print/libpaper + +NO_BUILD= yes + +DEFAULTPAPERSIZE?= a4 +.for P in a4 letter +.if ${DEFAULTPAPERSIZE:L:M${P}} != ${P} +CONFLICTS+= papersize-default-${P}-[0-9]* +.endif +.endfor + +PLIST_FILES= etc/papersize + +do-install: + ${LN} -s -f papersize.${DEFAULTPAPERSIZE:L} ${PREFIX}/etc/papersize + +.include <bsd.port.mk> diff --git a/print/papersize-default-a4/pkg-descr b/print/papersize-default-a4/pkg-descr new file mode 100644 index 000000000000..6ecb5da869ed --- /dev/null +++ b/print/papersize-default-a4/pkg-descr @@ -0,0 +1,2 @@ +This installs a libpaper configuration file to set the default paper size as +A4. |