View | Details | Raw Unified | Return to bug 179572
Collapse All | Expand All

(-)./Makefile 2013-06-15 16:50:09.308100218 +0300 (-7 / +12 lines)
Lines 1-9 Link Here
1
# Ports collection makefile for:       h5py
1
# Created by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
2
# Date created:                        Jun 22, 2009
2
# $FreeBSD$
3
# Whom:                                TAOKA Fumiyoshi
4
#
5
# $FreeBSD: ports/science/py-h5py/Makefile,v 1.4 2012/11/17 06:00:59 svnexp Exp $
6
#
7
3
8
PORTNAME=      h5py
4
PORTNAME=      h5py
9
PORTVERSION=   1.2.1
5
PORTVERSION=   1.2.1
Lines 17-23 Link Here
17
13
18
BUILD_DEPENDS= ${PYNUMPY}
14
BUILD_DEPENDS= ${PYNUMPY}
19
RUN_DEPENDS=   ${PYNUMPY}
15
RUN_DEPENDS=   ${PYNUMPY}
20
LIB_DEPENDS=   hdf5.0:${PORTSDIR}/science/hdf5
16
17
OPTIONS_DEFINE=        NEW_HDF5
18
NEW_HDF5_DESC= Use port science/hdf5-18 instead of science/hdf5
19
20
.include <bsd.port.options.mk>
21
.if ${PORT_OPTIONS:MNEW_HDF5}
22
LIB_DEPENDS=hdf5:${PORTSDIR}/science/hdf5-18
23
.else
24
LIB_DEPENDS=   hdf5:${PORTSDIR}/science/hdf5
25
.endif
21
26
22
USE_PYTHON=            2.5+
27
USE_PYTHON=            2.5+
23
USE_PYDISTUTILS=       easy_install
28
USE_PYDISTUTILS=       easy_install
(-)./pkg-descr 2013-06-15 17:01:31.368711067 +0300 (-5 / +4 lines)
Lines 1-8 Link Here
1
The h5py package provides both a high- and low-level interface to the 
1
The h5py package provides both a high- and low-level interface to the HDF5
2
HDF5 library from Python.  The low-level interface is
2
library from Python.  The low-level interface is intended to be a complete
3
intended to be a complete wrapping of the HDF5 1.6 API, while the high-
3
wrapping of the HDF5 1.6 and 1.8 APIs, while the high-level component supports
4
level component supports Python-style object-oriented access to HDF5 files, 
4
Python-style object-oriented access to HDF5 files, datasets and groups.
5
datasets and groups.
6
5
7
The goal of this package is not to provide yet another scientific data
6
The goal of this package is not to provide yet another scientific data
8
model. It is an attempt to create as straightforward a binding as possible
7
model. It is an attempt to create as straightforward a binding as possible

Return to bug 179572