blob: a222e959e781dac1ada48b6e0ebe3586ce1d4af1 (
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
28
29
30
31
32
|
# Created by: Johann Visagie <wjv@FreeBSD.org>
# $FreeBSD$
PORTNAME= fluctuate
PORTVERSION= 1.40
CATEGORIES= biology
MASTER_SITES= http://evolution.gs.washington.edu/lamarc/fluctuate/
DISTNAME= ${PORTNAME}1.4.src.doc
MAINTAINER= ports@FreeBSD.org
COMMENT= Program to fit population models
WRKSRC= ${WRKDIR}/${PORTNAME}1.4
ALL_TARGET= ${PORTNAME}
PLIST_FILES= bin/fluctuate
PORTDOCS= errors.doc fluctuate.doc
OPTIONS_DEFINE= DOCS
do-install:
@ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@ ${MKDIR} ${DOCSDIR}
@ ${INSTALL_DATA} ${WRKSRC}/*.doc ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|