diff options
author | kris <kris@FreeBSD.org> | 2003-06-05 06:43:38 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-06-05 06:43:38 +0800 |
commit | f6ac0b4935ea004895ab5cc2800059b8d12c82ba (patch) | |
tree | 91894094142566c88cf43e76bf56bd120a3c8119 /games/nethack33 | |
parent | a202830df7532e2bb404143c7bf5ee68b97df9bf (diff) | |
download | freebsd-ports-gnome-f6ac0b4935ea004895ab5cc2800059b8d12c82ba.tar.gz freebsd-ports-gnome-f6ac0b4935ea004895ab5cc2800059b8d12c82ba.tar.zst freebsd-ports-gnome-f6ac0b4935ea004895ab5cc2800059b8d12c82ba.zip |
Move inclusion of bsd.port.pre.mk later in the file for conditional BROKEN
tag. Early inclusion caused problems for some ports, so to be safe I'm
updating all of them.
Pointy hat to: kris
Diffstat (limited to 'games/nethack33')
-rw-r--r-- | games/nethack33/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/games/nethack33/Makefile b/games/nethack33/Makefile index 363f74c3bbc0..2a4b2e21cf2d 100644 --- a/games/nethack33/Makefile +++ b/games/nethack33/Makefile @@ -27,8 +27,6 @@ MAKE_ENV= CXX="${CXX}" GRAPHICS="${GRAPHICS}" MAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6 -.include <bsd.port.pre.mk> - .if defined(WITH_GNOME_GRAPHICS) CATEGORIES= games gnome PKGNAMESUFFIX= -gnome @@ -36,9 +34,6 @@ LIB_DEPENDS+= gnugetopt:${PORTSDIR}/devel/libgnugetopt USE_GNOME= yes GRAPHICS= GNOME_GRAPHICS .elif defined(WITH_QT_GRAPHICS) -.if ${OSVERSION} >= 500113 -BROKEN= "Does not build" -.endif PKGNAMESUFFIX= -qt USE_QT_VER= 2 MAKE_ENV+= QTCPPFLAGS="${QTCPPFLAGS}" QTCFGLIBS="${QTCFGLIBS}" \ @@ -51,6 +46,12 @@ USE_XPM= yes GRAPHICS= X11_GRAPHICS .endif +.include <bsd.port.pre.mk> + +.if defined(WITH_QT_GRAPHICS) && ${OSVERSION} >= 500113 +BROKEN= "Does not build" +.endif + pre-everything:: .if defined(WITH_GNOME_GRAPHICS) || defined(WITH_QT_GRAPHICS) \ || defined(WITH_TTY_GRAPHICS) || defined(WITHOUT_X11) |