mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
9ab41ffb0e
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
36 lines
877 B
Makefile
36 lines
877 B
Makefile
# Created by: Dominic Fandrey
|
|
# $FreeBSD$
|
|
|
|
PORTNAME?= ioquake3-devel
|
|
DISTVERSION?= GIT${GITREVISION}
|
|
PORTREVISION?= 0
|
|
MASTER_SITES?= ftp://deponie.yamagi.org/freebsd/distfiles/ioquake3/ \
|
|
http://deponie.yamagi.org/freebsd/distfiles/ioquake3/
|
|
EXTRACT_SUFX?= .tar.xz
|
|
|
|
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?= 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.md \
|
|
voip-readme.txt
|
|
|
|
.include "${MASTERDIR}/Makefile"
|