blob: ed1bc0713d5dc0a1cef09d4993b499a437f54cfa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
PORTNAME= legesmotus
PORTVERSION= 0.4.0
PORTREVISION= 8
CATEGORIES= games
MASTER_SITES= SF
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Team-based, networked, 2D shooter set in zero-gravity
WWW= http://legesmotus.cs.brown.edu/
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual # not GPLv2+
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
USES= compiler:c++11-lib gmake
USE_CXXSTD= c++11 # strtoll, atoll
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix="${PREFIX}" \
--mandir="${PREFIX}/man" \
--datadir="${DATADIR}"
MAKE_ENV= XDIR=${LOCALBASE}
CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
CXXFLAGS_clang= -Wno-c++11-narrowing
PORTDATA= *
OPTIONS_MULTI= COMPONENTS
OPTIONS_MULTI_COMPONENTS=CLIENT SERVER METASERVER SERVERSCANNER
OPTIONS_DEFAULT=CLIENT SERVER
OPTIONS_SUB= yes
CLIENT_DESC= Build client
SERVER_DESC= Build server
METASERVER_DESC= Build metaserver
SERVERSCANNER_DESC= Build server scanner
CLIENT_CONFIGURE_OFF= --disable-client
CLIENT_USES= gl sdl
CLIENT_USE= SDL=sdl,image,ttf,mixer GL=gl
CLIENT_DESKTOP_ENTRIES= "Leges Motus" \
"" \
"${DATADIR}/sprites/blue_head32.png" \
"legesmotus" \
"Game;ActionGame;" \
""
SERVER_CONFIGURE_OFF= --disable-server
METASERVER_CONFIGURE_ON= --enable-metaserver
SERVERSCANNER_CONFIGURE_ON= --enable-serverscanner
.include <bsd.port.mk>
|