- 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)
31 lines
665 B
Makefile
31 lines
665 B
Makefile
# Created by: Gasol Wu <gasol.wu@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= uprofiler
|
|
PORTVERSION= 0.11.0.20150219
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= php-
|
|
|
|
MAINTAINER= gasol.wu@gmail.com
|
|
COMMENT= Lightweight profiler for PHP
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/../LICENSE
|
|
|
|
BROKEN_aarch64= invokes x86 assembler
|
|
BROKEN_armv6= invokes x86 assembler
|
|
BROKEN_armv7= invokes x86 assembler
|
|
BROKEN_mips64= invokes x86 assembler
|
|
BROKEN_powerpc64= invokes x86 assembler
|
|
BROKEN_sparc64= invokes x86 assembler
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= FriendsOfPHP
|
|
GH_TAGNAME= 483c1e5
|
|
|
|
WRKSRC_SUBDIR= extension
|
|
USES= php:ext
|
|
IGNORE_WITH_PHP= 70 71
|
|
|
|
.include <bsd.port.mk>
|