freebsd-ports/net/tcpkali/Makefile
Mark Linimon bc6d0887a0 Try to bring some consistency to ports that have x86-specific pieces.
- in general, if we think that the code is not architecture-specific,
   and instead just enables x86 assembler by default, those should
   use BROKEN rather than IGNORE.  This will allow them to be attempted
   with TRYBROKEN.
 - spell i386 as x86.
 - spell asm as assembler.
 - pet portlint.

These changes should have no effect on tier-1 builds.

Approved by:	portmgr (tier-2 blanket)
2017-12-21 10:23:19 +00:00

36 lines
853 B
Makefile

# $FreeBSD$
PORTNAME= tcpkali
PORTVERSION= 1.1.1
DISTVERSIONPREFIX= v
CATEGORIES= net
MAINTAINER= neel@neelc.org
COMMENT= High performance load generator for TCP and WebSocket servers
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_aarch64= invokes x86 assembler
BROKEN_armv6= invokes x86 assembler
BROKEN_armv7= invokes x86 assembler
BROKEN_mips= invokes x86 assembler
BROKEN_mips64= invokes x86 assembler
BROKEN_sparc64= invokes x86 assembler
BROKEN_powerpc64= invokes x86 assembler
GNU_CONFIGURE= yes
USES= autoreconf libtool gmake ncurses
USE_GITHUB= yes
GH_ACCOUNT= machinezone
PLIST_FILES= bin/${PORTNAME} \
man/man1/${PORTNAME}.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
.include <bsd.port.mk>