aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2006-09-18 05:51:24 +0800
committermarcus <marcus@FreeBSD.org>2006-09-18 05:51:24 +0800
commit7fae3bdc2716480149f43a1cb4a53940263fc9c0 (patch)
treea75877726f75c54ef974a6bac337102f120b695b /graphics
parent9660a7f24eeec2b1369c6126467e4098f3109084 (diff)
downloadfreebsd-ports-gnome-7fae3bdc2716480149f43a1cb4a53940263fc9c0.tar.gz
freebsd-ports-gnome-7fae3bdc2716480149f43a1cb4a53940263fc9c0.tar.zst
freebsd-ports-gnome-7fae3bdc2716480149f43a1cb4a53940263fc9c0.zip
Only depend on cairo if we want cairo support.
PR: 102711 Submitted by: Shane Bell <decept0@gmail.com>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/poppler/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile
index d69896782934..2187c2dbe9e8 100644
--- a/graphics/poppler/Makefile
+++ b/graphics/poppler/Makefile
@@ -8,15 +8,13 @@
PORTNAME= poppler
PORTVERSION= 0.5.3
-PORTREVISION?= 0
+PORTREVISION?= 1
CATEGORIES= graphics print
MASTER_SITES= http://poppler.freedesktop.org/
MAINTAINER?= gnome@FreeBSD.org
COMMENT?= A PDF rendering library
-LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo
-
USE_GMAKE= yes
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
@@ -61,6 +59,8 @@ CONFIGURE_ARGS+=--disable-poppler-glib --disable-poppler-qt \
--disable-poppler-qt4 --disable-utils
.if defined(WITHOUT_CAIRO)
CONFIGURE_ARGS+= --disable-cairo-output
+.else
+LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo
.endif
.endif