Date: Thu, 3 Oct 2013 22:24:34 +0000 (UTC) From: Olli Hauer <ohauer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329244 - head/www/mod_auth_kerb2 Message-ID: <201310032224.r93MOYwk068735@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ohauer Date: Thu Oct 3 22:24:34 2013 New Revision: 329244 URL: http://svnweb.freebsd.org/changeset/ports/329244 Log: - revert r275666 (gsed is really not required) - adjust PORTSCOUD Modified: head/www/mod_auth_kerb2/Makefile Modified: head/www/mod_auth_kerb2/Makefile ============================================================================== --- head/www/mod_auth_kerb2/Makefile Thu Oct 3 22:12:08 2013 (r329243) +++ head/www/mod_auth_kerb2/Makefile Thu Oct 3 22:24:34 2013 (r329244) @@ -18,20 +18,21 @@ USE_APACHE= 22 USE_GMAKE= yes GNU_CONFIGURE= yes -BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed - -PORTSCOUT= limit:^5.3 +PORTSCOUT= limit:^5.4 .if defined(KRB5_HOME) BUILD_DEPENDS+= ${KRB5_HOME}/lib/libgssapi_krb5.so:${PORTSDIR}/security/krb5 RUN_DEPENDS+= ${KRB5_HOME}/lib/libgssapi_krb5.so:${PORTSDIR}/security/krb5 CONFIGURE_ARGS+= --with-krb5=${KRB5_HOME} --without-krb4 + .elif defined(HEIMDAL_HOME) BUILD_DEPENDS+= ${HEIMDAL_HOME}/lib/libgssapi.so:${PORTSDIR}/security/heimdal RUN_DEPENDS+= ${HEIMDAL_HOME}/lib/libgssapi.so:${PORTSDIR}/security/heimdal CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} --without-krb4 + .elif exists(${DESTDIR}/usr/lib/libkrb5.a) && exists(${DESTDIR}/usr/bin/krb5-config) CONFIGURE_ARGS+= --with-krb5=${DESTDIR}/usr --without-krb4 + .else LIB_DEPENDS+= gssapi_krb5:${PORTSDIR}/security/krb5 CONFIGURE_ARGS+= --with-krb5=${LOCALBASE} --without-krb4
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310032224.r93MOYwk068735>