aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-wxPython28/Makefile
blob: c719a2f90346093d476ead34f4194ecbcdec897f (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
# New ports collection makefile for:    wxPython
# Date created:                 September 18, 1999
# Whom:                 nectar@FreeBSD.ORG
#
# $FreeBSD$
#

PORTNAME=   wxPython
PORTVERSION=    2.4.0.7
CATEGORIES= x11-toolkits python
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= wxpython
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   ${PORTNAME}Src-${PORTVERSION}

MAINTAINER= ports@FreeBSD.ORG
COMMENT=    Python bindings for the wxWindows/GTK GUI toolkit

LIB_DEPENDS=    wx_gtk.2:${PORTSDIR}/x11-toolkits/wxgtk-devel
RUN_DEPENDS=    ${PYTHON_SITELIBDIR}/OpenGL/__init__.py:${PORTSDIR}/graphics/py-opengl

WRKSRC=     ${WRKDIR}/${DISTNAME}/wxPython

WX_CONFIG=  ${X11BASE}/bin/wx-config

USE_GMAKE=  yes
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PYDISTUTILS_BUILDARGS=  WX_CONFIG="${WX_CONFIG}"
DEMO_DIR=   ${PYTHONPREFIX_SITELIBDIR}/wxPython/demo

post-build:
    @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/demo
.if !defined(DEBUG_FLAGS)
    @find ${WRKSRC} -name "*.so" | xargs strip
.endif

post-install:
    @${MKDIR} ${DEMO_DIR}
.for glob in *.py *.pyc
    @${INSTALL_DATA} ${WRKSRC}/demo/${glob} ${DEMO_DIR}
.endfor
.for dir in bitmaps bmp_source data
    @${MKDIR} ${DEMO_DIR}/${dir}
.for glob in *
    @${INSTALL_DATA} ${WRKSRC}/demo/${dir}/${glob} ${DEMO_DIR}/${dir}
.endfor
.endfor

.include <bsd.port.pre.mk>

.if exists(${WX_CONFIG})
# detect if wxgtk was linked against gtk1 or gtk2
DECISION_GTK_1_OR_2!=   ${WX_CONFIG} --static --libs | ${GREP} glib-2.0
.else
DECISION_GTK_1_OR_2=    ""
.endif

.if (${DECISION_GTK_1_OR_2} != "")
USE_GNOME+= gtk20
CONFIGURE_ARGS+=    --enable-gtk2
PYDISTUTILS_BUILDARGS+= WXPORT=gtk2
PYDISTUTILS_INSTALLARGS:=   ${PYDISTUTILS_INSTALLARGS} ${PYDISTUTILS_BUILDARGS}
.else
USE_GNOME+= gtk12
.endif

.include <bsd.port.post.mk>