aboutsummaryrefslogtreecommitdiff
path: root/security/hpenc/Makefile
blob: 46920f5176e0e8eb6f360c477fee9536ec116102 (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
36
37
38
39
40
41
# $FreeBSD$

PORTNAME=	hpenc
PORTVERSION=	2.0
PORTREVISION=	2
CATEGORIES=	security
MASTER_SITES=	http://highsecure.ru/distfiles/

MAINTAINER=	vsevolod@FreeBSD.org
COMMENT=	Fast authenticated encryption CLI tool

LICENSE=	BSD2CLAUSE

BROKEN_powerpc64=	Does not build

BROKEN_FreeBSD_9=	does not build
NOT_FOR_ARCHS=		aarch64 sparc64
NOT_FOR_ARCHS_REASON=	not yet ported to this architecture

USES=		tar:xz compiler:c++11-lib gmake
USE_OPENSSL=	yes
PLIST_FILES=	bin/hpenc man/man1/hpenc.1.gz

MAKE_ARGS+=	"ARCH=${ARCH:S/amd64/x86/:S/i386/x86/}"
CXXFLAGS+=	-std=c++11 \
		-I${WRKSRC}/chacha-opt/app/include \
		-I${WRKSRC}/poly1305-opt/app/include \
		-I${OPENSSLINC}
LDFLAGS+=	-pthread -lcrypto -L${OPENSSLLIB}

.include <bsd.port.options.mk>

.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000036
WITH_OPENSSL_PORT=	yes
.endif

post-install:
	${INSTALL_MAN} ${WRKSRC}/doc/hpenc.1 ${STAGEDIR}${MANPREFIX}/man/man1
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/hpenc

.include <bsd.port.mk>