diff options
author | marcus <marcus@FreeBSD.org> | 2007-07-15 03:41:01 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2007-07-15 03:41:01 +0800 |
commit | 62fc4df0d2315007040167598f4a75f4a70593a9 (patch) | |
tree | eb70c084c24f95b5fdac2a258a1063454f0c961f | |
parent | fbdfff3dcff3eb65bfc9c892a42add23e7e98daf (diff) | |
download | freebsd-ports-gnome-62fc4df0d2315007040167598f4a75f4a70593a9.tar.gz freebsd-ports-gnome-62fc4df0d2315007040167598f4a75f4a70593a9.tar.zst freebsd-ports-gnome-62fc4df0d2315007040167598f4a75f4a70593a9.zip |
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.
-rw-r--r-- | graphics/poppler/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index 532285edf2fe..fd30d390ad65 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -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" |