From owner-svn-ports-head@freebsd.org Sun Nov 5 21:15:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 968FCE521C3; Sun, 5 Nov 2017 21:15:00 +0000 (UTC) (envelope-from brnrd@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 mx1.freebsd.org (Postfix) with ESMTPS id 640DE6BB25; Sun, 5 Nov 2017 21:15:00 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA5LEx8J074891; Sun, 5 Nov 2017 21:14:59 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA5LExQD074890; Sun, 5 Nov 2017 21:14:59 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201711052114.vA5LExQD074890@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 5 Nov 2017 21:14:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453562 - head/security/sslscan X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: head/security/sslscan X-SVN-Commit-Revision: 453562 X-SVN-Commit-Repository: ports 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.23 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: Sun, 05 Nov 2017 21:15:00 -0000 Author: brnrd Date: Sun Nov 5 21:14:59 2017 New Revision: 453562 URL: https://svnweb.freebsd.org/changeset/ports/453562 Log: security/sslscan: Switch to openssl-unsafe - Use new security/openssl-unsafe port for scanning - amd64 only PR: 222910 Approved by: maintainer time-out Modified: head/security/sslscan/Makefile Modified: head/security/sslscan/Makefile ============================================================================== --- head/security/sslscan/Makefile Sun Nov 5 20:41:19 2017 (r453561) +++ head/security/sslscan/Makefile Sun Nov 5 21:14:59 2017 (r453562) @@ -11,13 +11,26 @@ COMMENT= SSLScan is a fast SSL port scanner LICENSE= GPLv3 -USES= gmake ssl +OPTIONS_DEFINE= UNSAFESSL +OPTIONS_DEFAULT_amd64= UNSAFESSL +UNSAFESSL_DESC= Use openssl-unsafe as libssl provider (SSLv2 etc.) + +USES= gmake USE_GITHUB= yes GH_ACCOUNT= rbsec +UNSAFESSL_USES_OFF= ssl +UNSAFESSL_BUILD_DEPENDS= ${LOCALBASE}/openssl-unsafe/lib/libssl.so:security/openssl-unsafe +UNSAFESSL_RUN_DEPENDS= ${UNSAFESSL_BUILD_DEPENDS} +UNSAFESSL_CFLAGS= -I${LOCALBASE}/openssl-unsafe/include \ + -Wl,-rpath,${LOCALBASE}/openssl-unsafe/lib +UNSAFESSL_LDFLAGS= -L${LOCALBASE}/openssl-unsafe/lib \ + -Wl,-rpath,${LOCALBASE}/openssl-unsafe/lib +UNSAFESSL_ALL_TARGET= sslscan + .include -.if ${SSL_DEFAULT:Mopenssl-devel} +.if empty(PORT_OPTIONS:MUNSAFESSL) && ${SSL_DEFAULT:Mopenssl-devel} BROKEN= Does not build with openssl-devel .endif