diff options
author | John Marino <marino@FreeBSD.org> | 2015-06-02 21:17:00 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-06-02 21:17:00 +0000 |
commit | 12a19c24bfcff3735dc933bdeade79095a550a2e (patch) | |
tree | 35cbc0e0d26d989bd8d21376d9d10e5292773283 /Mk/bsd.port.mk | |
parent | 6806137838244a5f6e6db458a28ab52971cecbd8 (diff) | |
download | ports-12a19c24bfcff3735dc933bdeade79095a550a2e.tar.gz ports-12a19c24bfcff3735dc933bdeade79095a550a2e.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index e690a2e45d1b..f40c8b67111b 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -175,9 +175,16 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # 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. +# BROKEN_${ARCH} - Port is believed to be broken on ${ARCH}. Package builds +# can still be attempted using TRYBROKEN to +# test this assumption. +# BROKEN_${OPSYS} - Port is believed to be broken on ${OPSYS}. Package builds +# can still be attempted using TRYBROKEN to +# test this assumption. +# BROKEN_${OPSYS}_${OSREL:R} - Port is believed to be broken on a single +# release of ${OPSYS}, e.g BROKEN_FreeBSD_8 +# would affect all point releases of FreeBSD 8 +# unless TRYBROKEN is also set. # DEPRECATED - Port is deprecated to install. Advisory only. # EXPIRATION_DATE # - If DEPRECATED is set, determines a date when @@ -2820,6 +2827,14 @@ IGNORE= is marked as broken: ${BROKEN} .if !defined(TRYBROKEN) IGNORE= is marked as broken on ${ARCH}: ${BROKEN_${ARCH}} .endif +.elif defined(BROKEN_${OPSYS}_${OSREL:R}) +.if !defined(TRYBROKEN) +IGNORE= is marked as broken on ${OPSYS} ${OSREL}: ${BROKEN_${OPSYS}_${OSREL:R}} +.endif +.elif defined(BROKEN_${OPSYS}) +.if !defined(TRYBROKEN) +IGNORE= is marked as broken on ${OPSYS}: ${BROKEN_${OPSYS}} +.endif .elif defined(FORBIDDEN) IGNORE= is forbidden: ${FORBIDDEN} .endif |