Add p5-Math-Polynomial-Solve 2.10, find the roots of polynomial
equations. PR: ports/104710 Submitted by: Gea-Suan Lin <gslin at gslin.org>
This commit is contained in:
parent
c8fef18a38
commit
a0582a0efb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=176197
6 changed files with 53 additions and 0 deletions
|
@ -210,6 +210,7 @@
|
|||
SUBDIR += p5-Math-Logic
|
||||
SUBDIR += p5-Math-Matrix
|
||||
SUBDIR += p5-Math-Pari
|
||||
SUBDIR += p5-Math-Polynomial-Solve
|
||||
SUBDIR += p5-Math-Random
|
||||
SUBDIR += p5-Math-Random-MT
|
||||
SUBDIR += p5-Math-Random-MT-Auto
|
||||
|
|
28
math/p5-Math-Polynomial-Solve/Makefile
Normal file
28
math/p5-Math-Polynomial-Solve/Makefile
Normal file
|
@ -0,0 +1,28 @@
|
|||
# New ports collection makefile for: p5-Math-Polynomial-Solve
|
||||
# Date created: 2006-10-23
|
||||
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Math-Polynomial-Solve
|
||||
PORTVERSION= 2.10
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= Math
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= gslin@gslin.org
|
||||
COMMENT= Find the roots of polynomial equations
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Math::Polynomial::Solve.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500600
|
||||
IGNORE= requires Perl 5.6.0 or newer. Install lang/perl5.8 and try again
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
math/p5-Math-Polynomial-Solve/distinfo
Normal file
3
math/p5-Math-Polynomial-Solve/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Math-Polynomial-Solve-2.10.tar.gz) = 1b8bfe442e52141659f51d9dd6bc81aa
|
||||
SHA256 (Math-Polynomial-Solve-2.10.tar.gz) = ce5190253ddcc4a63d54a6f2d4808d49769e982e520d7a4b748ccc4c2d0dac7a
|
||||
SIZE (Math-Polynomial-Solve-2.10.tar.gz) = 13549
|
BIN
math/p5-Math-Polynomial-Solve/p5-Math-Polynomial-Solve-2.10.tbz
Normal file
BIN
math/p5-Math-Polynomial-Solve/p5-Math-Polynomial-Solve-2.10.tbz
Normal file
Binary file not shown.
13
math/p5-Math-Polynomial-Solve/pkg-descr
Normal file
13
math/p5-Math-Polynomial-Solve/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
This package supplies a set of functions that find the roots of
|
||||
polynomials. Polynomials up to the quartic may be solved directly by
|
||||
numerical formulae. Polynomials of fifth and higher powers will be
|
||||
solved by an iterative method, as there are no general solutions for
|
||||
fifth and higher powers.
|
||||
|
||||
The linear, quadratic, cubic, and quartic *_roots() functions all
|
||||
expect to have a non-zero value for the $a term.
|
||||
|
||||
If the constant term is zero then the first value returned in the list
|
||||
of answers will always be zero, for all functions.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Math-Polynomial-Solve/
|
8
math/p5-Math-Polynomial-Solve/pkg-plist
Normal file
8
math/p5-Math-Polynomial-Solve/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
@comment $FreeBSD$
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Polynomial/Solve/.packlist
|
||||
%%SITE_PERL%%/Math/Polynomial/Solve.pm
|
||||
@dirrmtry %%SITE_PERL%%/Math/Polynomial
|
||||
@dirrmtry %%SITE_PERL%%/Math
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Polynomial/Solve
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Polynomial
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math
|
Loading…
Reference in a new issue