diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-09-14 09:32:03 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-09-14 09:32:03 +0000 |
commit | 025d009247e6a4fe5180059d4fd9e2f95641d18f (patch) | |
tree | 6ab6875d485b519af982e404a9088b651cf521a6 /games | |
parent | a15a746cf2bce00a6a83684a601d84548ea4ed18 (diff) | |
download | ports-025d009247e6a4fe5180059d4fd9e2f95641d18f.tar.gz ports-025d009247e6a4fe5180059d4fd9e2f95641d18f.zip |
Change sequence in Makefile, so that supplied patch that fixes the
compilation dependency problem is always applied.
PR: ports/86092
Submitted by: Johan van Selst <johans(at)stack.nl>
Notes
Notes:
svn path=/head/; revision=142696
Diffstat (limited to 'games')
-rw-r--r-- | games/yadex/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/games/yadex/Makefile b/games/yadex/Makefile index a3ccee509620..1eea238012ad 100644 --- a/games/yadex/Makefile +++ b/games/yadex/Makefile @@ -15,10 +15,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= danfe@FreeBSD.org COMMENT= A WAD-file editor, for games like Doom and Hexen -BROKEN= Does not compile -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2005-09-22 - USE_X_PREFIX= yes USE_GMAKE= yes MAKEFILE= GNUmakefile @@ -35,14 +31,15 @@ OPTIONS= WHITE_BG "Use alternative (black-on-white) color scheme" off \ .include <bsd.port.pre.mk> -.if defined(WITH_3D_RENDER) || defined(WITH_SEARCH) \ - || defined(WITH_EXTRA_TOOLS) || defined(WITH_LAPTOP_KEYS) PATCH_SITES= http://glbsp.sourceforge.net/%SUBDIR%/ PATCH_SITE_SUBDIR= ${PORTNAME} PATCH_DIST_STRIP= -p1 PATCH_PREFIX= ${PORTNAME:U:C/^(.).*$/\1/g}${PORTNAME:C/^(.)//}_${PORTVERSION:S/.//g} PATCH_SUFFIX= .diff PATCHFILES= ${PATCH_PREFIX}_Depend${PATCH_SUFFIX} + +.if defined(WITH_3D_RENDER) || defined(WITH_SEARCH) \ + || defined(WITH_EXTRA_TOOLS) || defined(WITH_LAPTOP_KEYS) . if defined(WITH_3D_RENDER) PATCHFILES+= ${PATCH_PREFIX}_Render3D${PATCH_SUFFIX} PLIST_SUB+= 3DRENDER="" |