mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
30 lines
740 B
Makefile
30 lines
740 B
Makefile
# Ports collection makefile for: pycdf
|
|
# Date created: 30 April, 2008
|
|
# Whom: wenheping@gmail.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pycdf
|
|
PORTVERSION= 0.6.3
|
|
CATEGORIES= science python
|
|
MASTER_SITES= SF/pysclint/${PORTNAME}/${PORTNAME}-${PORTVERSION}b
|
|
DISTNAME= ${PORTNAME}-0.6-3b
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
COMMENT= A Python Interface to the Unidata NetCDF Library
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy \
|
|
${LOCALBASE}/lib/libnetcdf.so:${PORTSDIR}/science/netcdf
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
LDFLAGS+= "-L${LOCALBASE}/lib"
|
|
|
|
USE_PYTHON= 2.5+
|
|
USE_PYDISTUTILS= yes
|
|
PYTHON_PKGNAMEPREFIX= yes
|
|
PYDISTUTILS_EGGINFO= pycdf-0.6_3b-py${PYTHON_VER}.egg-info
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
.include <bsd.port.mk>
|