14b0f36b04
bump VERSION Submitted by Maintainer
38 lines
829 B
Makefile
38 lines
829 B
Makefile
# $OpenBSD: Makefile,v 1.3 2001/08/21 22:55:41 shell Exp $
|
|
|
|
COMMENT= "Date and Time types for Python"
|
|
|
|
VERSION= 2.0.2
|
|
DISTNAME= egenix-mx-base-${VERSION}
|
|
PKGNAME= py-mxDateTime-${VERSION}
|
|
CATEGORIES= devel
|
|
NEED_VERSION= 1.441
|
|
|
|
MASTER_SITES= http://www.lemburg.com/files/python/
|
|
|
|
HOMEPAGE= http://www.lemburg.com/files/python/eGenix-mx-Extensions.html
|
|
|
|
MAINTAINER= Maurice Nonnekes <maurice@amaze.nl>
|
|
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
PYTHON_VER= 2.1
|
|
|
|
RUN_DEPENDS+= python${PYTHON_VER}::lang/python
|
|
BUILD_DEPENDS+= ${RUN_DEPENDS}
|
|
|
|
SUBST_VARS= PYTHON_VER
|
|
|
|
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>
|