[notifiy] sslscan: 1.11.10 -> 1.11.13; new dependency: openssl1; corrected mandir

This commit is contained in:
Tim Biermann 2020-01-20 15:32:59 +00:00
parent cd5db98b67
commit f17cc926a6
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 30 additions and 15 deletions

View File

@ -1,8 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/sslscan
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/

View File

@ -1,5 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32nO0t6BgMx056v6ptJxaUKetazCplbDLZLvBzyfmLSz007h0sZCPAKGmqy9ESEwLIoWIrPfbSg91UF6IU2b+QQ=
SHA256 (Pkgfile) = ca14450a2b9575a9bcf298ead4b10ab52ff4b7e40e5ead0f20353f306d888b39
SHA256 (.footprint) = 22a3b2c909abe2f031503cde13d2ce5a5b36a7e108bc9bb987827fd59e6607c8
SHA256 (1.11.10-rbsec.tar.gz) = fbb26fdbf2cf5b2f3f8c88782721b7875f206552cf83201981411e0af9521204
RWSagIOpLGJF33NmX4+/Fjd9S/vmbBxl7xr1pB0CtbEMXV6A8AuX0W2vMlvGZkhK+e+Glwc6EfgtCzFfnycKwIbjuYrIm1dfoAM=
SHA256 (Pkgfile) = fae05063b35baa16fbec8cdf438761250bb934e03c7c927b2005571acf08ffe9
SHA256 (.footprint) = 52afba7182c1a18a1f2204cd4a8b2b69db530600d547dafcffe5f626728fa971
SHA256 (1.11.13-rbsec.tar.gz) = 8a09c4cd1400af2eeeec8436a2f645ed0aae5576f4de045a09ea9ff099f56f4a
SHA256 (openssl1.patch) = e59f111eefa50b26d1b5a39749ddfd8ad731de1d7e06d07f9edbfc55569b635e

View File

@ -1,16 +1,18 @@
# Description: test SSL/TLS enabled services to discover supported cipher suites
# URL: https://github.com/rbsec/sslscan
# Maintainer: Thomas Penteker, tek at serverop dot de
# Description: test SSL/TLS enabled services to discover supported cipher suites
# URL: https://github.com/rbsec/sslscan
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: openssl1
name=sslscan
version=1.11.10
version=1.11.13
release=1
source=(https://github.com/rbsec/sslscan/archive/$version-rbsec.tar.gz)
source=(https://github.com/rbsec/sslscan/archive/$version-rbsec.tar.gz openssl1.patch)
build() {
cd $name-$version-rbsec
make LDFLAGS=-lcrypto
cd $name-$version-rbsec
patch -Np1 -i $SRC/openssl1.patch
make
install -m 755 -d $PKG/usr/bin $PKG/usr/man/man1
make install DESTDIR=$PKG
install -m 755 -d $PKG/usr/bin $PKG/usr/share/man/man1
make install DESTDIR=$PKG MANDIR=/usr/share/man
}

14
sslscan/openssl1.patch Normal file
View File

@ -0,0 +1,14 @@
diff -Naur sslscan-1.11.13-rbsec-original/Makefile sslscan-1.11.13-rbsec/Makefile
--- sslscan-1.11.13-rbsec-original/Makefile 2020-01-20 12:08:05.057834077 +0000
+++ sslscan-1.11.13-rbsec/Makefile 2020-01-20 12:09:38.856335630 +0000
@@ -71,8 +71,8 @@
GIT_VERSION := $(GIT_VERSION)-static
else
# for dynamic linking
-LDFLAGS += -L/usr/local/lib -L/usr/local/ssl/lib -L/usr/local/opt/openssl/lib -L/opt/local/lib
-CFLAGS += -I/usr/local/include -I/usr/local/ssl/include -I/usr/local/ssl/include/openssl -I/usr/local/opt/openssl/include -I/opt/local/include -I/opt/local/include/openssl
+LDFLAGS += -L/usr/lib/openssl-1.0 -L/usr/lib
+CFLAGS += -I/usr/include/openssl-1.0
endif
.PHONY: all sslscan clean install uninstall static opensslpull