blob: 2986cb422dafd61eb1930652ffab560192402658 (
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
35
|
# New ports collection makefile for: ssldump
# Date created: 10 November 2000
# Whom: Kris Kennaway <kris@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ssldump
PORTVERSION= 0.9b3
PORTREVISION= 4
CATEGORIES= net security
MASTER_SITES= http://www.rtfm.com/ssldump/
MAINTAINER= arved@FreeBSD.org
COMMENT= SSLv3/TLS network protocol analyzer
USE_OPENSSL= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} \
--sbindir=${PREFIX}/bin
OPTIONS_DEFINE= AES
AES_DESC= Enable AES support from CVS (EXPERIMENTAL)
MAN1= ssldump.1
PLIST_FILES= bin/ssldump
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MAES}
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-aes
.endif
.include <bsd.port.mk>
|