9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
67 lines
1.9 KiB
Makefile
67 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.24 2006/03/04 21:29:27 jlam Exp $
|
|
#
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-idle-0
|
|
PKGREVISION= 2
|
|
CATEGORIES= devel python
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.python.org/idle/
|
|
COMMENT= IDLE - The Integrated DeveLopment Environment for Python
|
|
|
|
PLIST_SRC= ${WRKDIR}/.PLIST_SRC
|
|
PY_PATCHPLIST= yes
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX:Q}
|
|
|
|
# ignore errors due to missing files (EXTRACT_ELEMENTS!)
|
|
do-patch:
|
|
(cd ${WRKSRC}; \
|
|
for f in ${PATCHDIR}/patch-*;do \
|
|
${PATCH} --batch <$$f || ${TRUE}; \
|
|
done)
|
|
|
|
#
|
|
# With Python-2.3 and up, the Idle code is part of the base library.
|
|
# We just install a wrapper script. Also, threads are required now.
|
|
# NOTE: if you add a new version of Python here, add to the following test
|
|
#
|
|
PYTHON_VERSIONS_ACCEPTED= 24 23 22 21 20
|
|
.include "../../lang/python/extension.mk"
|
|
.if (${PYPKGPREFIX} != "py23") && (${PYPKGPREFIX} != "py24")
|
|
|
|
EXTRACT_ELEMENTS= ${PYSUBDIR}/Tools/idle/*
|
|
PYTHON_PATCH_SCRIPTS= Tools/idle/idle.py
|
|
INSTALLATION_DIRS= bin ${PYSITELIB}
|
|
|
|
do-build:
|
|
${PYTHONBIN} ${LOCALBASE}/${PYLIB}/compileall.py ${WRKSRC}/Tools/idle
|
|
|
|
do-install:
|
|
${CP} -r ${WRKSRC}/Tools/idle ${PREFIX}/${PYSITELIB}
|
|
${CHMOD} +x ${PREFIX}/${PYSITELIB}/idle/idle.py
|
|
${LN} -sf ${PREFIX}/${PYSITELIB}/idle/idle.py \
|
|
${PREFIX}/bin/idle${PYVERSSUFFIX}
|
|
${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC}
|
|
(cd ${PREFIX}; ${FIND} ${PYSITELIB}/idle -type f -print \
|
|
>>${PLIST_SRC})
|
|
(cd ${PREFIX}; ${FIND} -d ${PYSITELIB}/idle -type d -print | \
|
|
${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
|
|
|
|
.else # py23 and up
|
|
|
|
EXTRACT_ELEMENTS= ${PYSUBDIR}/Tools/scripts/idle
|
|
PYTHON_PATCH_SCRIPTS= Tools/scripts/idle
|
|
NO_BUILD= yes
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Tools/scripts/idle \
|
|
${PREFIX}/bin/idle${PYVERSSUFFIX}
|
|
${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC}
|
|
|
|
.endif # py23 and up
|
|
|
|
.include "../../lang/python/srcdist.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../x11/py-Tk/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|