39 lines
855 B
Makefile
39 lines
855 B
Makefile
# $OpenBSD: Makefile,v 1.10 2010/08/30 22:24:15 jasper Exp $
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64 powerpc
|
|
|
|
COMMENT= agile development and test support library
|
|
|
|
MODPY_EGG_VERSION= 0.9.1
|
|
DISTNAME= py-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
REVISION = 2
|
|
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://codespeak.net/pypy/
|
|
|
|
MAINTAINER= Martynas Venckus <martynas@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://codespeak.net/download/py/
|
|
|
|
MODULES= lang/python
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
MODPY_BADEGGS= py
|
|
MODPY_DISTUTILS_INSTALL= install --prefix=${LOCALBASE} \
|
|
--root=${DESTDIR}
|
|
|
|
post-install:
|
|
rm -fr ${DESTDIR}${MODPY_SITEPKG}/py/c-extension/greenlet/build
|
|
rm -f ${DESTDIR}${MODPY_SITEPKG}/py/c-extension/greenlet/slp_platformselect.h.orig
|
|
|
|
.include <bsd.port.mk>
|