summaryrefslogtreecommitdiff
path: root/games/warmux/Makefile
blob: 4b0dfeb38aaee026aa4ced3466c27e7f5ffc0324 (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
59
60
61
62
63
64
65
66
# Ports collection makefile for:  wormux
# Date created:			  Thu Dec 16 18:46:55 EET 2004
# Whom:				  Anton Yudin <toha@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	wormux
DISTVERSION=	0.9.2.1
PORTREVISION=	2
CATEGORIES=	games
MASTER_SITES=	http://download.gna.org/wormux/ \
		http://download.gna.org/wormux/archive/

MAINTAINER=	makc@FreeBSD.org
COMMENT=	Wormux game

LIB_DEPENDS=	xml++-2.6.2:${PORTSDIR}/textproc/libxml++26 \
		curl:${PORTSDIR}/ftp/curl

USE_BZIP2=	yes
GNU_CONFIGURE=	yes
USE_GMAKE=	yes
USE_SDL=	sdl image mixer ttf gfx net
MAKE_JOBS_SAFE=	yes
USE_DOS2UNIX=	fixed_class.h

MANCOMPRESSED=	no
MAN6=	wormux.6

OPTIONS+=	NLS "Native Language Support via gettext utilities" on \
		FRIBIDI "Enable bi-directional unicode support" off \
		SERVER "Enable dedicated server" off

.include <bsd.port.options.mk>

post-patch:
	${REINPLACE_CMD} -e "s,-Werror,," ${WRKSRC}/Makefile.in \
	${WRKSRC}/src/Makefile.in
	${FIND} -d ${WRKSRC}/data/ -name "*.*~" -delete

.if !defined(WITHOUT_NLS)
USE_GETTEXT=	yes
PLIST_SUB+=	NLS=""
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
		LDFLAGS="-L${LOCALBASE}/lib"
.else
CONFIGURE_ARGS+=	--disable-nls
PLIST_SUB+=	NLS="@comment "
.endif

.if defined(WITH_SERVER)
PLIST_SUB+=	SERVER=""
CONFIGURE_ARGS+=	--enable-servers
.else
PLIST_SUB+=	SERVER="@comment "
.endif

.if defined(WITH_FRIBIDI)
LIB_DEPENDS+=	fribidi:${PORTSDIR}/converters/fribidi
CONFIGURE_ARGS+=	--enable-fribidi
.else
CONFIGURE_ARGS+=	--disable-fribidi
.endif

.include <bsd.port.mk>