From owner-svn-ports-all@FreeBSD.ORG Wed Feb 11 09:42:38 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5838DE1; Wed, 11 Feb 2015 09:42:38 +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 2A81E403; Wed, 11 Feb 2015 09:42:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1B9gctq084237; Wed, 11 Feb 2015 09:42:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1B9gbu3084235; Wed, 11 Feb 2015 09:42:37 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201502110942.t1B9gbu3084235@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 11 Feb 2015 09:42:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378826 - in head/www/litmus: . files 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.18-1 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, 11 Feb 2015 09:42:38 -0000 Author: pi Date: Wed Feb 11 09:42:36 2015 New Revision: 378826 URL: https://svnweb.freebsd.org/changeset/ports/378826 QAT: https://qat.redports.org/buildarchive/r378826/ Log: www/litmus: fix linking with ports neon, krb5 Added: head/www/litmus/files/patch-configure (contents, props changed) Modified: head/www/litmus/Makefile Modified: head/www/litmus/Makefile ============================================================================== --- head/www/litmus/Makefile Wed Feb 11 09:32:43 2015 (r378825) +++ head/www/litmus/Makefile Wed Feb 11 09:42:36 2015 (r378826) @@ -2,15 +2,17 @@ PORTNAME= litmus PORTVERSION= 0.13 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.webdav.org/neon/litmus/ MAINTAINER= pi@FreeBSD.org COMMENT= WebDAV server protocol compliance test suite -LIB_DEPENDS= libneon.so:${PORTSDIR}/www/neon +LIB_DEPENDS= libneon.so:${PORTSDIR}/www/neon \ + libk5crypto:${PORTSDIR}/security/krb5 GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-ssl +CONFIGURE_ARGS+=--with-ssl --with-neon=/usr/local .include Added: head/www/litmus/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/litmus/files/patch-configure Wed Feb 11 09:42:36 2015 (r378826) @@ -0,0 +1,20 @@ +--- configure.orig 2011-12-09 11:37:29.000000000 +0100 ++++ configure 2015-02-11 10:24:29.000000000 +0100 +@@ -5459,7 +5459,7 @@ + $as_echo "$ne_cv_lib_neon" >&6; } + if test "$ne_cv_lib_neon" = "yes"; then + ne_cv_lib_neonver=no +- for v in 25 26 27 28 29; do ++ for v in 25 26 27 28 29 30; do + case $ne_libver in + 0.$v.*) ne_cv_lib_neonver=yes ;; + esac +@@ -5788,7 +5788,7 @@ + $as_echo "$ne_cv_lib_neon" >&6; } + if test "$ne_cv_lib_neon" = "yes"; then + ne_cv_lib_neonver=no +- for v in 25 26 27 28 29; do ++ for v in 25 26 27 28 29 30; do + case $ne_libver in + 0.$v.*) ne_cv_lib_neonver=yes ;; + esac