blob: 5221da1dbc32b8e23e742b08b7c02a1ec8daf5eb (
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
|
# $NetBSD: Makefile,v 1.27 2015/06/12 10:48:29 wiz Exp $
.include "../../chat/xchat/Makefile.common"
PKGNAME= ${DISTNAME:S/-/-python-/}
PKGREVISION= 9
OWNER= tron@NetBSD.org
COMMENT= Python scripting plugin for XChat
DEPENDS+= xchat>=2.0.0:../../chat/xchat
BUILD_DIRS?= plugins/python
CONFIGURE_ARGS+= --disable-gtkfe
CONFIGURE_ARGS+= --enable-tcl=no
CONFIGURE_ARGS+= --disable-perl
CONFIGURE_ARGS+= --enable-python
CONFIGURE_ARGS+= --disable-xlib
CONFIGURE_ENV+= ac_cv_path_pythonpath=${PYTHONBIN:Q}
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS"
SUBST_CLASSES+= libutil
SUBST_STAGE.libutil= pre-configure
SUBST_FILES.libutil= configure
SUBST_SED.libutil= -e 's/ -lutil//g'
.endif
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 2.8.8
.include "../../lang/python/application.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|