mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
03f8a6f768
*** addresses that may be dead, even though the error is temporary: *** addresses that seem to be dead, but give a hint to a new address: PR: ports/58694 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: gsl
|
|
# Date created: 15 Feb 2000
|
|
# Whom: Andrew L. Neporada <andrew@chg.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gsl
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEWARE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${GSLREF} ${GSLREFHTML}
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
.endif
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= The GNU Scientific Library - mathematical libs
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= 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
|
|
GSLREFHTML= gsl-ref-html.tar.gz
|
|
IGNOREFILES= ${GSLREF} ${GSLREFHTML}
|
|
|
|
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}
|
|
tar xfz ${_DISTDIR}/${GSLREFHTML} -C ${PREFIX}/share/doc/gsl
|
|
cd ${PREFIX}/share/doc/gsl && ${LN} -s gsl-ref-html html
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|