1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/net/SSLtelnet/files/patch-aa
Dirk Froemberg 022f745a66 ${PREFIX}/bin/ssleay -> ${PREFIX}/bin/openssl due to openssl upgrade.
Unfortunaly SSLtelnet doesn't work with openssl-0.9.2b at the moment.
We'll try to fix this as soon as possible.

OK'ed by:	Issei Suzuki <issei@jp.freebsd.org> (maintainer)
1999-03-26 08:44:57 +00:00

74 lines
2.3 KiB
Plaintext

--- Makefile.orig Thu Sep 24 23:50:59 1998
+++ Makefile Wed Mar 24 19:07:12 1999
@@ -47,7 +47,7 @@
# the location where SSLeay is installed ...
# - expect a include and lib directory under here
-SSLTOP=/usr/local/ssl
+SSLTOP=$(PREFIX)
INSTALLTOP=$(SSLTOP)
@@ -83,8 +83,8 @@
#LDADD=$(sockslib) -ltermcap -lcurses
# uncomment the next two lines for linux
-CC = gcc -DLINUX -DTERMIOS $(socksflags)
-LDADD = $(sockslib) -lbsd -lncurses
+#CC = gcc -DLINUX -DTERMIOS $(socksflags)
+#LDADD = $(sockslib) -lbsd -lncurses
##OLD Linux stuff
#CC = gcc -DLINUX -DUSE_SHADOW $(socksflags)
@@ -95,6 +95,10 @@
#BSD386
#CC = gcc -DBSD386 -DTERMCAP $(socksflags)
#LDADD = -ltermcap $(sockslib)
+
+#BSD386
+CC = gcc -DTERMCAP $(socksflags)
+LDADD = -ltermcap $(sockslib)
all:
@-mkdir bin 2>/dev/null
@@ -145,12 +149,11 @@
tar: clean
(cd ..; tar cf $(TARFILE) $(DIRECTORY); /bin/rm -f $(TARFILE).Z $(TARFILE).gz >/dev/null 2>&1 ; $(COMPRESS) $(TARFILE) )
-install: telnet telnetd /dev/null
- @-mkdir -p $(INSTALLTOP)/bin 2>/dev/null
+install: telnet telnetd
cp bin/telnet $(INSTALLTOP)/bin/telnet
chmod 755 $(INSTALLTOP)/bin/telnet
- cp bin/telnetd $(INSTALLTOP)/bin/telnetd
- chmod 755 $(INSTALLTOP)/bin/telnetd
+ cp bin/telnetd $(INSTALLTOP)/libexec/telnetd
+ chmod 755 $(INSTALLTOP)/libexec/telnetd
@echo "*****************************************************"
@echo "* Do not forget to make the certificate for telnetd *"
@echo "* either manually or via \"make certificate\" *"
@@ -158,9 +161,10 @@
certificate:
(\
+ [ -f $(INSTALLTOP)/certs/telnetd.pem ] && exit; \
cd $(INSTALLTOP)/certs; \
- ssleay req -new -x509 -nodes -days 365 -out telnetd.pem -keyout telnetd.pem; \
- ln -s telnetd.pem `ssleay x509 -noout -hash < telnetd.pem`.0 ;\
+ openssl req -new -x509 -nodes -days 365 -out telnetd.pem -keyout telnetd.pem; \
+ ln -s telnetd.pem `openssl x509 -noout -hash < telnetd.pem`.0 ;\
chmod 600 $(INSTALLTOP)/certs/telnetd.pem; \
)
--- lib/Makefile.orig Wed Sep 2 13:11:39 1998
+++ lib/Makefile Wed Sep 2 13:11:49 1998
@@ -1,7 +1,7 @@
#SUBDIRS= gmp-1.2 kerberosIV/krb libbsd libdes/des libpk libtelnet libutil
SUBDIRS= gmp-1.3.2 libbsd libpk libtelnet libutil
-SUBDIRS= libbsd libtelnet libutil
+SUBDIRS= libtelnet
all:
@for i in $(SUBDIRS); \