freebsd-ports/math/prng/Makefile
Cy Schubert 0def901fc2 Bump PORTREVISION that should have happened in r510754 but didn't due
to numerous git svn dcommit conflicts and subsequent git rebase issues.

git svn conflicts are ugly.
2019-09-02 05:09:44 +00:00

37 lines
952 B
Makefile

# Created by: bf <bf@FreeBSD.org>
# $FreeBSD$
PORTNAME= prng
DISTVERSION= 3.0.2
PORTREVISION= 3
CATEGORIES= math
MASTER_SITES= http://statistik.wu-wien.ac.at/software/prng/
MAINTAINER= ports@FreeBSD.org
COMMENT= Portable, high-performance ANSI-C pseudorandom number generators
LICENSE= GPLv2
USE_CSTD= gnu89
GNU_CONFIGURE= yes
INFO= prng
PLIST_FILES= include/prng.h lib/libprng.a
PORTDOCS= prng.dvi prng.pdf prng.ps prng.txt
PORTEXAMPLES= Makefile pairs.c tuples.c
OPTIONS_DEFINE= DOCS EXAMPLES
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}
post-install-EXAMPLES-on:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/examples/,} \
${STAGEDIR}${EXAMPLESDIR}
check regression-test test: build
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \
${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} check)
.include <bsd.port.mk>