blob: 66c37c98455d349e56c96fdde737bc131a542503 (
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
52
53
54
55
56
57
58
|
# Created by: Andrey Zakhvatov
# $FreeBSD$
PORTNAME= gltron
PORTVERSION= 0.70
PORTREVISION= 11
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source/${PORTVERSION}
EXTRACT_SUFX= -source.tar.gz
MAINTAINER= lx@FreeBSD.org
COMMENT= A 3D worm game for two players for X Window System
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
USE_GL= gl
USE_SDL= sdl sound
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-warn
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
OPTIONS_DEFINE= SDL_NET
SDL_NET_DESC= Network Support
DESKTOP_ENTRIES= "GLtron" \
"3D lightcycle game" \
"${DATADIR}/art/default/gltron.png" \
"gltron" \
"Game;ArcadeGame;" \
false
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSDL_NET}
USE_SDL+= net
CONFIGURE_ARGS+= --enable-network
.endif
post-patch:
@${REINPLACE_CMD} -e 's|CFLAGS="-D|CFLAGS="$$CFLAGS -D|g ; \
s|-O$$enable_optimize||g' ${WRKSRC}/configure
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
's|^AM_CFLAGS|INCLUDES|g ; \
s|^AM_CXXFLAGS|INCLUDES|g ; \
s|-ansi -pedantic||g'
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for file in ChangeLog README
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|