mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
41cd82be85
Approved by: portmgr (sparc64 blanket)
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= hpenc
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://highsecure.ru/distfiles/
|
|
|
|
MAINTAINER= vsevolod@FreeBSD.org
|
|
COMMENT= Fast authenticated encryption CLI tool
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
BROKEN_FreeBSD_9= does not build
|
|
NOT_FOR_ARCHS= 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.pre.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000036
|
|
WITH_OPENSSL_PORT= yes
|
|
|
|
# XXX: brain damage warning
|
|
# we need to .include bsd.openssl.mk manually here.because USE_OPENSSL only
|
|
# works when it is defined before bsd.port{.pre}.mk is .included.
|
|
# This makes it currently impossible to combine this macro with OSVERSION to
|
|
# conditionally select WITH_OPENSSL_PORT for OSVERSIONS before 1000015
|
|
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/hpenc.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/hpenc
|
|
|
|
.include <bsd.port.post.mk>
|