mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
dd4feb025a
Additional port changes: * Disabled build-time x86/amd64/padlock/intelaes auto-detection which may produce broken binaries * Added explicit ASM, INTEL and PADLOCK options instead PR: 225283 Submitted by: Dmitri Goutnik <dg@syrec.org> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14110
43 lines
992 B
Makefile
43 lines
992 B
Makefile
# Created by: Ekkehard 'Ekki' Gehm <gehm@physik.tu-berlin.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aespipe
|
|
PORTVERSION= 2.4e
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://loop-aes.sourceforge.net/${PORTNAME}/ \
|
|
http://koti.tnnet.fi/jari.ruusu/linux/
|
|
|
|
MAINTAINER= gehm@physik.tu-berlin.de
|
|
COMMENT= AES encrypting or decrypting pipe
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= gpg:security/gnupg
|
|
|
|
USES= tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= tests
|
|
|
|
PLIST_FILES= bin/aespipe man/man1/aespipe.1.gz
|
|
|
|
OPTIONS_DEFINE_amd64= ASM INTEL PADLOCK
|
|
OPTIONS_DEFINE_i386= ASM INTEL PADLOCK
|
|
|
|
INTEL_DESC= Support Intel hardware AES
|
|
PADLOCK_DESC= Support VIA Padlock hardware AES
|
|
|
|
ASM_CONFIGURE_ENABLE= asm=${ARCH:S/i386/x86/}
|
|
|
|
INTEL_CONFIGURE_ENABLE= intelaes
|
|
INTEL_IMPLIES= ASM
|
|
|
|
PADLOCK_CONFIGURE_ENABLE= padlock
|
|
PADLOCK_IMPLIES= ASM
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|