mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
muParser is an extensible high performance math parser library written in C++.
It is based on transforming an expression into a bytecode and precalculating constant parts of it. Author: Ingo Berg <ingo_berg@gmx.de> WWW: http://muparser.sourceforge.net/ PR: ports/93379 Submitted by: Nicola Vitale <nivit@email.it>
This commit is contained in:
parent
afe3e8f2d7
commit
99d47b08f7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156125
@ -130,6 +130,7 @@
|
||||
SUBDIR += mtl
|
||||
SUBDIR += mtrxmath
|
||||
SUBDIR += mupad
|
||||
SUBDIR += muparser
|
||||
SUBDIR += naturalmath
|
||||
SUBDIR += nauty
|
||||
SUBDIR += ndiff
|
||||
|
40
math/muparser/Makefile
Normal file
40
math/muparser/Makefile
Normal file
@ -0,0 +1,40 @@
|
||||
# New ports collection makefile for: muparser
|
||||
# Date created: 2006-02-14
|
||||
# Whom: Nicola Vitale <nivit@email.it>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= muparser
|
||||
PORTVERSION= 1.25
|
||||
CATEGORIES= math devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
DISTNAME= ${PORTNAME}
|
||||
DIST_SUBDIR= ${PORTNAME}/${PORTVERSION}
|
||||
|
||||
MAINTAINER= nivit@email.it
|
||||
COMMENT= Mathematical expressions parser library written in C++
|
||||
|
||||
RUN_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
WRKSRC= ${WRKDIR}/muParser
|
||||
|
||||
# taken from audio/taglib
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e "s#\$$(libdir)/pkgconfig#${LOCALBASE}/libdata/pkgconfig#g" \
|
||||
${WRKSRC}/Makefile.in
|
||||
@${REINPLACE_CMD} -E 's,^(CXXFLAGS|LDFLAGS) = ,\1 ?= ,g' \
|
||||
${WRKSRC}/Makefile.in
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ( ${OSVERSION} < 501103 )
|
||||
USE_GCC= 3.3+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
math/muparser/distinfo
Normal file
3
math/muparser/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (muparser/1.25/muparser.tar.gz) = b651b2a66bf9eda7406d4e5f25c73a35
|
||||
SHA256 (muparser/1.25/muparser.tar.gz) = 8d3ce8665de5b4634f584ac4c8f23f57aff03dabdd8d1cc76f9d528c4fd40d20
|
||||
SIZE (muparser/1.25/muparser.tar.gz) = 207783
|
6
math/muparser/pkg-descr
Normal file
6
math/muparser/pkg-descr
Normal file
@ -0,0 +1,6 @@
|
||||
muParser is an extensible high performance math parser library written in C++.
|
||||
It is based on transforming an expression into a bytecode and precalculating
|
||||
constant parts of it.
|
||||
|
||||
Author: Ingo Berg <ingo_berg@gmx.de>
|
||||
WWW: http://muparser.sourceforge.net/
|
18
math/muparser/pkg-plist
Normal file
18
math/muparser/pkg-plist
Normal file
@ -0,0 +1,18 @@
|
||||
@comment $FreeBSD$
|
||||
include/muParser.h
|
||||
include/muParserBase.h
|
||||
include/muParserBytecode.h
|
||||
include/muParserCallback.h
|
||||
include/muParserDLL.h
|
||||
include/muParserDef.h
|
||||
include/muParserError.h
|
||||
include/muParserFixes.h
|
||||
include/muParserInt.h
|
||||
include/muParserStack.h
|
||||
include/muParserTest.h
|
||||
include/muParserToken.h
|
||||
include/muParserTokenReader.h
|
||||
lib/libmuparser.so
|
||||
lib/libmuparser.so.0
|
||||
lib/libmuparser.so.0.0.0
|
||||
libdata/pkgconfig/muparser.pc
|
Loading…
Reference in New Issue
Block a user