2001-03-15 00:47:29 +01:00
|
|
|
# New ports collection makefile for: py-csv
|
|
|
|
# Date created: 27 February 2001
|
|
|
|
# Whom: Johann Visagie <johann@egenetics.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= csv
|
2003-06-23 14:44:03 +02:00
|
|
|
PORTVERSION= 1.0
|
2001-03-15 00:47:29 +01:00
|
|
|
CATEGORIES= textproc python
|
2003-06-23 14:44:03 +02:00
|
|
|
MASTER_SITES= http://object-craft.com.au/projects/csv/download/
|
2001-03-15 00:47:29 +01:00
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
|
2004-11-20 09:09:49 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= A Python module to parse or write comma-separated value (CSV) files
|
2001-03-15 00:47:29 +01:00
|
|
|
|
2004-02-06 14:12:53 +01:00
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/csv.so
|
2001-11-07 09:44:30 +01:00
|
|
|
USE_PYTHON= yes
|
2002-04-29 21:08:55 +02:00
|
|
|
USE_PYDISTUTILS= yes
|
2001-03-15 00:47:29 +01:00
|
|
|
|
2003-12-08 02:14:30 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${PYTHON_REL} >= 230
|
|
|
|
IGNORE= As of Python 2.3, a similar (but not identical) module is included in the base system
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|