a9f08159c4
curses.buildlink2.mk. This was wrong because we _really_ do want to express that we want _n_curses when we include the buildlink2.mk file. We should have a better way to say that the NetBSD curses doesn't quite work well enough. In fact, it's far better to depend on ncurses by default, and exceptionally note when it's okay to use NetBSD curses for specific packages. We will look into this again in the future.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2003/09/28 09:13:56 jlam Exp $
|
|
#
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-cursespanel-0
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= tsarna@NetBSD.org
|
|
HOMEPAGE= http://www.python.org/doc/current/lib/module-curses.html
|
|
COMMENT= Curses panel module for Python
|
|
|
|
USE_BUILDLINK2= yes
|
|
USE_NCURSES= # filter getsyx getwin has_key immedok mvwinsnstr mvwinsstr ...
|
|
# noqiflush pechochar putp putwin qiflush redrawwin setsyx syncok termattrs
|
|
# termname tigetflag tigetnum tigetstr tparm typeahead use_env wcursyncup
|
|
# wechochar winsnstr winsstr wredrawln wsyncdown wsyncup
|
|
EXTRACT_ELEMENTS= ${PYSUBDIR}/Modules/_curses_panel.c
|
|
PYDISTUTILSPKG= yes
|
|
PYBINMODULE= yes
|
|
PY_PATCHPLIST= yes
|
|
PYTHON_VERSIONS_ACCEPTED= 23 23pth 22 22pth 21 21pth
|
|
|
|
PY_SETUP_SUBST= NCURSESPREFIX=${BUILDLINK_PREFIX.ncurses}
|
|
|
|
# ignore errors due to missing files (EXTRACT_ELEMENTS!)
|
|
do-patch:
|
|
(cd ${WRKSRC}; \
|
|
for f in ${PATCHDIR}/patch-*;do \
|
|
${PATCH} --batch <$$f || true; \
|
|
done)
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../lang/python/srcdist.mk"
|
|
.include "../../devel/py-curses/buildlink2.mk"
|
|
.include "../../devel/ncurses/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|