mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
33 lines
633 B
Makefile
33 lines
633 B
Makefile
# Created by: 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
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MAES}
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-aes
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|