diff options
author | dinoex <dinoex@FreeBSD.org> | 2006-04-23 23:22:27 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2006-04-23 23:22:27 +0800 |
commit | de921ebe6c5bece4b0ffecbdfc92ca919e67a2b1 (patch) | |
tree | 6ad488c23ff0ec31c5718629d7d00f872a031f5f /graphics/cenon | |
parent | dcd09b2065f75df66820b08899d4e6c1c7902350 (diff) | |
download | freebsd-ports-gnome-de921ebe6c5bece4b0ffecbdfc92ca919e67a2b1.tar.gz freebsd-ports-gnome-de921ebe6c5bece4b0ffecbdfc92ca919e67a2b1.tar.zst freebsd-ports-gnome-de921ebe6c5bece4b0ffecbdfc92ca919e67a2b1.zip |
- fix broken
only problems with gcc4.x.x
Diffstat (limited to 'graphics/cenon')
-rw-r--r-- | graphics/cenon/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/cenon/Makefile b/graphics/cenon/Makefile index 882715bc496d..163bc4ea03db 100644 --- a/graphics/cenon/Makefile +++ b/graphics/cenon/Makefile @@ -17,8 +17,6 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= danfe@FreeBSD.org COMMENT= A vector graphics tool for GNUstep -BROKEN= Does not compile - GNUSTEP_PREFIX?= ${LOCALBASE}/GNUstep PREFIX= ${GNUSTEP_PREFIX} NO_MTREE= yes @@ -37,6 +35,10 @@ OPTIONS= FULL_LIBRARY "Install complete Cenon Library" off .include <bsd.port.pre.mk> +.if ${CC} == "gcc40" || ${CC} == "gcc41" || ${CC} == "gcc42" +BROKEN= Does not compile +.endif + .if defined(WITH_FULL_LIBRARY) DISTFILES+= CenonLibrary-${PORTVERSION}-1${EXTRACT_SUFX} PLIST_SUB+= FULL="" |