diff options
author | rakuco <rakuco@FreeBSD.org> | 2013-01-13 07:30:35 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2013-01-13 07:30:35 +0800 |
commit | 397c4cc345b2ad91e9ff5657dac8a314b2227b40 (patch) | |
tree | 9f0d0e26c567a69366f805363fb7a1748643d89e /games | |
parent | a3b1b6919aaacc90043c68dc5d1a866c803605ce (diff) | |
download | freebsd-ports-gnome-397c4cc345b2ad91e9ff5657dac8a314b2227b40.tar.gz freebsd-ports-gnome-397c4cc345b2ad91e9ff5657dac8a314b2227b40.tar.zst freebsd-ports-gnome-397c4cc345b2ad91e9ff5657dac8a314b2227b40.zip |
- Convert to OptionsNG.
- Update maintainer's email address.
PR: ports/175092
Submitted by: Sender Ghost <lightside@safebox.ru> (maintainer)
Diffstat (limited to 'games')
-rw-r--r-- | games/assaultcube/Makefile | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/games/assaultcube/Makefile b/games/assaultcube/Makefile index 00bede844c1c..562b774dbf40 100644 --- a/games/assaultcube/Makefile +++ b/games/assaultcube/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: actioncube -# Date created: 2007-02-25 -# Whom: alepulver -# +# Created by: alepulver # $FreeBSD$ -# PORTNAME= assaultcube PORTVERSION= 1.1.0.4 @@ -13,7 +9,7 @@ MASTER_SITES= SF/actiongame/AssaultCube%20Version%20${PORTVERSION} DISTFILES= AssaultCube_v${PORTVERSION}_source${EXTRACT_SUFX} \ AssaultCube_v${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= lightside@safebox.ru +MAINTAINER= lightside@gmx.com COMMENT= Total conversion of the FPS game called Cube LICENSE_COMB= multi @@ -42,17 +38,17 @@ MAKE_JOBS_SAFE= yes PORTDATA= config demos packages PORTDOCS= * -OPTIONS= CLIENT "Build client" on \ - DEDICATED "Build dedicated server" on \ - MASTER "Build master server" off +OPTIONS_DEFINE= DOCS +OPTIONS_MULTI= BUILD +OPTIONS_MULTI_BUILD= CLIENT DEDICATED MASTER +OPTIONS_DEFAULT= CLIENT DEDICATED +CLIENT_DESC= Build client +DEDICATED_DESC= Build dedicated server +MASTER_DESC= Build master server -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITHOUT_CLIENT) && defined(WITHOUT_DEDICATED) && defined(WITHOUT_MASTER) -IGNORE= needs at least one executable (CLIENT, DEDICATED or MASTER) -.endif - -.if !defined(WITHOUT_CLIENT) +.if ${PORT_OPTIONS:MCLIENT} USE_GETTEXT= yes USE_GL= yes USE_SDL= image mixer sdl @@ -65,13 +61,13 @@ DESKTOP_ENTRIES="AssaultCube" "${COMMENT}" \ "Application;Game;" ${FALSE} .endif -.if !defined(WITHOUT_DEDICATED) +.if ${PORT_OPTIONS:MDEDICATED} ALL_TARGET+= server SUB_FILES+= ${PORTNAME}_server ACUBE_BIN+= server .endif -.if !defined(WITHOUT_MASTER) +.if ${PORT_OPTIONS:MMASTER} ALL_TARGET+= master SUB_FILES+= ${PORTNAME}_master ACUBE_BIN+= master @@ -86,7 +82,7 @@ do-install: ${MKDIR} ${DATADIR} cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${DATADIR} .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR} .endif @@ -97,4 +93,4 @@ post-install: @${ECHO_CMD} libexec/${PORTNAME}_${f} >> ${TMPPLIST} .endfor -.include <bsd.port.post.mk> +.include <bsd.port.mk> |