blob: 8ecd71485dd9d8db9a52eebe28571d4af3a54d22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Ports collection makefile for: py-emphem
# Date created: Feb 27, 2007
# Whom: db
#
# $FreeBSD$
#
PORTNAME= pyephem
PORTVERSION= 3.7b
CATEGORIES= astro math hamradio
MASTER_SITES= http://www.rhodesmill.org/brandon/projects/ \
${MASTER_SITE_LOCAL}
MAINTAINER= db@FreeBSD.org
COMMENT= Scientific-grade astronomical computations for Python
USE_PYTHON= 2.4+
NO_BUILD= yes
do-install:
(cd ${WRKSRC}; ${PYTHON_CMD} setup.py install)
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/pyephem-manual.html ${DOCSDIR}
.endif
.include <bsd.port.mk>
|