mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
5fd3ba9ac0
- maintainer is committer now. - Style fix in patch-* PR: 23255
33 lines
648 B
Makefile
33 lines
648 B
Makefile
# 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= issei@jp.FreeBSD.org
|
|
|
|
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>
|