diff options
author | marcus <marcus@FreeBSD.org> | 2004-01-10 15:18:55 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-01-10 15:18:55 +0800 |
commit | 84b511cc00aa9cff97b07b925ea981c50860a542 (patch) | |
tree | b9e5be8838f7a723de1019151c921bd18d3b34ad /audio | |
parent | fd04bde106f30e30cd9973fda07e944affde926a (diff) | |
download | freebsd-ports-gnome-84b511cc00aa9cff97b07b925ea981c50860a542.tar.gz freebsd-ports-gnome-84b511cc00aa9cff97b07b925ea981c50860a542.tar.zst freebsd-ports-gnome-84b511cc00aa9cff97b07b925ea981c50860a542.zip |
Substitute BROKEN with IGNORE in cases where the port requires the src tree
to be present, or does not compile on certain versions of FreeBSD. This
will potentially avoid needless compilations on bento, and has the added
benefit of improving certain reporting tools. To most users, this change
is a no-op.
PR: 61090
Submitted by: linimon
Diffstat (limited to 'audio')
-rw-r--r-- | audio/aureal-kmod/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/aureal-kmod/Makefile b/audio/aureal-kmod/Makefile index 121658701499..01f508bbc5cd 100644 --- a/audio/aureal-kmod/Makefile +++ b/audio/aureal-kmod/Makefile @@ -39,7 +39,7 @@ VERSION_SOUND_C= VERSION_SOUND_C_MINOR:= ${VERSION_SOUND_C:S/^1.//:S/^17.2.//} .if ${OSVERSION} < 410000 -BROKEN= "FreeBSD 3.*, 4.0 are not supported" +IGNORE= "FreeBSD 3.*, 4.0 are not supported" .elif ${OSVERSION} < 420000 # FreeBSD 4.1, 4.1.1 @@ -69,7 +69,7 @@ MAKE_ENV+= HAVE_KOBJ_PCM=1 .elif ${OSVERSION} < 500000 # FreeBSD 4.5+, 4.6, 4.7, 4.8- .if ${VERSION_SOUND_C_MINOR} < 12 -BROKEN= "Base system is outdated. This port needs -STABLE after 2002-04-22." +IGNORE= "Base system is outdated. This port needs -STABLE after 2002-04-22." .endif PORTVERSION= 1.3 PORTREVISION= 4 @@ -79,13 +79,13 @@ MAKE_ENV+= HAVE_KOBJ_PCM=1 .if ${OSVERSION} > 500000 # FreeBSD 5-CURRENT .if ${VERSION_SOUND_C_MINOR} < 70 -BROKEN= "Base system is outdated. This port needs -CURRENT after 2002-04-04." +IGNORE= "Base system is outdated. This port needs -CURRENT after 2002-04-04." .endif .endif # Make sure kernel sources are present before going any further .if ! exists(${SRCPREFIX}/sys/dev/sound/pcm/sound.c) -BROKEN= "You need to extract kernel source tree before building this package" +IGNORE= "You need to extract kernel source tree before building this package" .endif pre-fetch: |