freebsd-ports/graphics/py-PyX/Makefile
Marcus von Appen bcc7edcfb2 - Update to version 0.14
Aside from bug fixes and smaller changes, this release comes with new
svgwriter and svgfile modules, which bring SVG in- and output support to
PyX.

Changelog: http://sourceforge.net/p/pyx/code/HEAD/tree/tags/pyx_0_14/pyx/CHANGES
2015-05-04 16:49:23 +00:00

38 lines
943 B
Makefile

# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
# $FreeBSD$
PORTNAME= PyX
PORTVERSION= 0.14
CATEGORIES= graphics python
MASTER_SITES= SF
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mva@FreeBSD.org
COMMENT= Python package for creating encapsulated PostScript figures
LICENSE= GPLv2
USES= python:3
USE_TEX= latex:build
USE_PYTHON= autoplist distutils
OPTIONS_DEFINE= T1CODE KPATHSEA
OPTIONS_DEFAULT= T1CODE KPATHSEA
T1CODE_DESC= Fast t1 font encoding/decoding
KPATHSEA_DESC= Python wrapper around kpathsea
T1CODE_CFLAGS= -I${LOCALBASE}/include
KPATHSEA_CFLAGS= -I${LOCALBASE}/include
KPATHSEA_LDFLAGS= -L${LOCALBASE}/lib
.include <bsd.port.options.mk>
post-patch:
.if ${PORT_OPTIONS:MT1CODE}
@${REINPLACE_CMD} -e 's|build_t1code=0|build_t1code=1|' ${WRKSRC}/setup.cfg
.endif
.if ${PORT_OPTIONS:MKPATHSEA}
@${REINPLACE_CMD} -e 's|build_pykpathsea=0|build_pykpathsea=1|' ${WRKSRC}/setup.cfg
.endif
.include <bsd.port.mk>