From owner-svn-ports-head@FreeBSD.ORG Fri May 2 17:23:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB39DEC7; Fri, 2 May 2014 17:23:54 +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 8C206153B; Fri, 2 May 2014 17:23:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s42HNspl060836; Fri, 2 May 2014 17:23:54 GMT (envelope-from pi@svn.freebsd.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s42HNr4v060832; Fri, 2 May 2014 17:23:53 GMT (envelope-from pi@svn.freebsd.org) Message-Id: <201405021723.s42HNr4v060832@svn.freebsd.org> From: Kurt Jaeger Date: Fri, 2 May 2014 17:23:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352830 - in head/security/sslscan: . 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-head@freebsd.org X-Mailman-Version: 2.1.17 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: Fri, 02 May 2014 17:23:54 -0000 Author: pi Date: Fri May 2 17:23:53 2014 New Revision: 352830 URL: http://svnweb.freebsd.org/changeset/ports/352830 QAT: https://qat.redports.org/buildarchive/r352830/ Log: security/sslscan: linker fix for 10.0 (adding -lcrypto), staging, pkg-descr reformatted (shorter lines) PR: ports/186478 Submitted by: pi Approved by: jadawin (mentor) Added: head/security/sslscan/pkg-plist (contents, props changed) Modified: head/security/sslscan/Makefile head/security/sslscan/files/patch-Makefile head/security/sslscan/pkg-descr Modified: head/security/sslscan/Makefile ============================================================================== --- head/security/sslscan/Makefile Fri May 2 17:07:03 2014 (r352829) +++ head/security/sslscan/Makefile Fri May 2 17:23:53 2014 (r352830) @@ -10,10 +10,8 @@ EXTRACT_SUFX= .tgz MAINTAINER= matthieu@labs.fr COMMENT= SSLScan is a fast SSL port scanner -MAKE_ARGS= CC="${CC}" CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +LICENSE= GPLv3 -MAN1= sslscan.1 -PLIST_FILES= bin/sslscan +MAKE_ARGS= STAGEDIR=${STAGEDIR} CC="${CC}" CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" -NO_STAGE= yes .include Modified: head/security/sslscan/files/patch-Makefile ============================================================================== --- head/security/sslscan/files/patch-Makefile Fri May 2 17:07:03 2014 (r352829) +++ head/security/sslscan/files/patch-Makefile Fri May 2 17:23:53 2014 (r352830) @@ -4,13 +4,13 @@ SRCS = sslscan.c -BINPATH = /usr/bin/ -MANPATH = /usr/share/man/ -+BINPATH = ${PREFIX}/bin/ -+MANPATH = ${PREFIX}/man ++BINPATH = ${STAGEDIR}${PREFIX}/bin/ ++MANPATH = ${STAGEDIR}${PREFIX}/man +CC = ${CC} all: - gcc -g -Wall -lssl -o sslscan $(SRCS) $(LDFLAGS) $(CFLAGS) -+ ${CC} -g -Wall -lssl -o sslscan $(SRCS) $(LDFLAGS) $(CFLAGS) ++ ${CC} -g -Wall -lssl -lcrypto -o sslscan $(SRCS) $(LDFLAGS) $(CFLAGS) install: - cp sslscan $(BINPATH) Modified: head/security/sslscan/pkg-descr ============================================================================== --- head/security/sslscan/pkg-descr Fri May 2 17:07:03 2014 (r352829) +++ head/security/sslscan/pkg-descr Fri May 2 17:23:53 2014 (r352830) @@ -1,4 +1,6 @@ -SSLScan is a fast SSL port scanner. SSLScan connects to SSL ports and determines -what ciphers are supported, which are the servers prefered ciphers, which SSL -protocols are supported and returns the SSL certificate. Client certificates and -private key can be configured and output is to text / XML. +SSLScan is a fast SSL port scanner. SSLScan connects to SSL ports +and determines what ciphers are supported, which are the servers +prefered ciphers, which SSL protocols are supported and returns the +SSL certificate. Client certificates and private key can be configured +and output is to text / XML. + Added: head/security/sslscan/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sslscan/pkg-plist Fri May 2 17:23:53 2014 (r352830) @@ -0,0 +1,2 @@ +bin/sslscan +man/man1/sslscan.1.gz