diff options
author | tg <tg@FreeBSD.org> | 2000-04-07 12:11:06 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-04-07 12:11:06 +0000 |
commit | 20104b504bfee8ea3ab6943e27e6322852e242a4 (patch) | |
tree | 65219a949534552ed07298cb255aac8b88bbea48 /math/gsl/Makefile | |
parent | 85c9d5d8065a586abe7e5eac83d5ef36258aba81 (diff) | |
download | FreeBSD-ports-20104b504bfee8ea3ab6943e27e6322852e242a4.zip FreeBSD-ports-20104b504bfee8ea3ab6943e27e6322852e242a4.tar.gz |
Add port for the GNU Scientific Library, a collection of routines
for numerical computing.
PR: 16741
Submitted by: "Andrew L. Neporada" <andrew@sign.chg.ru>
Diffstat (limited to 'math/gsl/Makefile')
-rw-r--r-- | math/gsl/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/math/gsl/Makefile b/math/gsl/Makefile new file mode 100644 index 0000000..475aa18 --- /dev/null +++ b/math/gsl/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: gsl +# Version required: 0.5 +# Date created: 15 Feb 2000 +# Whom: Andrew L. Neporada <andrew@chg.ru> +# +# $FreeBSD$ +# + +DISTNAME= gsl-0.5 +CATEGORIES= math +MASTER_SITES= ftp://sourceware.cygnus.com/pub/gsl/ \ + ftp://ftp.funet.fi/pub/mirrors/sourceware.cygnus.com/pub/gsl/ \ + ftp://ftp.chg.ru/pub/math/gsl/ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${GSLREF} + +MAINTAINER= andrew@chg.ru + +GNU_CONFIGURE= yes +.if !defined(NOPORTDOCS) +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +.endif + +GSLREF= gsl-ref.ps.gz + +post-install: + strip ${PREFIX}/bin/gsl-histogram ${PREFIX}/bin/gsl-randist +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/gsl + ${INSTALL_MAN} ${DISTDIR}/gsl-ref.ps.gz ${PREFIX}/share/doc/gsl + ${GUNZIP_CMD} ${PREFIX}/share/doc/gsl/gsl-ref.ps.gz +.endif + +.include <bsd.port.mk> |