blob: f20a23f492f56cbb11cf8a0584a4eb4e86919a48 (
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
69
70
71
|
# New ports collection makefile for: rngstreams
# Date created: 13 November 2008
# Whom: bf <bf2006a@yahoo.com>
#
# $FreeBSD$
#
PORTNAME= TestU01
PORTVERSION= 1.2.3
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= http://www.iro.umontreal.ca/~simardr/testu01/:0 \
http://www.iro.umontreal.ca/~lecuyer/myftp/papers/:1
DISTFILES= ${PORTNAME}${EXTRACT_SUFX}:0 testu01.pdf:1
EXTRACT_ONLY= ${PORTNAME}${EXTRACT_SUFX}
MAINTAINER= bf@FreeBSD.org
COMMENT= Utilities for statistical testing of uniform random number generators
LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp
USE_ZIP= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --includedir="${PREFIX}/include/${PORTNAME}"
USE_GMAKE= yes
MAKE_ARGS= docdir="${DOCSDIR}" exdir="${EXAMPLESDIR}"
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
USE_LDCONFIG= yes
CFLAGS+= -fPIC
PLIST_SUB= PORTNAME="${PORTNAME}"
post-patch:
@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|return|& (0)|' ${WRKSRC}/testu01/fftc.c
.ifdef(NOPORTDOCS)
@${REINPLACE_CMD} -e '/^SUBDIRS \=/s/ doc / /' ${WRKSRC}/Makefile.in
@${FIND} -X ${WRKSRC} -name 'Makefile.in' | ${XARGS} ${REINPLACE_CMD} \
-e '/^install-data-am\: /s/install-docDATA//'
.endif
.ifdef(NOPORTEXAMPLES)
@${REINPLACE_CMD} -e '/^SUBDIRS \=/s/ examples / /' ${WRKSRC}/Makefile.in
.endif
.ifndef(NOPORTDOCS)
post-install:
@${INSTALL_DATA} ${DISTDIR}/testu01.pdf ${DOCSDIR}
.endif
check regression-test test: build
@cd ${WRKSRC}/examples ; \
for f in [mx]*.c ; do \
${CC} ${CFLAGS} -c $${f} -I. -I../include ; \
done ; \
for t in [befs]*.c; do \
case $${t} in \
ex3.c) x="my16807.o" ;; \
ex7.c) x="mrg32k3a.o xorshift.o" ;; \
scat.c) continue ;; \
*) x="" ;; \
esac ; \
${CC} ${CFLAGS} ${LDFLAGS} -o $${t%.c} $${t} -I. -I../include \
-Wl,--as-needed $${x} ../testu01/.libs/libtestu01.so \
../probdist/.libs/libprobdist.so ../mylib/.libs/libmylib.so -lm ; \
${ECHO_CMD} "Running $${t%.c}..." ; \
${SETENV} \
LD_LIBRARY_PATH=../testu01/.libs:../probdist/.libs:../mylib/.libs \
./$${t%.c} ; \
done
.include <bsd.port.mk>
|