diff options
author | kwm <kwm@FreeBSD.org> | 2014-02-08 18:25:02 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2014-02-08 18:25:02 +0800 |
commit | 3403f3feaf8267c4b507d54b15590d820e3c823f (patch) | |
tree | f5761ec5c6dbf6702f00804487338a1c2e592118 /graphics/inkscape | |
parent | 68938875f09568a90568c12d96ee1be6730b602a (diff) | |
download | freebsd-ports-gnome-3403f3feaf8267c4b507d54b15590d820e3c823f.tar.gz freebsd-ports-gnome-3403f3feaf8267c4b507d54b15590d820e3c823f.tar.zst freebsd-ports-gnome-3403f3feaf8267c4b507d54b15590d820e3c823f.zip |
Only disable poppler is the option is unset, not always. This was
overlooked when inkscape was converted to new options.
PR: ports/186528
Reported by: Yuri <yuri@tsoft.com>
Diffstat (limited to 'graphics/inkscape')
-rw-r--r-- | graphics/inkscape/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index 9c8fdc45d38d..71a095cb0a85 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -3,7 +3,7 @@ PORTNAME= inkscape PORTVERSION= 0.48.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics gnome MASTER_SITES= SF MASTER_SITE_SUBDIR=${PORTNAME:L}/${PORTNAME:L}/${PORTVERSION} @@ -65,7 +65,7 @@ post-patch: @${REINPLACE_CMD} -e 's|libpng >= 1.2|libpng15 >= 1.2|g' \ -e 's|-ldl||g' \ ${WRKSRC}/configure -.if !defined(WITH_POPPLER) +.if ! ${PORT_OPTIONS:MPOPPLER} @${REINPLACE_CMD} -e 's|poppler|pdisable|g' \ ${WRKSRC}/configure .endif |