diff options
author | wjv <wjv@FreeBSD.org> | 2001-06-19 16:44:49 +0800 |
---|---|---|
committer | wjv <wjv@FreeBSD.org> | 2001-06-19 16:44:49 +0800 |
commit | 0b32df7048d5535d364fd12d9147a73547f991c5 (patch) | |
tree | 3b0ccb8846ae62c2ce8b82d8e72ca99dbb06b60c /textproc | |
parent | 4c3d04f3ee3ab2822fcf5a415967b2da24158db0 (diff) | |
download | freebsd-ports-gnome-0b32df7048d5535d364fd12d9147a73547f991c5.tar.gz freebsd-ports-gnome-0b32df7048d5535d364fd12d9147a73547f991c5.tar.zst freebsd-ports-gnome-0b32df7048d5535d364fd12d9147a73547f991c5.zip |
Update to 0.3; fix minor grammatical error in pkg-descr.
Diffstat (limited to 'textproc')
-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/ |