summaryrefslogtreecommitdiff
path: root/security/sslscan/files/patch-Makefile
blob: 917527be75b579c3b88615193bba40b5f2ca9766 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- Makefile.orig	2018-06-15 17:47:17 UTC
+++ Makefile
@@ -1,6 +1,6 @@
 # set gcc as default if CC is not set
 
-GIT_VERSION = $(shell git describe --tags --always --dirty=-wip)
+#GIT_VERSION = $(shell git describe --tags --always --dirty=-wip)
 
 # Ugly hack to get version if git isn't installed
 ifeq ($(GIT_VERSION),)
@@ -25,7 +25,7 @@ endif
 
 SRCS      = sslscan.c
 BINDIR    = $(PREFIX)/bin
-MANDIR    = $(PREFIX)/share/man
+MANDIR    = $(PREFIX)/man
 MAN1DIR   = $(MANDIR)/man1
 
 WARNINGS  = -Wall -Wformat=2 -Wformat-security
@@ -101,6 +101,9 @@ ifeq ($(OS), Darwin)
 	install sslscan $(DESTDIR)$(BINDIR)/sslscan;
 	install -d $(DESTDIR)$(MAN1DIR)/;
 	install sslscan.1 $(DESTDIR)$(MAN1DIR)/sslscan.1;
+else ifeq ($(OS), FreeBSD)
+	install -s -m 755 sslscan $(DESTDIR)$(BINDIR)
+	install -m 644 sslscan.1 $(DESTDIR)$(MAN1DIR)
 else
 	install -D sslscan $(DESTDIR)$(BINDIR)/sslscan;
 	install -D sslscan.1 $(DESTDIR)$(MAN1DIR)/sslscan.1;