diff options
author | ak <ak@FreeBSD.org> | 2014-05-08 03:05:59 +0800 |
---|---|---|
committer | ak <ak@FreeBSD.org> | 2014-05-08 03:05:59 +0800 |
commit | de127cede210688f087857bf53b995cab879d290 (patch) | |
tree | a59582583ca5f14351b69d99bb7ac2dd690b7618 /games | |
parent | 3989381d5d6ceeb13fd0ad0e1777eff818b3d3ba (diff) | |
download | freebsd-ports-gnome-de127cede210688f087857bf53b995cab879d290.tar.gz freebsd-ports-gnome-de127cede210688f087857bf53b995cab879d290.tar.zst freebsd-ports-gnome-de127cede210688f087857bf53b995cab879d290.zip |
- Add license [1]
- Pass maintainership to submitter [1]
- Fix build with clang on i386 arches
PR: ports/188889 (based on) [1]
Submitted by: Thiago <thiagohero501@gmail.com> [1]
Diffstat (limited to 'games')
-rw-r--r-- | games/prboom/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/games/prboom/Makefile b/games/prboom/Makefile index 352492c35b29..176814c4ef6d 100644 --- a/games/prboom/Makefile +++ b/games/prboom/Makefile @@ -3,31 +3,32 @@ PORTNAME= prboom PORTVERSION= 2.5.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= thiagohero501@gmail.com COMMENT= Multiplayer-capable and modified version of ID's classic DOOM game +LICENSE= GPLv2 + LIB_DEPENDS= libsmpeg.so:${PORTSDIR}/multimedia/smpeg USES= gmake USE_SDL= mixer net sdl GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-i386-asm CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= OPENGL OPTIONS_DEFAULT= OPENGL -DATADIR= ${DMDIR} +DATADIR= ${LOCALBASE}/share/doom PLIST_SUB= PORTVERSION=${PORTVERSION} OPENGL_CONFIGURE_ENABLE= gl OPENGL_USE= GL=yes -.include "${.CURDIR}/../doom-data/Makefile.include" - .include <bsd.port.mk> |