svn commit: r352830 - in head/security/sslscan: . files

Kurt Jaeger pi at FreeBSD.org
Fri May 2 17:23:54 UTC 2014


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 at 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


More information about the svn-ports-all mailing list