diff options
author | nbm <nbm@FreeBSD.org> | 2003-08-23 06:01:51 +0800 |
---|---|---|
committer | nbm <nbm@FreeBSD.org> | 2003-08-23 06:01:51 +0800 |
commit | 060955fa2df9ed7d4a13f671ddc55807094ebcfc (patch) | |
tree | d125ca2fd61a629152e323a1438ac68b5b98faf1 /games/criticalmass/Makefile | |
parent | 098b7cc1b422ae3351df04716c144a263bd60ad0 (diff) | |
download | freebsd-ports-gnome-060955fa2df9ed7d4a13f671ddc55807094ebcfc.tar.gz freebsd-ports-gnome-060955fa2df9ed7d4a13f671ddc55807094ebcfc.tar.zst freebsd-ports-gnome-060955fa2df9ed7d4a13f671ddc55807094ebcfc.zip |
Upgrade criticalmass to 0.98, also fixing gcc 3 build problems.
Diffstat (limited to 'games/criticalmass/Makefile')
-rw-r--r-- | games/criticalmass/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/games/criticalmass/Makefile b/games/criticalmass/Makefile index d6d259f1867e..b83ea8f75454 100644 --- a/games/criticalmass/Makefile +++ b/games/criticalmass/Makefile @@ -6,15 +6,15 @@ # PORTNAME= criticalmass -PORTVERSION= 0.97 -PORTREVISION= 1 +PORTVERSION= 0.98 +PORTREVISION= 0 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= criticalmass DISTNAME= CriticalMass-${PORTVERSION} MAINTAINER= nbm@FreeBSD.org -COMMENT= An SDL/OpenGL space shoot'em up game +COMMENT= An SDL/OpenGL space shoot\'em up game LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \ SDL_image.10:${PORTSDIR}/graphics/sdl_image \ @@ -28,15 +28,11 @@ CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${X11BASE}/lib" \ MAN6= critter.6 -SDLINCPFILES= utilities/GLBitmapCollection.cpp utilities/GLExtension.hpp \ - utilities/GLTexture.hpp utilities/PNG.hpp +SDLINCPFILES= utilssdl/PNG.hpp utilsgl/GLTexture.hpp \ + utilsgl/GLBitmapCollection.cpp utilsgl/GLExtension.hpp .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile (bad C++ code)" -.endif - post-patch: ${REINPLACE_CMD} -e 's#sdl-config#sdl11-config#; s#-lSDL # #;' ${WRKSRC}/configure ${REINPLACE_CMD} -e 's#SDL/#SDL11/#;' ${SDLINCPFILES:S#^#${WRKSRC}/#} |