blob: d73b593a07e46f9de02395ad9eb61f1ba485628c (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# New ports collection makefile for: fbm
# Date created: 31 June 2003
# Whom: Pedro F. Giffuni <giffunip@asme.org>
#
# $FreeBSD$
#
PORTNAME= fbm
PORTVERSION= 20010803
CATEGORIES= math
MASTER_SITES= ftp://ftp.cs.utoronto.ca/pub/radford/
DISTNAME= ${PORTNAME}.2001-08-31
EXTRACT_SUFX= .tar.Z
MAINTAINER= ports@FreeBSD.org
COMMENT= Flexible Bayesian Modeling and Markov Chain Sampling
NO_CDROM= 'Free for educational use and research'
USE_REINPLACE= yes
SCRIPTS = bvg-circ bvg-wrap dist-circ dist-wrap gp-circ \
gp-wrap mix-circ mix-wrap net-circ net-wrap
PROGRAMS = bvg-grad-test bvg-hist bvg-initial bvg-mc \
bvg-plt bvg-spec bvg-stepsizes bvg-tbl calc \
combine data-spec dist-display dist-est \
dist-gen dist-genp dist-grad-test dist-hist \
dist-initial dist-mc dist-plt dist-spec \
dist-stepsizes dist-tbl extract find-min \
gp-cov gp-display gp-eigen gp-eval gp-gen \
gp-genp gp-grad-test gp-hist gp-mc gp-plt \
gp-pred gp-spec gp-stepsizes gp-tbl grid \
log-append log-copy log-equal log-last \
log-records mc-ais mc-spec mc-temp-filter \
mc-temp-sched mix-cases mix-display mix-gen \
mix-hist mix-mc mix-plt mix-spec mix-tbl \
model-spec net-display net-dvar net-eval \
net-gd net-gen net-genp net-grad-test net-hist \
net-mc net-plt net-pred net-rej net-spec \
net-stepsizes net-tbl rand-seed series
TEXT= mix-genp
post-patch:
@${REINPLACE_CMD} -e 's+%%CC%%+${CC}+g;' ${WRKSRC}/make.include
@${REINPLACE_CMD} -e 's+%%CFLAGS%%+${CFLAGS}+g;' ${WRKSRC}/make.include
do-build:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${SH} make-all)
do-install:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${SH} install-arch)
.for i in ${SCRIPTS}
@${INSTALL_SCRIPT} ${WRKSRC}/bin.${ARCH}/${i} ${PREFIX}/bin
.endfor
.for i in ${PROGRAMS}
@${INSTALL_PROGRAM} ${WRKSRC}/bin.${ARCH}/${i} ${PREFIX}/bin
.endfor
@${MKDIR} ${PREFIX}/share/fbm
@${INSTALL_DATA} ${WRKSRC}/util/randfile ${PREFIX}/share/fbm
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${CP} -R $(WRKSRC)/doc/* ${DOCSDIR}
@${MKDIR} ${DOCSDIR}/html
@${MV} ${DOCSDIR}/*.html ${DOCSDIR}/html
@${MKDIR} ${EXAMPLESDIR}
@${CP} -R $(WRKSRC)/ex-* ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>
|