c487cb967a
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.25 2004/10/03 00:13:32 tv Exp $
|
|
#
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-curses-0
|
|
PKGREVISION= 3
|
|
CATEGORIES= devel python
|
|
|
|
MAINTAINER= tsarna@NetBSD.org
|
|
HOMEPAGE= http://www.python.org/doc/current/lib/module-curses.html
|
|
COMMENT= Curses module for Python
|
|
|
|
USE_BUILDLINK3= 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/_cursesmodule.c
|
|
PYDISTUTILSPKG= yes
|
|
PYBINMODULE= yes
|
|
PY_PATCHPLIST= yes
|
|
|
|
PY_SETUP_SUBST= NCURSESPREFIX=${BUILDLINK_PREFIX.ncurses}
|
|
|
|
BUILDLINK_DEPENDS.python23= python23>=2.3nb2
|
|
BUILDLINK_DEPENDS.python23pth= python23-pth>=2.3nb2
|
|
|
|
# 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/ncurses/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|