- Add support for BROKEN_${OPSYS}_${OSREL:R}_${ARCH} pattern
Approved by: portmgr (bapt)
This commit is contained in:
parent
997a38a67c
commit
1b0586341c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=390706
1 changed files with 9 additions and 0 deletions
|
@ -185,6 +185,11 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
|
|||
# release of ${OPSYS}, e.g BROKEN_FreeBSD_8
|
||||
# would affect all point releases of FreeBSD 8
|
||||
# unless TRYBROKEN is also set.
|
||||
# BROKEN_${OPSYS}_${OSREL:R}_${ARCH} - Port is believed to be broken on a
|
||||
# single release of ${OPSYS} and specific architecture,
|
||||
# e.g BROKEN_FreeBSD_8_i386 would affect all point
|
||||
# releases of FreeBSD 8 in i386
|
||||
# unless TRYBROKEN is also set.
|
||||
# DEPRECATED - Port is deprecated to install. Advisory only.
|
||||
# EXPIRATION_DATE
|
||||
# - If DEPRECATED is set, determines a date when
|
||||
|
@ -2823,6 +2828,10 @@ IGNORE= is marked as broken on ${ARCH}: ${BROKEN_${ARCH}}
|
|||
.if !defined(TRYBROKEN)
|
||||
IGNORE= is marked as broken on ${OPSYS} ${OSREL}: ${BROKEN_${OPSYS}_${OSREL:R}}
|
||||
.endif
|
||||
.elif defined(BROKEN_${OPSYS}_${OSREL:R}_${ARCH})
|
||||
.if !defined(TRYBROKEN)
|
||||
IGNORE= is marked as broken on ${OPSYS} ${OSREL} ${ARCH}: ${BROKEN_${OPSYS}_${OSREL:R}_${ARCH}}
|
||||
.endif
|
||||
.elif defined(BROKEN_${OPSYS})
|
||||
.if !defined(TRYBROKEN)
|
||||
IGNORE= is marked as broken on ${OPSYS}: ${BROKEN_${OPSYS}}
|
||||
|
|
Loading…
Reference in a new issue