blob: 6598a1baa0c84e440d52712151fd328cc5aa0929 (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Created by: ada@bsd.org
# $FreeBSD$
PORTNAME= freeciv
PORTVERSION= 2.4.0
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/freeciv/Freeciv%20${PORTVERSION:R}/${PORTVERSION}
MAINTAINER= johans@FreeBSD.org
COMMENT= Free turn-based multiplayer strategy
RUN_DEPENDS= hicolor-icon-theme>=0:${PORTSDIR}/misc/hicolor-icon-theme
USES= gettext gmake iconv pkgconfig
USE_BZIP2= yes
USE_PYTHON= yes
GNU_CONFIGURE= yes
LDFLAGS+= -L${LOCALBASE}/lib
CPPFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} --program-transform-name= \
--enable-aimodules --enable-shared \
--enable-fcdb=sqlite3
OPTIONS_DEFINE?= X11 SDL MYSQL IPV6
OPTIONS_DEFAULT?= X11 IPV6
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSDL} && empty(PORT_OPTIONS:MX11)
IGNORE= cannot use SDL without X11: re-run make config
.endif
.if ${PORT_OPTIONS:MX11}
LIB_DEPENDS+= libtiff.so:${PORTSDIR}/graphics/tiff \
libpng15.so:${PORTSDIR}/graphics/png \
libcurl.so:${PORTSDIR}/ftp/curl \
libggz.so:${PORTSDIR}/games/libggz \
libggz-gtk.so:${PORTSDIR}/games/ggz-gtk-client \
libggzcore.so:${PORTSDIR}/games/ggz-client-libs \
libggzmod.so:${PORTSDIR}/games/ggz-client-libs
USE_XORG= xpm
USE_SDL= mixer
USE_GNOME= gtk20
USE_SQLITE= yes
INSTALLS_ICONS= yes
CONFIGURE_ARGS+=--enable-client=gtk
CONFLICTS= freeciv-nox11-[0-9]*
PLIST_SUB+= X11="" GTK=""
.else
CONFIGURE_ARGS+=--enable-client=no
CONFLICTS= freeciv-[0-9]*
PLIST_SUB+= X11="@comment " GTK="@comment "
.endif
.if ${PORT_OPTIONS:MSDL}
CONFIGURE_ARGS+=--enable-client=gtk,sdl
USE_SDL= sdl image ttf
PLIST_SUB+= SDL=""
.else
PLIST_SUB+= SDL="@comment "
.endif
.if ${PORT_OPTIONS:MMYSQL}
CONFIGURE_ARGS+=--enable-fcdb=mysql --with-mysql-prefix=${LOCALBASE}
USE_MYSQL= yes
.endif
.if empty(PORT_OPTIONS:MIPV6)
CONFIGURE_ARGS+=--disable-ipv6
.endif
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${FIND} ${WRKSRC} -name Makefile.in|${XARGS} ${REINPLACE_CMD} -e \
'/pkgdatadir/s|[(]datadir)/@PACKAGE@|(prefix)/${DATADIR_REL}|'
.if ${PORT_OPTIONS:MX11}
post-install:
@${INSTALL_DATA} ${WRKSRC}/data/civclient.dsc ${STAGEDIR}/${DATADIR}/
@cd ${STAGEDIR}/${PREFIX}/bin && ${LN} -s freeciv-gtk2 freeciv-client
.endif
.include <bsd.port.mk>
|