diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-18 18:47:46 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-18 18:47:46 +0000 |
commit | 7a6f05bb7a8bb1b61be9d31f94f2221a0c91e600 (patch) | |
tree | 2b79da66f460b2ce052979250e49c8865277ad58 /audio | |
parent | BROKEN: Conflicting dependencies (linux_base 7.x and 8.x) (diff) |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Notes
Notes:
svn path=/head/; revision=118258
Diffstat (limited to 'audio')
-rw-r--r-- | audio/juk/Makefile | 8 | ||||
-rw-r--r-- | audio/lindele/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/audio/juk/Makefile b/audio/juk/Makefile index 6c567ebdd326..d0fbb8169014 100644 --- a/audio/juk/Makefile +++ b/audio/juk/Makefile @@ -25,9 +25,15 @@ USE_REINPLACE= yes CONFIGURE_TARGET= --build=${ARCH}-portsbld-freebsd${OSREL} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-O2||g; s|-pedantic ||g; \ s|-lpthread|${PTHREAD_LIBS}|g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/audio/lindele/Makefile b/audio/lindele/Makefile index 181db1719139..d0fe28b69c5c 100644 --- a/audio/lindele/Makefile +++ b/audio/lindele/Makefile @@ -24,4 +24,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + +.include <bsd.port.post.mk> |