pkgsrc-wip/fusil/Makefile
Thomas Klausner 1e186dcfca Remove python24 and all traces of it from pkgsrc.
Remove devel/py-ctypes (only needed by and supporting python24).
Remove PYTHON_VERSIONS_ACCEPTED and PYTHON_VERSIONS_INCOMPATIBLE
lines that just mirror defaults now.
Miscellaneous cleanup while editing all these files.
2012-04-08 19:09:41 +00:00

34 lines
943 B
Makefile

# $NetBSD: Makefile,v 1.5 2012/04/08 19:09:43 thomasklausner Exp $
#
DISTNAME= fusil-1.2.1
CATEGORIES= devel security python
MASTER_SITES= http://pypi.python.org/packages/source/f/fusil/
MAINTAINER= kamel.derouiche@gmail.com
HOMEPAGE= http://bitbucket.org/haypo/fusil/wiki/Home
COMMENT= Fuzzing program to test applications
LICENSE= gnu-gpl-v2
DEPENDS+= ${PYPKGPREFIX}-ptrace>=0.6:../../wip/py-ptrace
DEPENDS+= ${PYPKGPREFIX}-Xlib-[0-9]*:../../x11/py-Xlib
PKG_DESTDIR_SUPPORT= user-destdir
USE_LANGUAGES= # none
PYDISTUTILSPKG= yes
PYTHON_VERSIONS_INCOMPATIBLE= 25
DOCDIR= ${PREFIX}/share/doc/${DISTNAME}
EDGDIR= ${PREFIX}/share/examples/${DISTNAME}
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/doc/* ${DESTDIR}${DOCDIR}
${INSTALL_DATA_DIR} ${DESTDIR}${EDGDIR}
${INSTALL_DATA} ${WRKSRC}/examples/* ${DESTDIR}${EDGDIR}
.include "../../lang/python/extension.mk"
.include "../../mk/bsd.pkg.mk"