summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-09-18 05:50:04 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-09-18 05:50:04 +0800
commit3af65dd8cb159f90cf84f0b29ecc20252bcfa45d (patch)
tree7a193f078c731bfec86301d75a52d0b02325cf7a /graphics
parent405badd9a7004e0f501182c8e9e3fa04a8689451 (diff)
downloadmarcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.tar
marcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.tar.gz
marcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.tar.bz2
marcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.tar.lz
marcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.tar.xz
marcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.tar.zst
marcuscom-ports-3af65dd8cb159f90cf84f0b29ecc20252bcfa45d.zip
Only depend on cairo if we want cairo support.
PR: 102711 Submitted by: Shane Bell <decept0@gmail.com> git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7326 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r--graphics/poppler/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile
index c7a8d5d71..8abb98e4b 100644
--- a/graphics/poppler/Makefile
+++ b/graphics/poppler/Makefile
@@ -3,20 +3,18 @@
# Whom: marcus@FreeBSD.org
#
# $FreeBSD$
-# $MCom: ports/graphics/poppler/Makefile,v 1.26 2006/07/18 19:54:44 ahze Exp $
+# $MCom: ports/graphics/poppler/Makefile,v 1.27 2006/09/10 00:51:11 mezz Exp $
#
PORTNAME= poppler
PORTVERSION= 0.5.3
-PORTREVISION?= 2
+PORTREVISION?= 3
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
GNU_CONFIGURE= yes
USE_GNOME= gnomehack gnometarget
@@ -60,6 +58,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