mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
9f67b5e7f1
while here: - convert Makefile header into two-line format - update COMMENT (indefinite article removed) - change USE_PYTHON to just -2.7 - remove py-reportlab from BUILD_DEPENDS and kick PYTHON_SITELIBDIR from there - tab -> space change in pkg-descr:WWW PR: 171115 Submitted by: wen Approved by: Mauricio Herrera Cuadra <mauricio at arareko dot net> (maintainer)
25 lines
575 B
Makefile
25 lines
575 B
Makefile
# Created by: Johann Visagie <johann@egenetics.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= biopython
|
|
PORTVERSION= 1.60
|
|
CATEGORIES= biology python
|
|
MASTER_SITES= http://www.biopython.org/DIST/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= mauricio@arareko.net
|
|
COMMENT= Collection of Python modules for bioinformatics
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
RUN_DEPENDS= ${PYNUMPY}
|
|
|
|
USE_PYTHON= -2.7
|
|
USE_PYDISTUTILS= easy_install
|
|
PYEASYINSTALL_ARCHDEP= yes
|
|
|
|
.if !defined(WITHOUT_REPORTLAB)
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}reportlab>0:${PORTSDIR}/print/py-reportlab
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|