diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-10-10 06:42:55 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-10-10 06:42:55 +0800 |
commit | 70c249fc78180a4385872ae9a287962c540e5b81 (patch) | |
tree | 1faa6be1fe248bcd5e92c74e9904de703f8fac89 /graphics/poppler | |
parent | 0e8c2d8b1ca0e62ea0e8731ae9ab42337e33df4d (diff) | |
download | freebsd-ports-gnome-70c249fc78180a4385872ae9a287962c540e5b81.tar.gz freebsd-ports-gnome-70c249fc78180a4385872ae9a287962c540e5b81.tar.zst freebsd-ports-gnome-70c249fc78180a4385872ae9a287962c540e5b81.zip |
graphics/poppler: ignore installed NSS for now
$ make install -C security/nss
$ DEVELOPER=1 make -C graphics/poppler
[...]
====> Running Q/A tests (stage-qa)
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libnss3.so from security/nss but it is not declared as a dependency
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libsmime3.so from security/nss but it is not declared as a dependency
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libssl3.so from security/nss but it is not declared as a dependency
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/nss/libnssutil3.so from security/nss but it is not declared as a dependency
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/libplds4.so from devel/nspr but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libplds4.so:devel/nspr
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/libplc4.so from devel/nspr but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libplc4.so:devel/nspr
Error: /usr/local/lib/libpoppler.so.63.0.0 is linked to /usr/local/lib/libnspr4.so from devel/nspr but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libnspr4.so:devel/nspr
Reported by: Walter Schwarzenfeld (via r423591 regression)
Approved by: portmgr blanket
Diffstat (limited to 'graphics/poppler')
-rw-r--r-- | graphics/poppler/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index 206a9507a840..15b7b45c48f4 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -3,7 +3,7 @@ PORTNAME= poppler PORTVERSION= 0.46.0 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= graphics print MASTER_SITES= http://poppler.freedesktop.org/ @@ -27,6 +27,7 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-zlib \ --enable-xpdf-headers \ + --disable-libnss \ --disable-gtk-test \ --without-html-dir \ --disable-static |