modules into a separate file as well. Don't hard-code -lstdc++ for broken ancient OpenBSD versions of GCC. Sync p5-Xapian PLIST with reality.
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.2 2017/07/14 12:55:45 joerg Exp $
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-${PKGNAME_MODULE}
|
|
COMMENT= Python bindings for Xapian search engine
|
|
HOMEPAGE= https://xapian.org/docs/bindings/python/
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
|
|
.if (${PYPKGPREFIX} == py27)
|
|
CONFIGURE_ARGS+= --with-python
|
|
PYTHON_3_OR_EMPTY= # empty
|
|
.else
|
|
CONFIGURE_ARGS+= --with-python3 PYTHON3=${PYTHONBIN}
|
|
PYTHON_3_OR_EMPTY= 3
|
|
.endif
|
|
|
|
PLIST_SUBST+= PYTHON_3_OR_EMPTY=${PYTHON_3_OR_EMPTY:Q}
|
|
PY_PATCHPLIST= yes
|
|
|
|
REPLACE_PYTHON= python/docs/examples/*.py
|
|
|
|
post-install:
|
|
${CHMOD} +x ${DESTDIR}${PREFIX}/share/doc/xapian-bindings/python${PYTHON_3_OR_EMPTY}/examples/*.py
|
|
.if (${PYPKGPREFIX} != py27)
|
|
${MKDIR} ${DESTDIR}${PREFIX}/${PYSITELIB}/xapian/__pycache__
|
|
${MV} ${DESTDIR}${PREFIX}/${PYSITELIB}/xapian/*.cpython* ${DESTDIR}${PREFIX}/${PYSITELIB}/xapian/__pycache__/
|
|
.endif
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../textproc/xapian/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|