blob: 5961baf4b3dffc25649fe66ad9e58d7cd8225101 (
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
30
31
32
33
34
|
# New ports collection makefile for: SSLtelnet
# Date created: Mar 29, 1998
# Whom: issei@jp.FreeBSD.org
#
# $FreeBSD$
PORTNAME= SSLtelnet
PORTVERSION= 0.13
CATEGORIES= net security
MASTER_SITES= ${MASTER_SITE_LOCAL} \
ftp://ftp.psy.uq.oz.au/pub/Crypto/SSLapps/
MASTER_SITE_SUBDIR= kris
MAINTAINER= ports@FreeBSD.org
PORTCOMMENT= SSL enhanced telnet/telnetd
USE_OPENSSL= YES
PLIST_SUB+= OPENSSLDIR="${OPENSSLDIR}"
.if !defined(BATCH)
INSTALL_TARGET= install certificate
.endif
# Make sure that whole directory tree exists.
pre-install:
${MKDIR} ${OPENSSLDIR}/certs
post-install:
strip $(PREFIX)/bin/telnet
strip $(PREFIX)/libexec/telnetd
.include <bsd.port.mk>
|