diff options
author | yuri <yuri@FreeBSD.org> | 2018-02-23 18:04:17 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-02-23 18:04:17 +0800 |
commit | d2317a3bca9d61899de0c04594f588c2d5bd9b59 (patch) | |
tree | 86f5fec4aa0a9351ee60d3c1207f721cc5d69dfe | |
parent | 79e8e70508e196f78c521837cdbca3d5843f4356 (diff) | |
download | freebsd-ports-gnome-d2317a3bca9d61899de0c04594f588c2d5bd9b59.tar.gz freebsd-ports-gnome-d2317a3bca9d61899de0c04594f588c2d5bd9b59.tar.zst freebsd-ports-gnome-d2317a3bca9d61899de0c04594f588c2d5bd9b59.zip |
security/sssd: Fixed missing dependency
Timeout expired, maintainer lukas.slebodnik@intrak.sk
PR: 224572
Submitted by: Phillip R. Jaenke <prj@rootwyrm.com>
Approved by: tcberner (mentor, implicit)
-rw-r--r-- | security/sssd/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/security/sssd/Makefile b/security/sssd/Makefile index 82005df11046..10ab2ce3c315 100644 --- a/security/sssd/Makefile +++ b/security/sssd/Makefile @@ -3,7 +3,7 @@ PORTNAME= sssd PORTVERSION= 1.11.7 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= security MASTER_SITES= https://releases.pagure.org/SSSD/${PORTNAME}/ @@ -25,7 +25,8 @@ LIB_DEPENDS= libpopt.so:devel/popt \ libunistring.so:devel/libunistring \ libnss3.so:security/nss \ libsasl2.so:security/cyrus-sasl2 \ - libinotify.so:devel/libinotify + libinotify.so:devel/libinotify \ + libplds4.so:devel/nspr BUILD_DEPENDS= xmlcatalog:textproc/libxml2 \ docbook-xsl>=1:textproc/docbook-xsl \ xsltproc:textproc/libxslt \ @@ -43,7 +44,8 @@ CONFIGURE_ARGS= --with-selinux=no --with-semanage=no \ --with-db-path=/var/db/sss --with-pipe-path=/var/run/sss \ --with-pubconf-path=/var/run/sss --with-mcache-path=/var/db/sss_mc \ --with-unicode-lib=libunistring --with-autofs=no \ - --disable-cifs-idmap-plugin --disable-config-lib + --disable-cifs-idmap-plugin --disable-config-lib \ + --with-krb5-conf=/etc/krb5.conf CFLAGS+= -fstack-protector-all PLIST_SUB= PYTHON_VER=${PYTHON_VER} #DEBUG_FLAGS= -g @@ -57,7 +59,6 @@ USES= autoreconf cpe gettext gmake iconv libtool pathfix pkgconfig \ INSTALL_TARGET= install-strip CPE_VENDOR= fedoraproject -python_CMD= ${SETENV} ${PYTHON_VERSION} SHEBANG_FILES= src/tools/sss_obfuscate \ src/sbus/sbus_codegen |