pkgsrc/devel/ExmanIDE/Makefile
wiz aa67e11089 Mark packages as not ready for python-3.x where applicable;
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE=  33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.

Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.

Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.

Whitespace cleanups and other nits corrected, where necessary.
2014-01-25 10:29:56 +00:00

52 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.20 2014/01/25 10:30:00 wiz Exp $
DISTNAME= ExmanIDE-0.9.4
PKGREVISION= 7
CATEGORIES= devel
MASTER_SITES= http://kldp.net/download.php/715/
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= http://exmanide.kldp.net/
COMMENT= Integrated development environment for Python
DEPENDS+= ${PYPKGPREFIX}-wxWidgets>=2.6:../../x11/py-wxWidgets
USE_TOOLS+= pax
WRKSRC= ${WRKDIR}/${PKGBASE}
NO_CONFIGURE= yes
NO_BUILD= yes
PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-wxWidgets
SUBST_CLASSES+= mod
SUBST_MESSAGE.mod= Fixing deprecated module names.
SUBST_STAGE.mod= post-patch
SUBST_FILES.mod= Profile.py SourceEditor.py StcStyle.py
SUBST_SED.mod= -e 's,wxPython\.lib\.PyCrust,wxPython.py,g'
SUBST_SED.mod+= -e 's,wxPython\.py,wx.py,g'
SUBST_CLASSES+= py
SUBST_MESSAGE.py= Fixing paths in a wrapper script.
SUBST_STAGE.py= post-patch
SUBST_FILES.py= ExmanIDE
SUBST_SED.py= -e 's,python \$$0\.pyw,${PYTHONBIN} ${PREFIX}/share/${PKGBASE}/ExmanIDE.pyw,g'
SUBST_CLASSES+= py2
SUBST_MESSAGE.py2= Fixing path in Python module.
SUBST_STAGE.py2= post-patch
SUBST_FILES.py2= ExmanIDE.pyw
SUBST_SED.py2= -e 's,/usr/bin/env python.*$$,${PYTHONBIN},'
INSTALLATION_DIRS= bin share/ExmanIDE
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/ExmanIDE ${DESTDIR}${PREFIX}/bin
cd ${WRKSRC} && pax -rwppm '-s|.*/CVS.*$$||' \
'-s|.*/ExmanIDE$$||' '-s|.*/.xvpics.*$$||' \
. ${DESTDIR}${PREFIX}/share/ExmanIDE
${PY_COMPILE_ALL} ${DESTDIR}${PREFIX}/share/ExmanIDE
${PY_COMPILE_O_ALL} ${DESTDIR}${PREFIX}/share/ExmanIDE
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"