diff options
Diffstat (limited to 'games/bsp/Makefile')
-rw-r--r-- | games/bsp/Makefile | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/games/bsp/Makefile b/games/bsp/Makefile index 2c49068eead6..d372a01e0349 100644 --- a/games/bsp/Makefile +++ b/games/bsp/Makefile @@ -6,25 +6,34 @@ # PORTNAME= bsp -PORTVERSION= 5.1 +PORTVERSION= 5.2 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= doombsp +MASTER_SITES= http://games.moria.org.uk/doom/bsp/download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= alepulver@FreeBSD.org COMMENT= Node builder for Doom +USE_BZIP2= yes GNU_CONFIGURE= yes +MAN6= bsp.6 + post-patch: - ${REINPLACE_CMD} -e "s,-O2 -fomit-frame-pointer -ffast-math,${CFLAGS}," \ - ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-O2 -fomit-frame-pointer|${CFLAGS} &|' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bsp ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/bsp.6 ${MANPREFIX}/man/man6 .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= does not build +.endif + +.include <bsd.port.post.mk> |