From owner-svn-ports-all@freebsd.org Wed Sep 9 18:26:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 659D39CD041; Wed, 9 Sep 2015 18:26:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AD2D199A; Wed, 9 Sep 2015 18:26:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t89IQfV5028899; Wed, 9 Sep 2015 18:26:41 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t89IQfkQ028898; Wed, 9 Sep 2015 18:26:41 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201509091826.t89IQfkQ028898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 9 Sep 2015 18:26:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396527 - head/security/sssd X-SVN-Group: ports-head 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.20 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: Wed, 09 Sep 2015 18:26:41 -0000 Author: danfe Date: Wed Sep 9 18:26:40 2015 New Revision: 396527 URL: https://svnweb.freebsd.org/changeset/ports/396527 Log: - Remove BROKEN statement for Tier-2 systems (tested on PowerPC only due to lots of dependencies and lack of hardware or working SPARC emulation to perform tinderbox tests; c.f. https://reviews.freebsd.org/D2791) - Clean up `post-install' target and fix numerous whitespace issues Modified: head/security/sssd/Makefile Modified: head/security/sssd/Makefile ============================================================================== --- head/security/sssd/Makefile Wed Sep 9 18:21:06 2015 (r396526) +++ head/security/sssd/Makefile Wed Sep 9 18:26:40 2015 (r396527) @@ -5,7 +5,7 @@ PORTNAME= sssd DISTVERSION= 1.11.7 PORTREVISION= 2 CATEGORIES= security -MASTER_SITES= https://fedorahosted.org/released/${PORTNAME}/ \ +MASTER_SITES= https://fedorahosted.org/released/${PORTNAME}/ \ http://mirrors.rit.edu/zi/ MAINTAINER= lukas.slebodnik@intrak.sk @@ -47,7 +47,7 @@ CONFIGURE_ARGS= --with-selinux=no --with --disable-cifs-idmap-plugin --disable-config-lib CFLAGS+= -fstack-protector-all PLIST_SUB= PYTHON_VER=${PYTHON_VER} -#DEBUG_FLAGS= -g +#DEBUG_FLAGS= -g MAKE_ENV+= LINGUAS="bg de eu es fr hu id it ja nb nl pl pt ru sv tg tr uk zh_CN zh_TW" SUB_FILES= pkg-message @@ -59,7 +59,7 @@ PATHFIX_MAKEFILEIN= Makefile.am INSTALL_TARGET= install-strip CPE_VENDOR= fedoraproject -python_CMD= ${SETENV} python2 +python_CMD= ${SETENV} python2 SHEBANG_FILES= src/tools/sss_obfuscate \ src/sbus/sbus_codegen @@ -76,10 +76,6 @@ SMB_CONFIGURE_WITH= samba .include -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= Does not link on ia64, powerpc, or sparc64 -.endif - post-patch: @${REINPLACE_CMD} -e 's|SIGCLD|SIGCHLD|g' ${WRKSRC}/src/util/signal.c @${REINPLACE_CMD} -e 's|NSS_STATUS_NOTFOUND|NS_NOTFOUND|g' \ @@ -102,14 +98,14 @@ post-patch: @${CP} ${FILESDIR}/sss_bsd_errno.h ${WRKSRC}/src/util/sss_bsd_errno.h post-install: - ${INSTALL_DATA} ${WRKSRC}/src/examples/sssd-example.conf ${STAGEDIR}${ETCDIR}/sssd.conf.sample - (cd ${STAGEDIR}${PREFIX}/lib && ${LN} -s nss_sss.so nss_sss.so.1) - - # clean these up from the install; we create them in rc script start_precmd -.for VARDIRS in db/sss db/sss_mc log/sssd run/sss/krb5.include.d run/sss/private run/sss - @${RMDIR} ${STAGEDIR}/var/${VARDIRS} + ${INSTALL_DATA} ${WRKSRC}/src/examples/sssd-example.conf \ + ${STAGEDIR}${ETCDIR}/sssd.conf.sample + ${LN} -sf nss_sss.so ${STAGEDIR}${PREFIX}/lib/nss_sss.so.1 +# clean these up from the install; we create them in rc script start_precmd +.for d in db/sss db/sss_mc log/sssd run/sss/krb5.include.d run/sss/private run/sss + @${RMDIR} ${STAGEDIR}/var/${d} .endfor - # clean unused man dirs +# clean unused man dirs .for i in nl/man1 nl/man5 pt/man1 pt/man5 @${RMDIR} ${STAGEDIR}${PREFIX}/man/${i} .endfor