From owner-svn-ports-all@freebsd.org Fri Feb 23 10:04:18 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 358C1F10813; Fri, 23 Feb 2018 10:04:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DC0C076B8D; Fri, 23 Feb 2018 10:04:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D2FD015197; Fri, 23 Feb 2018 10:04:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1NA4Hxq033526; Fri, 23 Feb 2018 10:04:17 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1NA4HRk033525; Fri, 23 Feb 2018 10:04:17 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802231004.w1NA4HRk033525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 23 Feb 2018 10:04:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462684 - head/security/sssd X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/security/sssd X-SVN-Commit-Revision: 462684 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Feb 2018 10:04:18 -0000 Author: yuri Date: Fri Feb 23 10:04:17 2018 New Revision: 462684 URL: https://svnweb.freebsd.org/changeset/ports/462684 Log: security/sssd: Fixed missing dependency Timeout expired, maintainer lukas.slebodnik@intrak.sk PR: 224572 Submitted by: Phillip R. Jaenke Approved by: tcberner (mentor, implicit) Modified: head/security/sssd/Makefile Modified: head/security/sssd/Makefile ============================================================================== --- head/security/sssd/Makefile Fri Feb 23 09:47:49 2018 (r462683) +++ head/security/sssd/Makefile Fri Feb 23 10:04:17 2018 (r462684) @@ -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 path INSTALL_TARGET= install-strip CPE_VENDOR= fedoraproject -python_CMD= ${SETENV} ${PYTHON_VERSION} SHEBANG_FILES= src/tools/sss_obfuscate \ src/sbus/sbus_codegen