fbd0197639
- Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav
85 lines
1.9 KiB
Makefile
85 lines
1.9 KiB
Makefile
# New ports collection makefile for: legesmotus
|
|
# Date created: 16 Jul 2009
|
|
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= legesmotus
|
|
PORTVERSION= 0.4.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= A team-based, networked, 2D shooter set in zero-gravity
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" \
|
|
--mandir="${PREFIX}/man" \
|
|
--datadir="${DATADIR}"
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= XDIR=${LOCALBASE}
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS= CLIENT "Build client" on \
|
|
SERVER "Build server" on \
|
|
METASERVER "Build metaserver" off \
|
|
SERVERSCANNER "Build server scanner" off
|
|
|
|
DESKTOP_ENTRIES="Leges Motus" \
|
|
"A team-based, networked, 2D shooter set in zero-gravity" \
|
|
"${DATADIR}/sprites/blue_head32.png" \
|
|
"legesmotus" \
|
|
"Game;ActionGame;" \
|
|
false
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITHOUT_CLIENT)
|
|
PLIST_SUB+= CLIENT="@comment "
|
|
CONFIGURE_ARGS+=--disable-client
|
|
.else
|
|
PLIST_SUB+= CLIENT=""
|
|
USE_SDL= sdl image ttf mixer
|
|
USE_GL= gl
|
|
MAN6+= legesmotus.6
|
|
.endif
|
|
|
|
.if defined(WITHOUT_SERVER)
|
|
PLIST_SUB+= SERVER="@comment "
|
|
CONFIGURE_ARGS+=--disable-server
|
|
.else
|
|
PLIST_SUB+= SERVER=""
|
|
MAN6+= lmserver.6
|
|
.endif
|
|
|
|
.if defined(WITHOUT_CLIENT) && defined(WITHOUT_SERVER) && defined(WITHOUT_METASERVER)
|
|
PLIST_SUB+= DATA="@comment "
|
|
.else
|
|
PLIST_SUB+= DATA=""
|
|
.endif
|
|
|
|
.if defined(WITH_METASERVER)
|
|
PLIST_SUB+= METASERVER=""
|
|
CONFIGURE_ARGS+=--enable-metaserver
|
|
.else
|
|
PLIST_SUB+= METASERVER="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_SERVERSCANNER)
|
|
PLIST_SUB+= SERVERSCANNER=""
|
|
CONFIGURE_ARGS+=--enable-serverscanner
|
|
MAN6+= lmscan.6
|
|
.else
|
|
PLIST_SUB+= SERVERSCANNER="@comment "
|
|
.endif
|
|
|
|
.if defined(WITHOUT_CLIENT) && defined(WITHOUT_SERVER) && defined(WITHOUT_METASERVER) && defined(WITHOUT_SERVERSCANNER)
|
|
IGNORE= cannot be built with all components disabled. Please rerun 'make config' and enable at least one option
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|