blob: 43c324d6150db7963fe67b765228c775444ac866 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# New ports collection makefile for: py-gdchart
# Date created: 18 June 2001
# Whom: Hye-Shik Chang <perky@python.or.kr>
#
# $FreeBSD$
PORTNAME= gdchart
PORTVERSION= 0.6.1
PORTREVISION= 5
CATEGORIES= graphics python
MASTER_SITES= http://www.nullcube.com/software/pygdchart/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= pygdchart-${PORTVERSION}
MAINTAINER= perky@FreeBSD.org
COMMENT= Python interface to GDChart
LIB_DEPENDS= gdc.1:${PORTSDIR}/graphics/gdchart
CONFLICTS= ${PYTHON_PKGNAMEPREFIX}gdchart-2.*
USE_PYTHON= yes
USE_PYDISTUTILS=yes
EXAMPLE_FILES= test.html test.py
EXAMPLE_DIR= ${PREFIX}/share/examples/py-gdchart
post-extract:
${SED} -e 's,%%PORTVERSION%%,${PORTVERSION},g' \
-e 's,%%GD_INCLUDE%%,${LOCALBASE}/include/gd,g' \
-e 's,%%GDCHART_INCLUDE%%,${LOCALBASE}/include,g' \
-e 's,%%LOCALLIB%%,${LOCALBASE}/lib,g' \
${FILESDIR}/setup.py > ${WRKSRC}/setup.py
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${EXAMPLE_DIR}
.for file in ${EXAMPLE_FILES}
${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLE_DIR}
.endfor
.endif
.include <bsd.port.mk>
|