diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-10-03 17:21:20 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-10-03 17:21:20 +0000 |
commit | a938bac9ff832304647cf30e49890464ca2feff3 (patch) | |
tree | 32fa24501f27b8be9c5b729a09bb6970ed9caf0c /Mk/bsd.port.mk | |
parent | f80c6995a107c23892cf6130e0360f9061aa7d79 (diff) | |
download | ports-a938bac9ff832304647cf30e49890464ca2feff3.tar.gz ports-a938bac9ff832304647cf30e49890464ca2feff3.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index f713d08e3b54..f3b4878045b3 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -166,9 +166,12 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # because it cannot be manually fetched, etc). Error # logs will not appear on pointyhat, so this should be # used sparingly. -# BROKEN - Port is believed to be broken. Package builds will -# still be attempted on the pointyhat package cluster to -# test this assumption. +# BROKEN - Port is believed to be broken. Package builds can +# still be attempted using TRYBROKEN to test this +# assumption. +# BROKEN_${ARCH} Port is believed to be broken on ${ARCH}. Package builds +# can still be attempted using TRYBROKEN to test this +# assumption. # DEPRECATED - Port is deprecated to install. Advisory only. # EXPIRATION_DATE # - If DEPRECATED is set, determines a date when @@ -3126,6 +3129,10 @@ IGNORE= is restricted: ${RESTRICTED} .if !defined(TRYBROKEN) IGNORE= is marked as broken: ${BROKEN} .endif +.elif defined(BROKEN_${ARCH}) +.if !defined(TRYBROKEN) +IGNORE= is marked as broken on ${ARCH}: ${BROKEN_${ARCH}} +.endif .elif defined(FORBIDDEN) IGNORE= is forbidden: ${FORBIDDEN} .endif |