21 lines
617 B
Makefile
21 lines
617 B
Makefile
# $NetBSD: Makefile,v 1.4 2003/07/17 21:33:28 grant Exp $
|
|
|
|
DISTNAME= py-kqueue-2.0
|
|
PKGNAME= ${PYPKGPREFIX}-kqueue-2.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jdolecek/
|
|
|
|
MAINTAINER= jdolecek@NetBSD.org
|
|
COMMENT= Python interface to kqueue(2) and kevent(2) system calls
|
|
|
|
PYDISTUTILSPKG= # defined
|
|
|
|
# need to get definition of PKG_HAVE_KQUEUE
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !defined(PKG_HAVE_KQUEUE)
|
|
PKG_SKIP_REASON+= "${PKGNAME} is not available for ${MACHINE_PLATFORM}, needs OS support for kqueue(2)"
|
|
.endif
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|