diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-06-04 22:43:38 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-06-04 22:43:38 +0000 |
commit | 93872f18cc0a948ab9c010bbe5694579bd59f8c4 (patch) | |
tree | 918c0e1660ed837a4087b57670a1b1c181c285e0 /games/nethack34 | |
parent | Remove some local changes that crept in with the previous commit. (diff) |
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
Notes
Notes:
svn path=/head/; revision=82300
Diffstat (limited to 'games/nethack34')
-rw-r--r-- | games/nethack34/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/games/nethack34/Makefile b/games/nethack34/Makefile index b1e4bc6f70bb..8d19ede9e6ca 100644 --- a/games/nethack34/Makefile +++ b/games/nethack34/Makefile @@ -33,8 +33,6 @@ HACKNAME?= nethack HACKDIR?= lib/${HACKNAME} HACKDOCSDIR?= share/doc/${HACKNAME} -.include <bsd.port.pre.mk> - .if defined(WITH_GNOME_GRAPHICS) CATEGORIES= games gnome PKGNAMESUFFIX= -gnome @@ -43,9 +41,6 @@ USE_GNOME= gnomelibs MAKE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" GRAPHICS= GNOME_GRAPHICS .elif defined(WITH_QT_GRAPHICS) -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile (bad C++ code)" -.endif PKGNAMESUFFIX= -qt USE_QT_VER= 3 MAKE_ENV+= QTCPPFLAGS="${QTCPPFLAGS} ${PTHREAD_CFLAGS}" \ @@ -59,6 +54,12 @@ USE_XPM= yes GRAPHICS= X11_GRAPHICS .endif +.include <bsd.port.pre.mk> + +.if defined(WITH_QT_GRAPHICS) && ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + pre-everything:: .if defined(WITH_GNOME_GRAPHICS) || defined(WITH_QT_GRAPHICS) \ || defined(WITH_TTY_GRAPHICS) || defined(WITHOUT_X11) |