blob: f4f2a032c5a4c614b149a70dfe938aa426d496ef (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# New ports collection makefile for: freeciv
# Date created: Jun 20 1997
# Whom: ada@bsd.org
#
# $FreeBSD$
#
PORTNAME= freeciv
PORTVERSION= 2.0.1
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= ftp://ftp.freeciv.org/pub/freeciv/stable/ \
ftp://ftp.netc.pt/pub/freeciv/stable/ \
ftp://ftp.pvv.ntnu.no/pub/freeciv/stable/
MAINTAINER?= rehsack@liwing.de
COMMENT?= A civilisation clone for X11; multiplayer
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff
USE_GETTEXT= yes
USE_XPM= yes
USE_BZIP2= yes
USE_PYTHON= yes
WANT_GNOME= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.pre.mk>
.if !defined(WITH_GTK) && !defined(WITH_GTK12) && !defined(WITH_GTK2) && \
!defined(WITHOUT_GNOME)
AUTO_DEPENDS= yes
.if ${HAVE_GNOME:Mgtk20}!=""
WITH_GTK2= yes
.elif ${HAVE_GNOME:Mgtk12}!=""
WITH_GTK= yes
.endif
.endif
.if defined(WITH_GTK2)
CONFLICTS= freeciv-1* freeciv-gtk-1*
USE_GNOME+= gtk20
PKGNAMESUFFIX?= -gtk2
CONFIGURE_ARGS+= --enable-client=gtk2
PLIST_SUB+= XAW="@comment "
PLIST_SUB+= GTK="@comment "
PLIST_SUB+= GTK2=""
.elif defined(WITH_GTK) || defined(WITH_GTK12)
CONFLICTS= freeciv-1* freeciv-gtk2-1*
USE_GNOME+= imlib gtk12
PKGNAMESUFFIX?= -gtk
CONFIGURE_ARGS+= --enable-client=gtk
PLIST_SUB+= XAW="@comment "
PLIST_SUB+= GTK2="@comment "
PLIST_SUB+= GTK=""
.else
CONFLICTS= freeciv-gtk-1* freeciv-gtk2-1*
.if ${X_WINDOW_SYSTEM:L} == xorg
LIB_DEPENDS+= Xaw3d.7:${PORTSDIR}/x11-toolkits/Xaw3d
.else
LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d
.endif
CONFIGURE_ARGS+= --enable-client=xaw3d
PLIST_SUB+= GTK="@comment "
PLIST_SUB+= GTK2="@comment "
PLIST_SUB+= XAW=""
.endif
pre-fetch:
.if defined(AUTO_DEPENDS)
@${ECHO} -n "No WITH_GTK, WITH_GTK2 or WITHOUT_GNOME defined, autodetecting: "
.if defined(WITH_GTK)
@${ECHO} "GTK"
.elif defined(WITH_GTK2)
@${ECHO} "GTK2"
.else
@${ECHO} "Xaw3d"
.endif
.endif
post-patch:
cd ${WRKSRC}; ${FIND} . -name Makefile.in | \
${XARGS} ${REINPLACE_CMD} -e 's/@program_transform_name@//'
.include <bsd.port.post.mk>
|