diff options
author | kris <kris@FreeBSD.org> | 2003-10-16 09:31:58 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-16 09:31:58 +0800 |
commit | da8461ff2ec762292299f15fc11acb1c8964991e (patch) | |
tree | f89e331d5f2e08ecfea6d61ae8acc9965049b439 /games | |
parent | aacf2ddd5568a006dd10f1707dbfc411828817ce (diff) | |
download | freebsd-ports-gnome-da8461ff2ec762292299f15fc11acb1c8964991e.tar.gz freebsd-ports-gnome-da8461ff2ec762292299f15fc11acb1c8964991e.tar.zst freebsd-ports-gnome-da8461ff2ec762292299f15fc11acb1c8964991e.zip |
BROKEN on 5.x: does not compile
Diffstat (limited to 'games')
-rw-r--r-- | games/44bsd-hunt/Makefile | 8 | ||||
-rw-r--r-- | games/omega/Makefile | 8 | ||||
-rw-r--r-- | games/yahtzee/Makefile | 8 |
3 files changed, 21 insertions, 3 deletions
diff --git a/games/44bsd-hunt/Makefile b/games/44bsd-hunt/Makefile index 5cad662259f6..88f1638c1d84 100644 --- a/games/44bsd-hunt/Makefile +++ b/games/44bsd-hunt/Makefile @@ -14,4 +14,10 @@ COMMENT= Rogue-like multiplayer game MAN6= hunt.6 huntd.6 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + +.include <bsd.port.post.mk> diff --git a/games/omega/Makefile b/games/omega/Makefile index bb51a109554b..9ae90f82f9e6 100644 --- a/games/omega/Makefile +++ b/games/omega/Makefile @@ -21,6 +21,12 @@ MAN6= omega.6 PORTDOCS= buglist.txt docs/compile.all docs/omega.txt docs/readme.1st \ docs/readme3 docs/readme4 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/omega ${PREFIX}/bin/omega-game @${CHOWN} root:games ${PREFIX}/bin/omega-game @@ -41,4 +47,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/games/yahtzee/Makefile b/games/yahtzee/Makefile index aa661bb03235..9c242035f178 100644 --- a/games/yahtzee/Makefile +++ b/games/yahtzee/Makefile @@ -19,6 +19,12 @@ COMMENT= A curses version of the dice game for one or more players WRKSRC= ${WRKDIR}/${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + # Distribution does not include an install target. So here it is. # do-install: @@ -26,4 +32,4 @@ do-install: ${MKDIR} -m 0755 ${PREFIX}/share/yahtzee ${INSTALL_DATA} -m 0664 -o root -g games /dev/null ${PREFIX}/share/yahtzee/yahtzee.sco -.include <bsd.port.mk> +.include <bsd.port.post.mk> |