a77e7015fe
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2008/04/25 20:39:08 joerg Exp $
|
|
#
|
|
|
|
DISTNAME= InlineEgg-1.08
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://oss.corest.com/repo/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://oss.corest.com/projects/inlineegg.html
|
|
COMMENT= Python module for writing inline assembler programs
|
|
|
|
LICENSE= inlineegg-license
|
|
|
|
PY_PATCHPLIST= YES
|
|
PYDISTUTILSPKG= YES
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 25 24 23 21
|
|
PYTHON_PATCH_SCRIPTS= examples/example1.py examples/example2.py \
|
|
examples/example3.py examples/example4.py \
|
|
examples/example5.py examples/example6.py \
|
|
xored_shell_client.py
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/InlineEgg
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/InlineEgg
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/InlineEgg
|
|
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.py \
|
|
${PREFIX}/share/examples/InlineEgg
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|