diff options
author | kami <kami@FreeBSD.org> | 2016-04-26 06:43:23 +0800 |
---|---|---|
committer | kami <kami@FreeBSD.org> | 2016-04-26 06:43:23 +0800 |
commit | be39e2154e3455ae5f80d7a6934dd1a4900221b9 (patch) | |
tree | b925cdd4e451243acc640cf04658621ba50ec608 /games/ioquake3-devel | |
parent | 19a37e73d63cb4a5af285434d1ac8f4c67dffb91 (diff) | |
download | freebsd-ports-gnome-be39e2154e3455ae5f80d7a6934dd1a4900221b9.tar.gz freebsd-ports-gnome-be39e2154e3455ae5f80d7a6934dd1a4900221b9.tar.zst freebsd-ports-gnome-be39e2154e3455ae5f80d7a6934dd1a4900221b9.zip |
Update and clean up the ioquake3 family of ports.
The following maintenance operations were performed:
- Recreate all patches with `make makepatch`
- Add LICENSE
- Update MAINTAINER to kami@freebsd.org
- games/ioquake3
- Replace a lot of `.if ${PORT_OPTIONS:MFOO}` with `bsd.options.mk` fu
- Add support for slaves using different SDL versions
- games/ioquake3-devel
- Update to GIT revision 2808
- Use SDL2
- games/iourbanterror
- Change treatment of patches so `make makepatch` doesn't screw the patches in ${MASTERDIR}/files over
- Update 4.2.018 to 4.2.023
- games/urbanterror-data
- Update 4.2.018 to 4.2.023
- Fix install without DOCS
Reviewed by: cs
Approved by: cs
Differential Revision: https://reviews.freebsd.org/D5816
Diffstat (limited to 'games/ioquake3-devel')
-rw-r--r-- | games/ioquake3-devel/Makefile | 11 | ||||
-rw-r--r-- | games/ioquake3-devel/distinfo | 4 | ||||
-rw-r--r-- | games/ioquake3-devel/files/patch-Makefile | 11 |
3 files changed, 9 insertions, 17 deletions
diff --git a/games/ioquake3-devel/Makefile b/games/ioquake3-devel/Makefile index d0133a527c7e..73dbfb026d0e 100644 --- a/games/ioquake3-devel/Makefile +++ b/games/ioquake3-devel/Makefile @@ -3,30 +3,33 @@ PORTNAME?= ioquake3-devel DISTVERSION?= GIT${GITREVISION} -PORTREVISION?= 2 +PORTREVISION?= 0 MASTER_SITES?= ftp://deponie.yamagi.org/freebsd/distfiles/ioquake3/ \ http://deponie.yamagi.org/freebsd/distfiles/ioquake3/ EXTRACT_SUFX?= .tar.xz -MAINTAINER?= kamikaze@bsdforen.de +MAINTAINER?= kami@freebsd.org COMMENT?= Development GIT snapshots of ioquake3 +LICENSE?= GPLv2 + MASTERDIR= ${.CURDIR}/../ioquake3 DESCR?= ${.CURDIR}/../${PORTNAME}/pkg-descr DISTINFO_FILE?= ${.CURDIR}/../${PORTNAME}/distinfo PATCHDIR?= ${.CURDIR}/../${PORTNAME}/files PKGMESSAGE?= ${.CURDIR}/../${PORTNAME}/pkg-message -GITREVISION?= 2390 +GITREVISION?= 2808 BINSUFFIX?= -devel IOQ3?= CLIENT TOOLS DLRENDERER GAMELIBS OPUS OPENGL2 IOQ3ARCH?= ${ARCH:S/i386/x86/:S/amd64/x86_64/} +IOQ3SDL?= sdl2 Q3DOCS?= README.md \ id-readme.txt \ md4-readme.txt \ - opengl2-readme.txt \ + opengl2-readme.md \ voip-readme.txt .include "${MASTERDIR}/Makefile" diff --git a/games/ioquake3-devel/distinfo b/games/ioquake3-devel/distinfo index 068c5d1c2bbb..a05a90764676 100644 --- a/games/ioquake3-devel/distinfo +++ b/games/ioquake3-devel/distinfo @@ -1,2 +1,2 @@ -SHA256 (ioquake3-devel-GIT2390.tar.xz) = 1ad3a8bfccaa54ed39221f86539676479187f5f832a4140cf5d7ee7be9a1b1be -SIZE (ioquake3-devel-GIT2390.tar.xz) = 4310568 +SHA256 (ioquake3-devel-GIT2808.tar.xz) = a9fe73c4c29e218e64d782ce8b458a93e4860e81d4c1fc08e6556cd32dfabbb2 +SIZE (ioquake3-devel-GIT2808.tar.xz) = 8166804 diff --git a/games/ioquake3-devel/files/patch-Makefile b/games/ioquake3-devel/files/patch-Makefile deleted file mode 100644 index 5122e75c6f59..000000000000 --- a/games/ioquake3-devel/files/patch-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.orig 2015-10-25 13:13:52 UTC -+++ Makefile -@@ -1043,7 +1043,7 @@ ifeq ($(USE_VOIP),1) - CLIENT_CFLAGS += -DUSE_VOIP - SERVER_CFLAGS += -DUSE_VOIP - ifeq ($(USE_INTERNAL_SPEEX),1) -- CLIENT_CFLAGS += -DFLOATING_POINT -DUSE_ALLOCA -I$(SPEEXDIR)/include -+ CLIENT_CFLAGS := -I$(SPEEXDIR)/include -DFLOATING_POINT -DUSE_ALLOCA $(CLIENT_CFLAGS) - else - CLIENT_LIBS += -lspeex -lspeexdsp - endif |