diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gnofract4d/Makefile | 8 | ||||
-rw-r--r-- | graphics/plotutils/Makefile | 8 | ||||
-rw-r--r-- | graphics/vertex/Makefile | 8 | ||||
-rw-r--r-- | graphics/xzgv/Makefile | 4 |
4 files changed, 25 insertions, 3 deletions
diff --git a/graphics/gnofract4d/Makefile b/graphics/gnofract4d/Makefile index 6804a89ad31..4e43bd82fd2 100644 --- a/graphics/gnofract4d/Makefile +++ b/graphics/gnofract4d/Makefile @@ -24,10 +24,16 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --enable-compile-warnings=no +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ 's|^CXXFLAGS =.* -D|CXXFLAGS = @CXXFLAGS@ -D|g ; \ s|gnofract4d_helpdir)/images|gnofract4d_helpdir)|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/plotutils/Makefile b/graphics/plotutils/Makefile index 18a68053abd..a1e9b7f7938 100644 --- a/graphics/plotutils/Makefile +++ b/graphics/plotutils/Makefile @@ -28,7 +28,13 @@ MAN1= ode.1 plot.1 plotfont.1 spline.1 tek2plot.1 INFO= libxmi plotutils +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + pre-patch: @${PERL} -pi -e 's|-lXm |\$$\{MOTIFLIB\} |g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/vertex/Makefile b/graphics/vertex/Makefile index 86253a2e642..64be134580d 100644 --- a/graphics/vertex/Makefile +++ b/graphics/vertex/Makefile @@ -30,8 +30,14 @@ INSTALL_TARGET= vertex_install MAN1= ${PORTNAME}.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + pre-patch: @${FIND} ${WRKSRC} -name "*.[c,h]" | ${XARGS} ${PERL} -pi -e \ 's|malloc.h|stdlib.h|' -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/xzgv/Makefile b/graphics/xzgv/Makefile index df8e571388b..f5292b7049f 100644 --- a/graphics/xzgv/Makefile +++ b/graphics/xzgv/Makefile @@ -33,4 +33,8 @@ post-patch: CFLAGS+= -DINTERP_MMX .endif +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + .include <bsd.port.post.mk> |