mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
it possible to connect to an SSH server on port 443 (e.g. from inside a corporate firewall) while still serving HTTPS on that port. WWW: http://www.rutschle.net/tech/sslh.shtml PR: ports/145113 Submitted by: Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
20 lines
587 B
Text
20 lines
587 B
Text
--- Makefile 2010-02-01 19:18:23.000000000 +0800
|
|
+++ Makefile.new 2010-03-29 00:43:42.198577686 +0800
|
|
@@ -4,7 +4,7 @@
|
|
USELIBWRAP=1 # Use libwrap?
|
|
PREFIX=/usr/local
|
|
|
|
-MAN=sslh.8.gz # man page name
|
|
+MAN=sslh.8 # man page name
|
|
|
|
# End of configuration -- the rest should take care of
|
|
# itself
|
|
@@ -27,7 +27,7 @@
|
|
strip sslh
|
|
|
|
$(MAN): sslh.pod Makefile
|
|
- pod2man --section=8 --release=$(VERSION) --center=" " sslh.pod | gzip -9 - > $(MAN)
|
|
+ pod2man --section=8 --release=$(VERSION) --center=" " sslh.pod > $(MAN)
|
|
|
|
# generic install: install binary and man page
|
|
install: sslh $(MAN)
|