mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
27 lines
536 B
Makefile
27 lines
536 B
Makefile
# Created by: Wen Heping <wenheping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pycha
|
|
PORTVERSION= 0.7.0
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= A library for making charts with Python
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
OPTIONS_DEFINE= CAIRO
|
|
OPTIONS_DEFAULT= CAIRO
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCAIRO}
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/cairo:${PORTSDIR}/graphics/py-cairo
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|