blob: c3a82e7d20bbfcadd587f8d129286b40e8277766 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Ports collection makefile for: pycha
# Date created: 08 July, 2009
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pycha
PORTVERSION= 0.6.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= CAIRO "Add support for py-cairo" On
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_CAIRO)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/cairo:${PORTSDIR}/graphics/py-cairo
.endif
.include <bsd.port.post.mk>
|