From owner-svn-ports-head@FreeBSD.ORG Tue Aug 7 04:14:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C66EF106564A; Tue, 7 Aug 2012 04:14:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 75E2D8FC0A; Tue, 7 Aug 2012 04:14:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q774EimX018970; Tue, 7 Aug 2012 04:14:44 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q774EiwC018968; Tue, 7 Aug 2012 04:14:44 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201208070414.q774EiwC018968@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 7 Aug 2012 04:14:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302221 - head/security/p5-Crypt-SSLeay X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 07 Aug 2012 04:14:44 -0000 Author: sunpoet Date: Tue Aug 7 04:14:43 2012 New Revision: 302221 URL: http://svn.freebsd.org/changeset/ports/302221 Log: - Disable live tests (without prompt) - Eliminate harmless library detection messages Reported by: Alexander Wittig Modified: head/security/p5-Crypt-SSLeay/Makefile Modified: head/security/p5-Crypt-SSLeay/Makefile ============================================================================== --- head/security/p5-Crypt-SSLeay/Makefile Tue Aug 7 03:02:55 2012 (r302220) +++ head/security/p5-Crypt-SSLeay/Makefile Tue Aug 7 04:14:43 2012 (r302221) @@ -20,7 +20,7 @@ BUILD_DEPENDS= p5-LWP-Protocol-https>=6. RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Try-Tiny>=0.09:${PORTSDIR}/lang/p5-Try-Tiny -CONFIGURE_ARGS= --lib=${OPENSSLBASE} --no-live-tests +CONFIGURE_ENV= CRYPT_SSLEAY_LIVE_TEST_WANTED=0 MAKE_ARGS= PASTHRU_INC=-I${OPENSSLINC} PERL_CONFIGURE= yes USE_OPENSSL= yes @@ -33,4 +33,8 @@ MAN3= Crypt::SSLeay.3 Net::SSL.3 TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple .endif +post-patch: + @${REINPLACE_CMD} -e '/LIBS/ s|-lssl32 -lssleay32 -leay32|-L${OPENSSLLIB}|' \ + -e '/is_live_test_wanted()/d' ${WRKSRC}/Makefile.PL + .include