1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/security/poly1305aes/Makefile
2021-04-06 16:31:07 +02:00

48 lines
1.2 KiB
Makefile

# Created by: roam@FreeBSD.org
PORTNAME= poly1305aes
PORTVERSION= 20050218
CATEGORIES= security
MASTER_SITES= http://cr.yp.to/mac/
MAINTAINER= ports@FreeBSD.org
COMMENT= Poly1305 message authentication reference implementation using AES
LICENSE= PD
BROKEN_aarch64= fails to build: poly1305aes.impl.do: fatal: all tests failed
BROKEN_armv6= fails to build: poly1305aes.impl.do: fatal: all tests failed
BROKEN_armv7= fails to build: poly1305aes.impl.do: fatal: all tests failed
BROKEN_riscv64= fails to build: poly1305aes.impl.do: fatal: all tests failed
NOT_FOR_ARCHS= amd64
ALL_TARGET= default
CC+= ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}
.include <bsd.port.pre.mk>
pre-build:
.if ${ARCH} == "i386"
@${ECHO_CMD} "ppro" > ${WRKSRC}/poly1305aes.impl
.endif
post-build:
.for i in aes.h cpucycles.h poly1305aes.h
@${REINPLACE_CMD} -e \
's|#include "|#include "poly1305/|' ${WRKSRC}/${i}
.endfor
do-install:
.for i in poly1305aes-speed test-aes test-poly1305aes
(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${i} \
${STAGEDIR}${PREFIX}/bin)
.endfor
@${MKDIR} ${STAGEDIR}${PREFIX}/include/poly1305
(cd ${WRKSRC} && ${INSTALL_DATA} *.h \
${STAGEDIR}${PREFIX}/include/poly1305)
(cd ${WRKSRC} && ${INSTALL_DATA} *.a \
${STAGEDIR}${PREFIX}/lib)
.include <bsd.port.post.mk>