mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
bf43557044
armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run
32 lines
893 B
Makefile
32 lines
893 B
Makefile
# Created by: Stacey D. Son <sds@son.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aoe
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.son.org/download/
|
|
DISTNAME= ${PORTNAME}-freebsd-${PORTVERSION}
|
|
|
|
MAINTAINER= fjoe@FreeBSD.org
|
|
COMMENT= FreeBSD driver for ATA over Ethernet (AoE)
|
|
|
|
BROKEN_aarch64= fails to compile: redefinition of frame
|
|
BROKEN_armv6= fails to compile: implicit declaration of function 'cp15_pmccntr_get' is invalid in C99
|
|
BROKEN_armv7= fails to compile: redefinition of frame
|
|
BROKEN_powerpc64= fails to compile: pcpu.h: size of array '__assert_0' is negative
|
|
BROKEN_sparc64= fails to compile: redefinition of frame
|
|
|
|
USES= kmod
|
|
|
|
WRKSRC= ${WRKDIR}/dev/aoe
|
|
KMODDIR= ${PREFIX}/lib/aoe
|
|
|
|
USE_RC_SUBR= aoe
|
|
|
|
do-install:
|
|
${INSTALL_KLD} ${WRKSRC}/aoe.ko ${STAGEDIR}${PREFIX}/lib/aoe
|
|
${INSTALL_MAN} ${WRKDIR}/aoe.4 ${STAGEDIR}${PREFIX}/man/man4/
|
|
|
|
.include <bsd.port.mk>
|