1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-06 01:57:40 +00:00

Fix detection of cairo support after the last commit. Cairo support was

only being enabled when SLAVEPORT was defined, and this had the potential
of breaking package builds.
This commit is contained in:
Joe Marcus Clarke 2007-07-14 19:41:01 +00:00
parent abc1d055be
commit 263fd9e2de
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=195600

View File

@ -8,7 +8,7 @@
PORTNAME= poppler
PORTVERSION= 0.5.9
PORTREVISION?= 1
PORTREVISION?= 2
CATEGORIES= graphics print
MASTER_SITES= http://poppler.freedesktop.org/
@ -76,13 +76,13 @@ MAN1= pdffonts.1 pdfimages.1 pdfinfo.1 \
.else
CONFIGURE_ARGS+=--disable-utils
.endif
.endif
.if defined(WITHOUT_CAIRO)
CONFIGURE_ARGS+= --disable-cairo-output
.else
LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo
.endif
.endif
post-patch:
.if defined(SLAVEPORT) && ${SLAVEPORT}=="qt"