diff options
author | tg <tg@FreeBSD.org> | 2004-06-18 20:27:07 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2004-06-18 20:27:07 +0800 |
commit | 438b3e6863333b9f8eb1c9495b3c00e3014f1d80 (patch) | |
tree | 2c4f2613c739c42fe53376d4e59adb085c25aa33 /games | |
parent | fbce2740c48562f149c6a1cb325d752c1373839e (diff) | |
download | freebsd-ports-gnome-438b3e6863333b9f8eb1c9495b3c00e3014f1d80.tar.gz freebsd-ports-gnome-438b3e6863333b9f8eb1c9495b3c00e3014f1d80.tar.zst freebsd-ports-gnome-438b3e6863333b9f8eb1c9495b3c00e3014f1d80.zip |
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.
Diffstat (limited to 'games')
-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> |