diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-05-31 12:12:06 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-05-31 12:12:06 +0000 |
commit | 6b91d5e48c3ec81a96e96f3aa7a86305cf3e38a6 (patch) | |
tree | d92eb3e33436e3d53fd1f516b0ed7e23f78a1f37 | |
parent | Update to 0.081 (diff) |
Warn about SDL and OpenGL.
Approved by: maintainer.
Notes
Notes:
svn path=/head/; revision=110513
-rw-r--r-- | graphics/smoke/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/graphics/smoke/Makefile b/graphics/smoke/Makefile index 6097797dd52b..073931b7b36c 100644 --- a/graphics/smoke/Makefile +++ b/graphics/smoke/Makefile @@ -40,6 +40,11 @@ FREETYPE_INCLUDEPATH!= ${FREETYPE_CONFIG} --cflags | ${SED} -e 's|-I||g' SDL_INCLUDEPATH!= ${SDL_CONFIG} --cflags | ${SED} -e 's|-I||g; s|-D[[:graph:]]*||g' .endif +pre-everything:: + @${ECHO_MSG} "This port depends on SDL with OpenGL support." + @${ECHO_MSG} "If your SDL does not support OpenGL, hit ^C now and reinstall SDL" + @${ECHO_MSG} "with OpenGL support turned on." + post-patch: @${REINPLACE_CMD} -e 's|%%FREETYPE_CONFIG%%|${FREETYPE_CONFIG}|g; \ s|%%SDL_CONFIG%%|${SDL_CONFIG}|g; \ |