aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/wxgtk/Makefile
blob: 44d9f0b12d5f6c587f66009880d359bffe0bad0e (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
89
90
91
92
93
94
95
96
97
98
99
# New ports collection makefile for:    wxGTK
# Date created:                 September 18, 1999
# Whom:                 nectar@FreeBSD.ORG
#
# $FreeBSD$
#

PORTNAME=   wx
PORTVERSION=    2.4.2
PORTREVISION?=  8
PKGNAMESUFFIX=  ${WXGTK_FLAVOR}
CATEGORIES= x11-toolkits
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE} \
        ftp://wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/
MASTER_SITE_SUBDIR= wxwindows
DISTNAME=   wxGTK-${PORTVERSION}

MAINTAINER?=    fjoe@FreeBSD.org
COMMENT?=   The wxWidgets GUI toolkit with GTK+ bindings

LIB_DEPENDS=    png.5:${PORTSDIR}/graphics/png \
        jpeg.9:${PORTSDIR}/graphics/jpeg \
        tiff.4:${PORTSDIR}/graphics/tiff

USE_BZIP2=  yes
USE_X_PREFIX=   yes
USE_GL=     yes
USE_GMAKE=  yes
USE_ICONV=  yes
USE_REINPLACE=  yes
GNU_CONFIGURE=  yes
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --with-libpng=sys \
        --with-libjpeg=sys \
        --with-libtiff=sys \
        --with-zlib=sys \
        --with-opengl
CONFIGURE_ENV=  CPPFLAGS="-I${WRKSRC}/include \
              -I${LOCALBASE}/include \
              -I${X11BASE}/include \
              ${PTHREAD_CFLAGS}" \
        LDFLAGS="-L${LOCALBASE}/lib -liconv \
             -L${X11BASE}/lib \
             ${PTHREAD_LIBS}"
MAKE_ENV=   WXGTK_FLAVOR="${WXGTK_FLAVOR}"
PLIST=      ${.CURDIR}/pkg-plist

WXGTK_FLAVOR?=  gtk

.if ${WXGTK_FLAVOR} != "gtk-common"
RUN_DEPENDS=    ${X11BASE}/include/wx/wx.h:${PORTSDIR}/x11-toolkits/wxgtk-common
.endif

.if ${WXGTK_FLAVOR:M*-common} != ""
NO_BUILD=   yes
INSTALL_TARGET= install-common
.endif # *-common

.if ${WXGTK_FLAVOR:M*-contrib*} != ""
BUILD_WRKSRC=   ${WRKSRC}/contrib/src
INSTALL_WRKSRC= ${BUILD_WRKSRC}

.if ${WXGTK_FLAVOR} != "gtk-contrib-common"
RUN_DEPENDS=    ${X11BASE}/include/wx/stc/stc.h:${PORTSDIR}/x11-toolkits/wxgtk-contrib-common
.if ${WXGTK_FLAVOR} == "gtk-contrib"
LIB_DEPENDS+=   wx_gtk-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk
.elif ${WXGTK_FLAVOR} == "gtk2-contrib"
LIB_DEPENDS+=   wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2
.elif ${WXGTK_FLAVOR} == "gtk2-unicode-contrib"
LIB_DEPENDS+=   wx_gtk2u-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2-unicode
.endif
.endif # !gtk-contrib-common
.endif # *-contrib*

.if ${WXGTK_FLAVOR:Mgtk2*} != ""
USE_GNOME=  gtk20
CONFIGURE_ARGS+=--enable-gtk2 ${MACHINE_ARCH}-portbld-freebsd${OSREL}
.else
USE_GNOME=  gtk12
CONFIGURE_ARGS+=--host=${CONFIGURE_TARGET} --build=${CONFIGURE_TARGET}
.endif

.include <bsd.port.pre.mk>

.if ${WXGTK_FLAVOR:M*-unicode*} != ""
.if ${OSVERSION} < 500000
IGNORE=     Systems prior to FreeBSD 5.0 currently out of support
.endif
CONFIGURE_ARGS+=--enable-unicode
.endif # *-unicode*

pre-patch:
.if ${WXGTK_FLAVOR:Mgtk2*} != ""
    @${REINPLACE_CMD} -e 's|lgdk|lgdk-x11-2.0|g' ${WRKSRC}/configure
.else
    @${REINPLACE_CMD} -e 's|lgdk|lgdk12|g' ${WRKSRC}/configure
.endif

.include <bsd.port.post.mk>