aboutsummaryrefslogtreecommitdiff
path: root/security/sslscan
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2014-06-01 13:13:28 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2014-06-01 13:13:28 +0000
commit966af97892add0e958cb946b183ef11a9209c4f7 (patch)
tree09408cf387047259c77433197ba1a69a61bb4aca /security/sslscan
parent0581283bc541b1921419212922b9070862c263c2 (diff)
Notes
Diffstat (limited to 'security/sslscan')
-rw-r--r--security/sslscan/Makefile2
-rw-r--r--security/sslscan/files/patch-Makefile8
-rw-r--r--security/sslscan/pkg-descr1
3 files changed, 6 insertions, 5 deletions
diff --git a/security/sslscan/Makefile b/security/sslscan/Makefile
index a23d6f2e1cb2..2e7eac86d1cc 100644
--- a/security/sslscan/Makefile
+++ b/security/sslscan/Makefile
@@ -12,6 +12,6 @@ COMMENT= SSLScan is a fast SSL port scanner
LICENSE= GPLv3
-MAKE_ARGS= STAGEDIR=${STAGEDIR} CC="${CC}" CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
+MAKE_ARGS= CC="${CC}" CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>
diff --git a/security/sslscan/files/patch-Makefile b/security/sslscan/files/patch-Makefile
index 3b08d4424ee8..527fae702521 100644
--- a/security/sslscan/files/patch-Makefile
+++ b/security/sslscan/files/patch-Makefile
@@ -4,8 +4,8 @@
SRCS = sslscan.c
-BINPATH = /usr/bin/
-MANPATH = /usr/share/man/
-+BINPATH = ${STAGEDIR}${PREFIX}/bin/
-+MANPATH = ${STAGEDIR}${PREFIX}/man
++BINPATH = ${PREFIX}/bin/
++MANPATH = ${PREFIX}/man
+CC = ${CC}
all:
@@ -15,8 +15,8 @@
install:
- cp sslscan $(BINPATH)
- cp sslscan.1 $(MANPATH)man1
-+ install -s -m 755 sslscan $(BINPATH)
-+ install -m 644 sslscan.1 $(MANPATH)/man1
++ install -s -m 755 sslscan $(DESTDIR)$(BINPATH)
++ install -m 644 sslscan.1 $(DESTDIR)$(MANPATH)/man1
uninstall:
rm -f $(BINPATH)sslscan
diff --git a/security/sslscan/pkg-descr b/security/sslscan/pkg-descr
index b7624915d4c3..3ff3d5c6d013 100644
--- a/security/sslscan/pkg-descr
+++ b/security/sslscan/pkg-descr
@@ -4,3 +4,4 @@ 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.
+WWW: http://sourceforge.net/projects/sslscan/