diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2004-06-18 12:27:07 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2004-06-18 12:27:07 +0000 |
commit | 92e46549e8b663cb9ff37e0bc6725b68f475a501 (patch) | |
tree | c122eaeaf87f748011f1957afe4c979958408b6d | |
parent | Update to 20040618 (diff) |
Mark BROKEN for -STABLE. This port needs a recent C++ compiler and requires
that the dependencies (esp. gtk--2) were built with the same compiler
version.
Notes
Notes:
svn path=/head/; revision=111719
-rw-r--r-- | games/freedoko/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/games/freedoko/Makefile b/games/freedoko/Makefile index 982288dc1600..321f23835ad6 100644 --- a/games/freedoko/Makefile +++ b/games/freedoko/Makefile @@ -21,12 +21,17 @@ LIB_DEPENDS= gtkmm-2.0.6:${PORTSDIR}/x11-toolkits/gtk--2 USE_ZIP= yes WRKSRC= ${WRKDIR}/${DISTNAME:C/\.src$//}/src USE_GMAKE= yes -USE_GCC= 3.3 MAKE_ENV= OSTYPE=linux-gnu DATADIR=${DATADIR} CPIOFLAGS= --quiet -pdum DATASUBDIRS= ai backgrounds cardsets help.icons rules translations +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on 4.x (port and dependencies need recent C++ compiler)" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/FreeDoko ${PREFIX}/bin ${LN} ${PREFIX}/bin/FreeDoko ${PREFIX}/bin/freedoko @@ -39,4 +44,4 @@ do-install: ${FIND} . ! -name Makefile\* \ | ${CPIO} ${CPIOFLAGS} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |