f58180f9a2
PR: 27594 Submitted by: Chang, Hye-Shik <perky@python.or.kr>
38 lines
889 B
Makefile
38 lines
889 B
Makefile
# New ports collection makefile for: py-gnuplot
|
|
# Date created: 3 July 2000
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= py-gnuplot
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= math python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= gnuplot-py
|
|
DISTNAME= Gnuplot-${PORTVERSION}
|
|
|
|
MAINTAINER= sobomax@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/Numeric/_numpy.so:${PORTSDIR}/math/py-numeric
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot \
|
|
${PYTHON_SITELIBDIR}/Numeric/_numpy.so:${PORTSDIR}/math/py-numeric
|
|
|
|
USE_PYTHON= yes
|
|
SETUP_CMD= cd ${WRKSRC}; ${PYTHON_CMD} setup.py
|
|
|
|
do-build:
|
|
@${SETUP_CMD} build
|
|
|
|
do-install:
|
|
@${SETUP_CMD} install
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/py-gnuplot
|
|
cd ${WRKSRC}/doc && ${TAR} -chf - * | \
|
|
${TAR} --unlink -xf - -C ${PREFIX}/share/doc/py-gnuplot
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|