diff options
author | kris <kris@FreeBSD.org> | 2004-09-19 02:47:46 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-19 02:47:46 +0800 |
commit | 8e6a5fac22b2eadd32378144474e37250fd885ee (patch) | |
tree | ffa0a26b5bb3df44db20acf832f2952f7e1aac8f /audio | |
parent | 478b91a3501b2386302f44aa2031b4d9cbc67b5c (diff) | |
download | freebsd-ports-gnome-8e6a5fac22b2eadd32378144474e37250fd885ee.tar.gz freebsd-ports-gnome-8e6a5fac22b2eadd32378144474e37250fd885ee.tar.zst freebsd-ports-gnome-8e6a5fac22b2eadd32378144474e37250fd885ee.zip |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
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> |