mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 17:20:29 -04:00
PR: ports/129922 Submitted by: Wen Heping <wenheping AT gmail.com> Approved by: Geoffrey Mainland <mainland AT apeiron.net> (maintainer)
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: py-matplotlib
|
|
# Date created: Aug 4, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= matplotlib
|
|
PORTVERSION= 0.98.5.2
|
|
CATEGORIES= math python
|
|
MASTER_SITES= SF
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= mainland@apeiron.net
|
|
COMMENT= A plotting library uses a syntax familiar to matlab users
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}dateutil>=1.4:${PORTSDIR}/devel/py-dateutil \
|
|
${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz \
|
|
${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \
|
|
${LOCALBASE}/lib/libagg.a:${PORTSDIR}/graphics/agg
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
|
png.5:${PORTSDIR}/graphics/png
|
|
RUN_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
|
|
.if defined(PACKAGE_BUILDING)
|
|
BUILD_DEPENDS+= Xvfb:${X_VFBSERVER_PORT}
|
|
.endif
|
|
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= yes
|
|
USE_GNOME= gtk20 pygtk2
|
|
USE_TCL_RUN= yes
|
|
USE_TK_RUN= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
WANT_WX= 2.6
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_WXPYTHON) || ${HAVE_WX:Mpython} != ""
|
|
USE_WX= 2.6
|
|
WX_COMPS= python
|
|
CONFIGURE_ENV+= WX_CONFIG="${WX_CONFIG}"
|
|
.endif
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
|
|
|
.if !defined(NOPORTEXAMPLES)
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|