blob: 8f5109747d6a15d43fb7b3a12c9815701397d9cd (
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
|
# New ports collection makefile for: gsl
# Date created: 15 Feb 2000
# Whom: Andrew L. Neporada <andrew@chg.ru>
#
# $FreeBSD$
#
PORTNAME= gsl
PORTVERSION= 1.12
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_GNU:S/$/:gsl/} \
http://www.gnu.org/software/${PORTNAME}/manual/:gslref
MASTER_SITE_SUBDIR= ${PORTNAME}/:gsl
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:gsl
.if !defined(NOPORTDOCS)
DISTFILES+= ${GSLREF}:gslref
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
.endif
MAINTAINER= bf2006a@yahoo.com
COMMENT= The GNU Scientific Library - mathematical libs
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV+= MAKEINFO='makeinfo --no-split'
MAN1= gsl-config.1 gsl-randist.1 gsl-histogram.1
MAN3= gsl.3
INFO= gsl-ref
GSLREF= gsl-ref.ps.gz
IGNOREFILES= ${GSLREF}
post-extract:
@${RM} -f ${WRKSRC}/doc/gsl-ref.info*
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/gsl
${INSTALL_DATA} ${_DISTDIR}/${GSLREF} ${PREFIX}/share/doc/gsl
${GUNZIP_CMD} ${PREFIX}/share/doc/gsl/${GSLREF}
.endif
regression-test:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} check
.include <bsd.port.mk>
|