ports/52590: [non-maintainer update] update logic for "BROKEN" variable in audio/aureal-kmod

Mark Linimon linimon at lonesome.com
Tue May 27 00:50:16 UTC 2003


The following reply was made to PR ports/52590; it has been noted by GNATS.

From: Mark Linimon <linimon at lonesome.com>
To: freebsd-gnats-submit at FreeBSD.org
Cc:  
Subject: Re: ports/52590: [non-maintainer update] update logic for "BROKEN" variable in audio/aureal-kmod
Date: Mon, 26 May 2003 19:49:24 -0500

 Ugh.  Apparently the Makefile changed since I did my last cvsup.
 Here's an updated patchfile, same changes really.
 
 --- aureal-kmod/Makefile.dist	Mon May 26 19:39:20 2003
 +++ aureal-kmod/Makefile	Mon May 26 19:40:15 2003
 @@ -36,8 +36,7 @@
  VERSION_SOUND_C=
  .endif
  
 -VERSION_SOUND_C_CURRENT:=	${VERSION_SOUND_C:S/1.//}
 -VERSION_SOUND_C_STABLE:=	${VERSION_SOUND_C:S/1.17.2.//}
 +VERSION_SOUND_C_MINOR:=	${VERSION_SOUND_C:S/^1.//:S/^17.2.//}
  
  .if ${OSVERSION} < 410000
  BROKEN=		"FreeBSD 3.*, 4.0 are not supported"
 @@ -51,7 +50,7 @@
  # FreeBSD 4.2, 4.3
  PORTVERSION=    1.3
  
 -.if ${VERSION_SOUND_C_STABLE} < 4
 +.if ${VERSION_SOUND_C_MINOR} < 4
  # FreeBSD 4.2 before kobj MFC
  PORTREVISION=	1
  
 @@ -69,7 +68,7 @@
  
  .elif ${OSVERSION} < 500000
  # FreeBSD 4.5+, 4.6, 4.7, 4.8-
 -.if ${VERSION_SOUND_C_STABLE} < 12
 +.if ${VERSION_SOUND_C_MINOR} < 12
  BROKEN=		"Base system is outdated. This port needs -STABLE after 2002-04-22."
  .endif
  PORTVERSION=	1.3
 @@ -79,7 +78,7 @@
  
  .if ${OSVERSION} > 500000
  # FreeBSD 5-CURRENT
 -.if ${VERSION_SOUND_C_CURRENT} < 70
 +.if ${VERSION_SOUND_C_MINOR} < 70
  BROKEN=		"Base system is outdated. This port needs -CURRENT after 
 2002-04-04."
  .endif
  .endif
 



More information about the freebsd-ports-bugs mailing list