4942ce5a7d
- Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav
39 lines
998 B
Makefile
39 lines
998 B
Makefile
# New ports collection makefile for: py-csv
|
|
# Date created: 17 January 2002
|
|
# Whom: Johann Visagie <wjv@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dsv
|
|
PORTVERSION= 1.4.0
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= python-${PORTNAME}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME:U}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Python module to parse or write delimeter-separated (e.g. CSV) files
|
|
|
|
.if defined(WITH_GUI)
|
|
USE_WX= 2.4
|
|
WX_COMPS= python
|
|
.endif
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= DSV
|
|
DSV_BASEDIR= ${PYTHONPREFIX_SITELIBDIR}/DSV
|
|
|
|
post-install:
|
|
@${PRINTF} '#!/bin/sh\n${PYTHON_CMD} ${DSV_BASEDIR}/DSV.py "$$@"\n' \
|
|
>${WRKDIR}/DSV.sh
|
|
@ ${INSTALL_SCRIPT} ${WRKDIR}/DSV.sh ${PREFIX}/bin/DSV
|
|
.if !defined(NOPORTDOCS)
|
|
@ ${MKDIR} ${DOCSDIR} ${EXAMPLESDIR}
|
|
@ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
@ ${INSTALL_DATA} ${WRKSRC}/DSV/*.csv ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|