From owner-svn-ports-branches@freebsd.org Sun Oct 21 08:03:29 2018 Return-Path: Delivered-To: svn-ports-branches@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 0BD4FFD9B56; Sun, 21 Oct 2018 08:03:29 +0000 (UTC) (envelope-from antoine@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 A66F081177; Sun, 21 Oct 2018 08:03:28 +0000 (UTC) (envelope-from antoine@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 9BC0C29A5; Sun, 21 Oct 2018 08:03:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9L83Sbi066559; Sun, 21 Oct 2018 08:03:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9L83S2B066558; Sun, 21 Oct 2018 08:03:28 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810210803.w9L83S2B066558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 21 Oct 2018 08:03:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r482651 - branches/2018Q4/www/httest X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q4/www/httest X-SVN-Commit-Revision: 482651 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Oct 2018 08:03:29 -0000 Author: antoine Date: Sun Oct 21 08:03:28 2018 New Revision: 482651 URL: https://svnweb.freebsd.org/changeset/ports/482651 Log: MFH: r482236 This port does not build with OpenSSL 1.1.1. Mark BROKEN for OSVERSION 1200085 and above while a solution is being sought. An upstream ticket has been created. Also pacify portlint by moving USES. Notified by: pkg-fallout Modified: branches/2018Q4/www/httest/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/httest/Makefile ============================================================================== --- branches/2018Q4/www/httest/Makefile Sun Oct 21 08:01:50 2018 (r482650) +++ branches/2018Q4/www/httest/Makefile Sun Oct 21 08:03:28 2018 (r482651) @@ -18,6 +18,11 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libpcre.so:devel/pcre \ libapr-1.so:devel/apr1 +USES= iconv lua libtool bdb ssl +USE_LDCONFIG= yes + +GNU_CONFIGURE= yes + OPTIONS_DEFINE= EXAMPLES CONFIGURE_ARGS= --enable-lua-module \ @@ -27,9 +32,6 @@ CONFIGURE_ARGS= --enable-lua-module \ --with-pcre="${LOCALBASE}/bin" \ --with-ssl="${OPENSSLLIB}" CPPFLAGS+= -I${LUA_INCDIR} -GNU_CONFIGURE= yes -USES= iconv lua libtool bdb ssl -USE_LDCONFIG= yes PORTEXAMPLES= * @@ -37,6 +39,15 @@ INSTALL_TARGET= install-strip MAKE_JOBS_UNSAFE= yes +.include + +# Reported upstream: +# https://sourceforge.net/p/htt/tickets/5/ + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200085 +BROKEN= does not build with OpenSSL 1.1.1 +.endif + post-patch: @${REINPLACE_CMD} -e 's|`$$APR_CONFIG --cflags`||; s|-llua|-llua-${LUA_VER}|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/generate_modules_c.sh @@ -47,4 +58,4 @@ post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/*.htt ${STAGEDIR}${EXAMPLESDIR} -.include +.include