Date: Fri, 2 May 2014 17:23:53 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352830 - in head/security/sslscan: . files Message-ID: <201405021723.s42HNr4v060832@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405021723.s42HNr4v060832>