diff options
-rw-r--r-- | textproc/py-csv/Makefile | 13 | ||||
-rw-r--r-- | textproc/py-csv/distinfo | 2 | ||||
-rw-r--r-- | textproc/py-csv/pkg-descr | 2 |
3 files changed, 10 insertions, 7 deletions
diff --git a/textproc/py-csv/Makefile b/textproc/py-csv/Makefile index 8eeabef1bd27..8779689ab68a 100644 --- a/textproc/py-csv/Makefile +++ b/textproc/py-csv/Makefile @@ -6,19 +6,22 @@ # PORTNAME= csv -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= textproc python MASTER_SITES= http://object-craft.com.au/projects/csv/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= johann@egenetics.com +MAINTAINER= wjv@FreeBSD.org USE_PYTHON= yes WRKSRC= ${WRKDIR}/csv -do-configure: - @ (cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${MAKE} -f \ - Makefile.pre.in boot) +do-build: + @ cd ${WRKSRC} && ${PYTHON_CMD} setup.py build + +do-install: + @ cd ${WRKSRC} && ${PYTHON_CMD} setup.py install \ + --prefix=${PREFIX} .include <bsd.port.mk> diff --git a/textproc/py-csv/distinfo b/textproc/py-csv/distinfo index bed5ee9aec62..96cc0a8afebc 100644 --- a/textproc/py-csv/distinfo +++ b/textproc/py-csv/distinfo @@ -1 +1 @@ -MD5 (csv-0.2.tar.gz) = 1ce3b210b1d15404c9ea0660faab4cb7 +MD5 (csv-0.3.tar.gz) = 64f6e7edf397504c844a43c32718b9c0 diff --git a/textproc/py-csv/pkg-descr b/textproc/py-csv/pkg-descr index 6549827d097e..82e9706e52cb 100644 --- a/textproc/py-csv/pkg-descr +++ b/textproc/py-csv/pkg-descr @@ -2,7 +2,7 @@ A small, fast Python extension module - written in C - to parse or write files in comma-separated value (CSV) format. It allows for the use of alternative field separator characters (besides commas). -This module is only documented on its web site. +This module is documented only on its web site. Author: Dave Cole <djc@object-craft.com.au> WWW: http://object-craft.com.au/projects/csv/ |