b2ded416d5
Submit & Maintain : Maurice Nonnekes <maurice@amaze.nl> --- Python Distribution Utilities, or Distutils for short, are a collection of modules that aid in the development, distribution, and installation of Python modules. (It is intended that ultimately the Distutils will grow up into a system for distributing and installing whole Python applications, but for now their scope is primarily module distributions.)
35 lines
773 B
Makefile
35 lines
773 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/06/23 00:24:56 shell Exp $
|
|
|
|
COMMENT= "collection of helpfull Python modules"
|
|
|
|
VERSION= 1.0.2
|
|
DISTNAME= Distutils-${VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
CATEGORIES= devel
|
|
NEED_VERSION= 1.417
|
|
|
|
HOMEPAGE= http://www.python.org/sigs/distutils-sig/
|
|
MASTER_SITES= ${HOMEPAGE}/download/
|
|
|
|
MAINTAINER= Maurice Nonnekes <maurice@amaze.nl>
|
|
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
PYTHON_VER= 1.5
|
|
|
|
RUN_DEPENDS= python${PYTHON_VER}::lang/python15
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; python${PYTHON_VER} ./setup.py build \
|
|
--build-base=${WRKSRC}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; python${PYTHON_VER} ./setup.py install \
|
|
--prefix=${PREFIX}
|
|
|
|
.include <bsd.port.mk>
|