Skip site navigation (1)Skip section navigation (2)
Date:      20 Sep 2000 16:51:14 -0000
From:      "Mario Sergio Fujikawa Ferreira" <lioux@uol.com.br>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/21421: New port p5-Math-Expr perl module
Message-ID:  <20000920165114.6774.qmail@Fedaykin.here>

next in thread | raw e-mail | index | archive | help

>Number:         21421
>Category:       ports
>Synopsis:       New port p5-Math-Expr perl module
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Sep 20 10:00:01 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     Mario Sergio Fujikawa Ferreira
>Release:        FreeBSD 4.0-STABLE i386
>Organization:
>Environment:

FreeBSD Here.here 4.0-STABLE FreeBSD 4.0-STABLE #2: Fri Jun  9 13:22:10 EST 2000     lioux@Here.here:/usr/src/sys/compile/LIOUX  i386

>Description:

Perl module for parsing mathematical expressions into a tree structure

>How-To-Repeat:

n/a

>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	p5-Math-Expr
#	p5-Math-Expr/files
#	p5-Math-Expr/files/md5
#	p5-Math-Expr/pkg
#	p5-Math-Expr/pkg/COMMENT
#	p5-Math-Expr/pkg/DESCR
#	p5-Math-Expr/pkg/PLIST
#	p5-Math-Expr/Makefile
#
echo c - p5-Math-Expr
mkdir -p p5-Math-Expr > /dev/null 2>&1
echo c - p5-Math-Expr/files
mkdir -p p5-Math-Expr/files > /dev/null 2>&1
echo x - p5-Math-Expr/files/md5
sed 's/^X//' >p5-Math-Expr/files/md5 << 'END-of-p5-Math-Expr/files/md5'
XMD5 (Math-Expr-0.4.tar.gz) = 2c4f7eb097bca918f4748f7843bca02b
END-of-p5-Math-Expr/files/md5
echo c - p5-Math-Expr/pkg
mkdir -p p5-Math-Expr/pkg > /dev/null 2>&1
echo x - p5-Math-Expr/pkg/COMMENT
sed 's/^X//' >p5-Math-Expr/pkg/COMMENT << 'END-of-p5-Math-Expr/pkg/COMMENT'
XPerl module for parsing mathematical expressions into a tree structure
END-of-p5-Math-Expr/pkg/COMMENT
echo x - p5-Math-Expr/pkg/DESCR
sed 's/^X//' >p5-Math-Expr/pkg/DESCR << 'END-of-p5-Math-Expr/pkg/DESCR'
XMath::Expr parses mathematical expressions into a tree structure.
XThe expressions may contain integers, real numbers, alphanumeric
Xvariable names, alphanumeric function names and most other characters
Xmight be used as operators. The operators can consist of multiple
Xcharacters.  The only limitation is that a variable or function
Xname may not start on a digit, and not all chars are accepted in
Xoperation names.
END-of-p5-Math-Expr/pkg/DESCR
echo x - p5-Math-Expr/pkg/PLIST
sed 's/^X//' >p5-Math-Expr/pkg/PLIST << 'END-of-p5-Math-Expr/pkg/PLIST'
Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Expr/.packlist
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/FormulaDB.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/MatchSet.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Node.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Num.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Opp.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/OpperationDB.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Rule.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/TypeDB.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Var.pm
Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/VarSet.pm
X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math/Expr
X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Expr
END-of-p5-Math-Expr/pkg/PLIST
echo x - p5-Math-Expr/Makefile
sed 's/^X//' >p5-Math-Expr/Makefile << 'END-of-p5-Math-Expr/Makefile'
X# New ports collection makefile for:	p5-Math-Expr
X# Date created:				20 Sep 2000
X# Whom:			Mario S F Ferreira <lioux@linf.unb.br> et al.
X#
X# $FreeBSD$
X#
X
XPORTNAME=	Math-Expr
XPORTVERSION=	0.4
XCATEGORIES=	math perl5
XMASTER_SITES=	${MASTER_SITE_PERL_CPAN}
XMASTER_SITE_SUBDIR=	Math
XPKGNAMEPREFIX=	p5-
X
XMAINTAINER=	lioux@linf.unb.br
X
XUSE_PERL5=	yes
XPERL_CONFIGURE=	yes
XMANPREFIX=	${PREFIX}/lib/perl5/${PERL_VERSION}
XMAN3=		Math::Expr.3 Math::Expr::FormulaDB.3 \
X		Math::Expr::MatchSet.3 Math::Expr::Node.3 \
X		Math::Expr::Num.3 Math::Expr::Opp.3 \
X		Math::Expr::OpperationDB.3 Math::Expr::Rule.3 \
X		Math::Expr::TypeDB.3 Math::Expr::Var.3 \
X		Math::Expr::VarSet.3
X
X.include <bsd.port.mk>
END-of-p5-Math-Expr/Makefile
exit


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000920165114.6774.qmail>