py-enet is a python wrapper for the ENet library. from james turner (MAINTAINER) with tweaks by me ok landry@
34 lines
669 B
Makefile
34 lines
669 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/06/29 10:40:26 jasper Exp $
|
|
|
|
COMMENT = python wrapper for the ENet library
|
|
|
|
MODPY_EGG_VERSION = 1.0
|
|
DISTNAME = py-enet-${MODPY_EGG_VERSION}
|
|
CATEGORIES = net
|
|
|
|
MAINTAINER = James Turner <james@calminferno.net>
|
|
|
|
HOMEPAGE = http://code.google.com/p/pyenet/
|
|
MASTER_SITES = http://bsdgroup.org/distfiles/
|
|
|
|
# BSD-like
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
WANTLIB += enet ${MODPY_WANTLIB}
|
|
|
|
LIB_DEPENDS = net/enet
|
|
|
|
BUILD_DEPENDS = lang/cython
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|