mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
0d18bf9bf1
PR: 112427 Submitted by: Simon Olofsson <simon@olofsson.de> (maintainer)
103 lines
3.0 KiB
Makefile
103 lines
3.0 KiB
Makefile
# New ports collection makefile for: cups-pdf
|
|
# Date created: Jun 15 2004
|
|
# Whom: Mark Reidel <ports@mark.reidel.info>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cups-pdf
|
|
PORTVERSION= 2.4.6
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://www.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/src/ \
|
|
http://olofsson.de/distfiles/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= simon@olofsson.de
|
|
COMMENT= A virtual printer for CUPS to produce PDF files
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/cupsd:${PORTSDIR}/print/cups-base
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
USE_GHOSTSCRIPT_RUN= yes
|
|
|
|
SUBST_CMD= -e "s,\#GhostScript /usr/bin/gs,GhostScript ${LOCALBASE}/bin/gs," \
|
|
-e 's,\#GSTmp /var/tmp,GSTmp /tmp,' \
|
|
-e 's,\#Grp lp,Grp daemon,' \
|
|
-e 's,\#Spool /var/spool/cups-pdf/SPOOL,Spool /var/spool/cups-pdf,'
|
|
|
|
.ifdef(PDF_VERSION)
|
|
.if ${PDF_VERSION} == 1.2
|
|
.elif ${PDF_VERSION} == 1.3
|
|
.elif ${PDF_VERSION} == 1.4
|
|
.elif ${PDF_VERSION} == 1.5
|
|
.else
|
|
BROKEN= Unsupported PDF-Version selected: ${PDF_VERSION}
|
|
.endif
|
|
SUBST_CMD+= -e "s,\#PDFVer 1.4,PDFVer ${PDF_VERSION},"
|
|
.endif
|
|
|
|
.ifdef(HOME_SUBDIR)
|
|
SUBST_CMD+= -e 's,\#Out /var/spool/cups-pdf/$${USER},Out $${HOME}/${HOME_SUBDIR},'
|
|
.else
|
|
.ifdef(OUTPUT_DIRECTORY)
|
|
SUBST_CMD+= -e 's,\#Out /var/spool/cups-pdf/$${USER},Out ${OUTPUT_DIRECTORY},'
|
|
.endif
|
|
.endif
|
|
|
|
.ifdef(LOG_DIRECTORY)
|
|
SUBST_CMD+= -e "s,\#Log /var/log/cups,Log ${LOG_DIRECTORY},"
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(PDF_VERSION) || !defined(HOME_SUBDIR) || \
|
|
!defined(OUTPUT_DIRECTORY) || !defined(LOG_DIRECTORY)
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "You may use the following build options:"
|
|
@${ECHO_MSG} ""
|
|
.endif
|
|
.if !defined(PDF_VERSION)
|
|
@${ECHO_MSG} "PDF_VERSION=1.2|1.3|1.4|1.5 PDF-version of PDF-files produced"
|
|
.endif
|
|
.if !defined(HOME_SUBDIR)
|
|
@${ECHO_MSG} "HOME_SUBDIR=<subdir> Place produced PDF-files in the"
|
|
@${ECHO_MSG} " directory ~/<subdir>/"
|
|
.endif
|
|
.if !defined(OUTPUT_DIRECTORY)
|
|
@${ECHO_MSG} "OUTPUT_DIRECTORY=<dir> Place produced PDF-files in the"
|
|
@${ECHO_MSG} " directory <dir>/"
|
|
.endif
|
|
.if !defined(LOG_DIRECTORY)
|
|
@${ECHO_MSG} "LOG_DIRECTORY=<dir> Place logfile into <dir>/cups-pdf_log"
|
|
.endif
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} ${SUBST_CMD} ${WRKSRC}/extra/cups-pdf.conf
|
|
@${REINPLACE_CMD} -e \
|
|
's,CPCONFIG "/etc/cups/cups-pdf.conf",CPCONFIG "${PREFIX}/etc/cups/cups-pdf.conf",' \
|
|
${WRKSRC}/src/cups-pdf.h
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/src; ${CC} ${CFLAGS} -o cups-pdf cups-pdf.c
|
|
|
|
do-install:
|
|
${INSTALL} -o root -g wheel -m 0700 ${WRKSRC}/src/cups-pdf ${PREFIX}/libexec/cups/backend
|
|
${INSTALL_DATA} ${WRKSRC}/extra/PostscriptColor.ppd \
|
|
${PREFIX}/share/cups/model/PostscriptColor.ppd
|
|
${INSTALL_DATA} ${WRKSRC}/extra/cups-pdf.conf \
|
|
${PREFIX}/etc/cups/cups-pdf.conf.sample
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
|
|
.endif
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/cups/cups-pdf.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/cups/cups-pdf.conf.sample \
|
|
${PREFIX}/etc/cups/cups-pdf.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.post.mk>
|