From owner-svn-ports-head@FreeBSD.ORG Thu Apr 24 03:53:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 323FAC24; Thu, 24 Apr 2014 03:53:31 +0000 (UTC) Received: from svn.freebsd.org (svn.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 04BF71FC4; Thu, 24 Apr 2014 03:53:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3O3rUKG010276; Thu, 24 Apr 2014 03:53:30 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3O3rUZd010273; Thu, 24 Apr 2014 03:53:30 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201404240353.s3O3rUZd010273@svn.freebsd.org> From: Cy Schubert Date: Thu, 24 Apr 2014 03:53:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351983 - in head/security: krb5 krb5-appl krb5-maint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2014 03:53:31 -0000 Author: cy Date: Thu Apr 24 03:53:30 2014 New Revision: 351983 URL: http://svnweb.freebsd.org/changeset/ports/351983 QAT: https://qat.redports.org/buildarchive/r351983/ Log: Finely tune KRB5_HOME test when using LIB_DEPENDS. in the case when KRB5_HOME is set to LOCALBASE. Modified: head/security/krb5-appl/Makefile head/security/krb5-maint/Makefile head/security/krb5/Makefile Modified: head/security/krb5-appl/Makefile ============================================================================== --- head/security/krb5-appl/Makefile Thu Apr 24 01:54:58 2014 (r351982) +++ head/security/krb5-appl/Makefile Thu Apr 24 03:53:30 2014 (r351983) @@ -49,8 +49,10 @@ INFO= krb5-admin krb5-install krb5-use .if defined(KRB5_HOME) PREFIX= ${KRB5_HOME} +.if ${KRB5_HOME} != ${LOCALBASE} BROKEN= LIB_DEPENDS when using KRB5_HOME is broken .endif +.endif CFLAGS+= -I${PREFIX}/include LDFLAGS+= -L${PREFIX}/lib Modified: head/security/krb5-maint/Makefile ============================================================================== --- head/security/krb5-maint/Makefile Thu Apr 24 01:54:58 2014 (r351982) +++ head/security/krb5-maint/Makefile Thu Apr 24 03:53:30 2014 (r351983) @@ -43,8 +43,10 @@ LDAP= Enable LDAP support PREFIX= ${KRB5_HOME} CFLAGS+= -Wl,-rpath=${KRB5_HOME}/lib LDFLAGS+= -Wl,-rpath=${KRB5_HOME}/lib +.if ${KRB5_HOME} != ${LOCALBASE} BROKEN= LIB_DEPENDS when using KRB5_HOME is broken .endif +.endif LDFLAGS+= -L${LOCALBASE}/lib CFLAGS+= -I${LOCALBASE}/include Modified: head/security/krb5/Makefile ============================================================================== --- head/security/krb5/Makefile Thu Apr 24 01:54:58 2014 (r351982) +++ head/security/krb5/Makefile Thu Apr 24 03:53:30 2014 (r351983) @@ -43,8 +43,10 @@ LDAP= Enable LDAP support PREFIX= ${KRB5_HOME} CFLAGS+= -Wl,-rpath=${KRB5_HOME}/lib LDFLAGS+= -Wl,-rpath=${KRB5_HOME}/lib +.if ${KRB5_HOME} != ${LOCALBASE} BROKEN= LIB_DEPENDS when using KRB5_HOME is broken .endif +.endif LDFLAGS+= -L${LOCALBASE}/lib CFLAGS+= -I${LOCALBASE}/include