diff options
author | ijliao <ijliao@FreeBSD.org> | 2003-10-24 20:05:09 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2003-10-24 20:05:09 +0800 |
commit | 821f4bfe1527325c53be4dbf7c0a00aff391e896 (patch) | |
tree | 58fe92204378aa80d003f4d264f7a76f3b318df9 /math | |
parent | 1b702a0f718f009f5a32d32d75a69be3a129dd71 (diff) | |
download | freebsd-ports-graphics-821f4bfe1527325c53be4dbf7c0a00aff391e896.tar.gz freebsd-ports-graphics-821f4bfe1527325c53be4dbf7c0a00aff391e896.tar.zst freebsd-ports-graphics-821f4bfe1527325c53be4dbf7c0a00aff391e896.zip |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
Diffstat (limited to 'math')
54 files changed, 208 insertions, 234 deletions
diff --git a/math/p5-AI-NeuralNet-BackProp/Makefile b/math/p5-AI-NeuralNet-BackProp/Makefile index 1cf12959a47..b8b2f630707 100644 --- a/math/p5-AI-NeuralNet-BackProp/Makefile +++ b/math/p5-AI-NeuralNet-BackProp/Makefile @@ -19,7 +19,6 @@ USE_ZIP= yes NO_WRKSUBDIR= yes PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= AI::NeuralNet::BackProp.3 .include <bsd.port.mk> diff --git a/math/p5-AI-NeuralNet-BackProp/pkg-plist b/math/p5-AI-NeuralNet-BackProp/pkg-plist index f52b2ac7d98..4ad9c8e1fa2 100644 --- a/math/p5-AI-NeuralNet-BackProp/pkg-plist +++ b/math/p5-AI-NeuralNet-BackProp/pkg-plist @@ -1,7 +1,7 @@ -lib/perl5/site_perl/%%PERL_VER%%/AI/NeuralNet/BackProp.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/NeuralNet/BackProp/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/NeuralNet/BackProp -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/NeuralNet -@dirrm lib/perl5/site_perl/%%PERL_VER%%/AI/NeuralNet -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/AI 2>/dev/null || true +%%SITE_PERL%%/AI/NeuralNet/BackProp.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/NeuralNet/BackProp/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/NeuralNet/BackProp +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/NeuralNet +@dirrm %%SITE_PERL%%/AI/NeuralNet +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/AI 2>/dev/null || true diff --git a/math/p5-AI-NeuralNet-Mesh/Makefile b/math/p5-AI-NeuralNet-Mesh/Makefile index cb1585f68bc..504b052fc2c 100644 --- a/math/p5-AI-NeuralNet-Mesh/Makefile +++ b/math/p5-AI-NeuralNet-Mesh/Makefile @@ -19,7 +19,6 @@ USE_ZIP= yes NO_WRKSUBDIR= yes PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= AI::NeuralNet::Mesh.3 .include <bsd.port.mk> diff --git a/math/p5-AI-NeuralNet-Mesh/pkg-plist b/math/p5-AI-NeuralNet-Mesh/pkg-plist index e77e967d481..5d0db789c5b 100644 --- a/math/p5-AI-NeuralNet-Mesh/pkg-plist +++ b/math/p5-AI-NeuralNet-Mesh/pkg-plist @@ -1,7 +1,7 @@ -lib/perl5/site_perl/%%PERL_VER%%/AI/NeuralNet/Mesh.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/NeuralNet/Mesh/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/NeuralNet/Mesh -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/NeuralNet 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/AI/NeuralNet 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/AI 2>/dev/null || true +%%SITE_PERL%%/AI/NeuralNet/Mesh.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/NeuralNet/Mesh/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/NeuralNet/Mesh +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/NeuralNet 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/AI/NeuralNet 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/AI 2>/dev/null || true diff --git a/math/p5-AI-Perceptron/Makefile b/math/p5-AI-Perceptron/Makefile index af6d8fa3c60..f03a5a4173e 100644 --- a/math/p5-AI-Perceptron/Makefile +++ b/math/p5-AI-Perceptron/Makefile @@ -17,7 +17,6 @@ COMMENT= Perl module for introducing to internal operations of neural networks PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= AI::Perceptron.3 .include <bsd.port.mk> diff --git a/math/p5-AI-Perceptron/pkg-plist b/math/p5-AI-Perceptron/pkg-plist index 3244ca0d36a..26ad10aac3a 100644 --- a/math/p5-AI-Perceptron/pkg-plist +++ b/math/p5-AI-Perceptron/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/AI/Perceptron.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/Perceptron/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI/Perceptron -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/AI 2>/dev/null || true +%%SITE_PERL%%/AI/Perceptron.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/Perceptron/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/Perceptron +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/AI 2>/dev/null || true diff --git a/math/p5-Bit-ShiftReg/Makefile b/math/p5-Bit-ShiftReg/Makefile index 26d998a19cc..9bc963e99b6 100644 --- a/math/p5-Bit-ShiftReg/Makefile +++ b/math/p5-Bit-ShiftReg/Makefile @@ -17,7 +17,6 @@ COMMENT= Perl module implementing various bit shifting operations PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Bit::ShiftReg.3 .include <bsd.port.mk> diff --git a/math/p5-Bit-ShiftReg/pkg-plist b/math/p5-Bit-ShiftReg/pkg-plist index b403ff1bd8e..36225f19994 100644 --- a/math/p5-Bit-ShiftReg/pkg-plist +++ b/math/p5-Bit-ShiftReg/pkg-plist @@ -1,7 +1,7 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit/ShiftReg.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/ShiftReg/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/ShiftReg/ShiftReg.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/ShiftReg/ShiftReg.so -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/ShiftReg -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/Bit/ShiftReg.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/ShiftReg/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/ShiftReg/ShiftReg.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/ShiftReg/ShiftReg.so +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/ShiftReg +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Bit 2>/dev/null || true diff --git a/math/p5-Bit-Vector/Makefile b/math/p5-Bit-Vector/Makefile index 4538dfdd9d0..682b149e297 100644 --- a/math/p5-Bit-Vector/Makefile +++ b/math/p5-Bit-Vector/Makefile @@ -17,7 +17,6 @@ COMMENT= Library of advanced math functions that includes a Perl OO module PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Bit::Vector.3 Bit::Vector::Overload.3 Carp::Clan.3 .include <bsd.port.mk> diff --git a/math/p5-Bit-Vector/pkg-plist b/math/p5-Bit-Vector/pkg-plist index 64bf469aed9..23fee290af4 100644 --- a/math/p5-Bit-Vector/pkg-plist +++ b/math/p5-Bit-Vector/pkg-plist @@ -1,14 +1,14 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit/Vector.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit/Vector.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit/Vector/Overload.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit/Vector/Overload.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Carp/Clan.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Carp/Clan.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/Vector/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/Vector/Vector.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/Vector/Vector.so -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit/Vector -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit/Vector -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bit 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Carp 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bit 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/Bit/Vector.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Bit/Vector.pod +%%SITE_PERL%%/%%PERL_ARCH%%/Bit/Vector/Overload.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Bit/Vector/Overload.pod +%%SITE_PERL%%/%%PERL_ARCH%%/Carp/Clan.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Carp/Clan.pod +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/Vector/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/Vector/Vector.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/Vector/Vector.so +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit/Vector +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Bit/Vector +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Bit 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Carp 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Bit 2>/dev/null || true diff --git a/math/p5-Graph/Makefile b/math/p5-Graph/Makefile index 63a34f06138..34ef94ccbc4 100644 --- a/math/p5-Graph/Makefile +++ b/math/p5-Graph/Makefile @@ -15,7 +15,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Graph, the Perl module for graph operations -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Heap.pm:${PORTSDIR}/devel/p5-Heap +BUILD_DEPENDS= ${SITE_PERL}/Heap.pm:${PORTSDIR}/devel/p5-Heap RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes @@ -28,6 +28,5 @@ MAN3= Graph.3 \ Graph::HeapElem.3 \ Graph::Traversal.3 \ Graph::Undirected.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Graph/pkg-plist b/math/p5-Graph/pkg-plist index 81b47fc9f06..40423eeb884 100644 --- a/math/p5-Graph/pkg-plist +++ b/math/p5-Graph/pkg-plist @@ -1,11 +1,11 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Graph/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Graph.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/Directed.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/HeapElem.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/DFS.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/Base.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/Traversal.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/BFS.pm -lib/perl5/site_perl/%%PERL_VER%%/Graph/Undirected.pm -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Graph 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Graph 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Graph/.packlist +%%SITE_PERL%%/Graph.pm +%%SITE_PERL%%/Graph/Directed.pm +%%SITE_PERL%%/Graph/HeapElem.pm +%%SITE_PERL%%/Graph/DFS.pm +%%SITE_PERL%%/Graph/Base.pm +%%SITE_PERL%%/Graph/Traversal.pm +%%SITE_PERL%%/Graph/BFS.pm +%%SITE_PERL%%/Graph/Undirected.pm +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Graph 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Graph 2>/dev/null || true diff --git a/math/p5-Math-BaseCalc/Makefile b/math/p5-Math-BaseCalc/Makefile index d1705e86417..e32e21514a3 100644 --- a/math/p5-Math-BaseCalc/Makefile +++ b/math/p5-Math-BaseCalc/Makefile @@ -18,6 +18,5 @@ COMMENT= Convert numbers between various bases PERL_CONFIGURE= yes MAN3= Math::BaseCalc.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Math-BaseCalc/pkg-plist b/math/p5-Math-BaseCalc/pkg-plist index 4e834213f43..6ce08f34314 100644 --- a/math/p5-Math-BaseCalc/pkg-plist +++ b/math/p5-Math-BaseCalc/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/BaseCalc/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/BaseCalc.pm -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/BaseCalc 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/BaseCalc/.packlist +%%SITE_PERL%%/Math/BaseCalc.pm +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/BaseCalc 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true diff --git a/math/p5-Math-Bezier/Makefile b/math/p5-Math-Bezier/Makefile index d5e5641f361..a8e345349bf 100644 --- a/math/p5-Math-Bezier/Makefile +++ b/math/p5-Math-Bezier/Makefile @@ -17,7 +17,6 @@ COMMENT= Perl module to solve Bezier curves PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::Bezier.3 .include <bsd.port.mk> diff --git a/math/p5-Math-Bezier/pkg-plist b/math/p5-Math-Bezier/pkg-plist index ad4dfe4d440..d9d725054d7 100644 --- a/math/p5-Math-Bezier/pkg-plist +++ b/math/p5-Math-Bezier/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/Math/Bezier.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Bezier/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Bezier -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true +%%SITE_PERL%%/Math/Bezier.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Bezier/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Bezier +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true diff --git a/math/p5-Math-BigIntFast/Makefile b/math/p5-Math-BigIntFast/Makefile index 1e86274f693..0684d2dfe12 100644 --- a/math/p5-Math-BigIntFast/Makefile +++ b/math/p5-Math-BigIntFast/Makefile @@ -18,10 +18,9 @@ COMMENT= Perl module wrapper for Bit::Vector to provide big integer math BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Bit/Vector.pm:${PORTSDIR}/math/p5-Bit-Vector RUN_DEPENDS= ${BUILD_DEPENDS} -SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} +SITE_PERL= ${SITE_PERL} PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::BigIntFast.3 .include <bsd.port.mk> diff --git a/math/p5-Math-BigIntFast/pkg-plist b/math/p5-Math-BigIntFast/pkg-plist index ad8a9d0c62e..fb78d7181e7 100644 --- a/math/p5-Math-BigIntFast/pkg-plist +++ b/math/p5-Math-BigIntFast/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/Math/BigIntFast.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/BigIntFast/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/BigIntFast -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true +%%SITE_PERL%%/Math/BigIntFast.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/BigIntFast/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/BigIntFast +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true diff --git a/math/p5-Math-Calc-Units/Makefile b/math/p5-Math-Calc-Units/Makefile index 286ab7c2fbd..e001c039e44 100644 --- a/math/p5-Math-Calc-Units/Makefile +++ b/math/p5-Math-Calc-Units/Makefile @@ -18,6 +18,5 @@ COMMENT= Human-readable unit-aware calculator PERL_CONFIGURE= yes MAN3= Math::Calc::Units.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Math-Calc-Units/pkg-plist b/math/p5-Math-Calc-Units/pkg-plist index c63191fc2f4..721dc506009 100644 --- a/math/p5-Math-Calc-Units/pkg-plist +++ b/math/p5-Math-Calc-Units/pkg-plist @@ -1,24 +1,24 @@ bin/ucalc -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Calc/Units/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Compute.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Base.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Base2Metric.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Byte.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Combo.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Date.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Distance.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Metric.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Multi.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert/Time.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Grammar.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Grammar.y -lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Rank.pm -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units/Convert 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math/Calc/Units 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math/Calc 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Calc/Units 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Calc 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Calc/Units/.packlist +%%SITE_PERL%%/Math/Calc/Units.pm +%%SITE_PERL%%/Math/Calc/Units/Compute.pm +%%SITE_PERL%%/Math/Calc/Units/Convert.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Base.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Base2Metric.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Byte.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Combo.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Date.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Distance.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Metric.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Multi.pm +%%SITE_PERL%%/Math/Calc/Units/Convert/Time.pm +%%SITE_PERL%%/Math/Calc/Units/Grammar.pm +%%SITE_PERL%%/Math/Calc/Units/Grammar.y +%%SITE_PERL%%/Math/Calc/Units/Rank.pm +@unexec rmdir %D/%%SITE_PERL%%/Math/Calc/Units/Convert 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Math/Calc/Units 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Math/Calc 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Calc/Units 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Calc 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true diff --git a/math/p5-Math-Currency/Makefile b/math/p5-Math-Currency/Makefile index 7e11694dd8b..f2f0cbf774e 100644 --- a/math/p5-Math-Currency/Makefile +++ b/math/p5-Math-Currency/Makefile @@ -26,7 +26,6 @@ IGNORE= "Needs Perl 5.6.0 for Math::BigFloat" PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::Currency.3 .include <bsd.port.post.mk> diff --git a/math/p5-Math-Expr/Makefile b/math/p5-Math-Expr/Makefile index 96c19448fcb..b7b383ed0c0 100644 --- a/math/p5-Math-Expr/Makefile +++ b/math/p5-Math-Expr/Makefile @@ -17,7 +17,6 @@ COMMENT= Perl module for parsing mathematical expressions into a tree structure PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::Expr.3 Math::Expr::FormulaDB.3 \ Math::Expr::MatchSet.3 Math::Expr::Node.3 \ Math::Expr::Num.3 Math::Expr::Opp.3 \ diff --git a/math/p5-Math-Expr/pkg-plist b/math/p5-Math-Expr/pkg-plist index ec518c46302..fd70702769f 100644 --- a/math/p5-Math-Expr/pkg-plist +++ b/math/p5-Math-Expr/pkg-plist @@ -1,16 +1,16 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Expr/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/FormulaDB.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/MatchSet.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Node.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Num.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Opp.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/OpperationDB.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Rule.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/TypeDB.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Var.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/Expr/VarSet.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math/Expr -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Expr -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Expr/.packlist +%%SITE_PERL%%/Math/Expr.pm +%%SITE_PERL%%/Math/Expr/FormulaDB.pm +%%SITE_PERL%%/Math/Expr/MatchSet.pm +%%SITE_PERL%%/Math/Expr/Node.pm +%%SITE_PERL%%/Math/Expr/Num.pm +%%SITE_PERL%%/Math/Expr/Opp.pm +%%SITE_PERL%%/Math/Expr/OpperationDB.pm +%%SITE_PERL%%/Math/Expr/Rule.pm +%%SITE_PERL%%/Math/Expr/TypeDB.pm +%%SITE_PERL%%/Math/Expr/Var.pm +%%SITE_PERL%%/Math/Expr/VarSet.pm +@dirrm %%SITE_PERL%%/Math/Expr +@dirrm %%SITE_PERL%%/Math +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Expr +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math diff --git a/math/p5-Math-FFT/Makefile b/math/p5-Math-FFT/Makefile index f77f117e881..bb328f5378d 100644 --- a/math/p5-Math-FFT/Makefile +++ b/math/p5-Math-FFT/Makefile @@ -17,7 +17,6 @@ COMMENT= Perl module providing an interface to Fast Fourier Transform routines PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::FFT.3 .include <bsd.port.mk> diff --git a/math/p5-Math-FFT/pkg-plist b/math/p5-Math-FFT/pkg-plist index b2e51d8d022..7165de84000 100644 --- a/math/p5-Math-FFT/pkg-plist +++ b/math/p5-Math-FFT/pkg-plist @@ -1,7 +1,7 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/FFT/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/FFT/FFT.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/FFT/FFT.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math/FFT.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/FFT -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/FFT/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/FFT/FFT.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/FFT/FFT.so +%%SITE_PERL%%/%%PERL_ARCH%%/Math/FFT.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Math +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/FFT +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math diff --git a/math/p5-Math-FixedPrecision/pkg-plist b/math/p5-Math-FixedPrecision/pkg-plist index 380a88a585d..7139f56d385 100644 --- a/math/p5-Math-FixedPrecision/pkg-plist +++ b/math/p5-Math-FixedPrecision/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/Math/FixedPrecision.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/FixedPrecision/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/FixedPrecision -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +%%SITE_PERL%%/Math/FixedPrecision.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/FixedPrecision/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/FixedPrecision +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true diff --git a/math/p5-Math-Interpolate/Makefile b/math/p5-Math-Interpolate/Makefile index 37826b79ba8..5976e956c1d 100644 --- a/math/p5-Math-Interpolate/Makefile +++ b/math/p5-Math-Interpolate/Makefile @@ -17,7 +17,6 @@ COMMENT= Perl routines for data sets interpolation and interval search PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::Interpolate.3 Math::IntervalSearch.3 .include <bsd.port.mk> diff --git a/math/p5-Math-Interpolate/pkg-plist b/math/p5-Math-Interpolate/pkg-plist index 4c676d1f832..7e38ba1384a 100644 --- a/math/p5-Math-Interpolate/pkg-plist +++ b/math/p5-Math-Interpolate/pkg-plist @@ -1,6 +1,6 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Interpolate/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/Interpolate.pm -lib/perl5/site_perl/%%PERL_VER%%/Math/IntervalSearch.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Interpolate -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Interpolate/.packlist +%%SITE_PERL%%/Math/Interpolate.pm +%%SITE_PERL%%/Math/IntervalSearch.pm +@dirrm %%SITE_PERL%%/Math +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Interpolate +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math diff --git a/math/p5-Math-LinearCombination/Makefile b/math/p5-Math-LinearCombination/Makefile index b87e6a0cb55..7f3d7c7185d 100644 --- a/math/p5-Math-LinearCombination/Makefile +++ b/math/p5-Math-LinearCombination/Makefile @@ -15,13 +15,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= skv@FreeBSD.org COMMENT= Sum of variables with a numerical coefficient -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/fields.pm:${PORTSDIR}/devel/p5-Class-Fields \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Math/SimpleVariable.pm:${PORTSDIR}/math/p5-Math-SimpleVariable +BUILD_DEPENDS= ${SITE_PERL}/fields.pm:${PORTSDIR}/devel/p5-Class-Fields \ + ${SITE_PERL}/Math/SimpleVariable.pm:${PORTSDIR}/math/p5-Math-SimpleVariable RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::LinearCombination.3 pre-patch: diff --git a/math/p5-Math-LinearCombination/pkg-plist b/math/p5-Math-LinearCombination/pkg-plist index d0c1db22281..b5de3700264 100644 --- a/math/p5-Math-LinearCombination/pkg-plist +++ b/math/p5-Math-LinearCombination/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/LinearCombination/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/LinearCombination.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/LinearCombination -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/LinearCombination/.packlist +%%SITE_PERL%%/Math/LinearCombination.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/LinearCombination +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true diff --git a/math/p5-Math-Logic/Makefile b/math/p5-Math-Logic/Makefile index 40954143dfd..8a6898deca2 100644 --- a/math/p5-Math-Logic/Makefile +++ b/math/p5-Math-Logic/Makefile @@ -16,7 +16,6 @@ MAINTAINER= lioux@FreeBSD.org COMMENT= Perl module providing pure 2, 3 or multi-value logic PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::Logic.3 .include <bsd.port.mk> diff --git a/math/p5-Math-Logic/pkg-plist b/math/p5-Math-Logic/pkg-plist index a1e8c9fb095..03e1101a49e 100644 --- a/math/p5-Math-Logic/pkg-plist +++ b/math/p5-Math-Logic/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Logic/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/Logic.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Logic -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Logic/.packlist +%%SITE_PERL%%/Math/Logic.pm +@dirrm %%SITE_PERL%%/Math +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Logic +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math diff --git a/math/p5-Math-Random-MT/Makefile b/math/p5-Math-Random-MT/Makefile index 4e9ad6aa79d..db2bd4301d3 100644 --- a/math/p5-Math-Random-MT/Makefile +++ b/math/p5-Math-Random-MT/Makefile @@ -18,6 +18,5 @@ COMMENT= The Mersenne Twister PRNG PERL_CONFIGURE= yes MAN3= Math::Random::MT.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Math-Random-MT/pkg-plist b/math/p5-Math-Random-MT/pkg-plist index 6e65d3b6523..d43d866b05b 100644 --- a/math/p5-Math-Random-MT/pkg-plist +++ b/math/p5-Math-Random-MT/pkg-plist @@ -1,9 +1,9 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Random/MT/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math/Random/MT.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Random/MT/MT.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Random/MT/MT.so -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math/Random 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math 2>/dev/null || true -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Random/MT -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Random 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Random/MT/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/Math/Random/MT.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Random/MT/MT.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Random/MT/MT.so +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Math/Random 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Math 2>/dev/null || true +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Random/MT +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Random 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true diff --git a/math/p5-Math-SimpleVariable/Makefile b/math/p5-Math-SimpleVariable/Makefile index 398736431e9..8562aea2262 100644 --- a/math/p5-Math-SimpleVariable/Makefile +++ b/math/p5-Math-SimpleVariable/Makefile @@ -15,12 +15,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= skv@FreeBSD.org COMMENT= Simple representation of mathematical variables -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/fields.pm:${PORTSDIR}/devel/p5-Class-Fields +BUILD_DEPENDS= ${SITE_PERL}/fields.pm:${PORTSDIR}/devel/p5-Class-Fields RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Math::SimpleVariable.3 pre-patch: diff --git a/math/p5-Math-SimpleVariable/pkg-plist b/math/p5-Math-SimpleVariable/pkg-plist index 2df96163f51..cc3eecf45c6 100644 --- a/math/p5-Math-SimpleVariable/pkg-plist +++ b/math/p5-Math-SimpleVariable/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/SimpleVariable/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Math/SimpleVariable.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/SimpleVariable -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/SimpleVariable/.packlist +%%SITE_PERL%%/Math/SimpleVariable.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/SimpleVariable +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true diff --git a/math/p5-Math-TrulyRandom/Makefile b/math/p5-Math-TrulyRandom/Makefile index 33b3f3b919b..874f4d54d7c 100644 --- a/math/p5-Math-TrulyRandom/Makefile +++ b/math/p5-Math-TrulyRandom/Makefile @@ -18,7 +18,6 @@ COMMENT= Perl interface to a truly random number generator function PERL_CONFIGURE= yes MAN3= Math::TrulyRandom.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} post-install: .if !defined(NOPORTDOCS) diff --git a/math/p5-Math-TrulyRandom/pkg-plist b/math/p5-Math-TrulyRandom/pkg-plist index 97d979d1a2d..74dbe376f32 100644 --- a/math/p5-Math-TrulyRandom/pkg-plist +++ b/math/p5-Math-TrulyRandom/pkg-plist @@ -1,12 +1,12 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/TrulyRandom/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math/TrulyRandom.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Math/TrulyRandom.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/TrulyRandom/TrulyRandom.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/TrulyRandom/TrulyRandom.so +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/TrulyRandom/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/Math/TrulyRandom.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Math/TrulyRandom.pod +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/TrulyRandom/TrulyRandom.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/TrulyRandom/TrulyRandom.so %%PORTDOCS%%share/doc/Math-TrulyRandom/COPYRIGHT %%PORTDOCS%%share/doc/Math-TrulyRandom/truerand.c %%PORTDOCS%%share/doc/Math-TrulyRandom/truerand.h %%PORTDOCS%%@dirrm share/doc/Math-TrulyRandom -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/TrulyRandom 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/TrulyRandom 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Math 2>/dev/null || true diff --git a/math/p5-Roman/Makefile b/math/p5-Roman/Makefile index 18fa333518e..42dcc0ab069 100644 --- a/math/p5-Roman/Makefile +++ b/math/p5-Roman/Makefile @@ -18,7 +18,7 @@ COMMENT= Perl module to convert between Arabic and Roman numerals NO_BUILD= yes USE_PERL5_RUN= yes -SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} +SITE_PERL= ${SITE_PERL} do-install: ${CP} ${WRKSRC}/Roman.pm ${SITE_PERL} diff --git a/math/p5-Roman/pkg-plist b/math/p5-Roman/pkg-plist index 240c3d07da1..21d3888aa70 100644 --- a/math/p5-Roman/pkg-plist +++ b/math/p5-Roman/pkg-plist @@ -1 +1 @@ -lib/perl5/site_perl/%%PERL_VER%%/Roman.pm +%%SITE_PERL%%/Roman.pm diff --git a/math/p5-Set-IntSpan/Makefile b/math/p5-Set-IntSpan/Makefile index 510da892fab..d9db8a570a5 100644 --- a/math/p5-Set-IntSpan/Makefile +++ b/math/p5-Set-IntSpan/Makefile @@ -18,6 +18,5 @@ COMMENT= Manages sets of integers PERL_CONFIGURE= yes MAN3= Set::IntSpan.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Set-IntSpan/pkg-plist b/math/p5-Set-IntSpan/pkg-plist index dfe93c481b2..044c5e9b478 100644 --- a/math/p5-Set-IntSpan/pkg-plist +++ b/math/p5-Set-IntSpan/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/Set/IntSpan.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Set/IntSpan/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Set/IntSpan -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Set 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Set 2>/dev/null || true +%%SITE_PERL%%/Set/IntSpan.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Set/IntSpan/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Set/IntSpan +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Set 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Set 2>/dev/null || true diff --git a/math/p5-Set-Window/Makefile b/math/p5-Set-Window/Makefile index 40d6dc1331b..d39b1837995 100644 --- a/math/p5-Set-Window/Makefile +++ b/math/p5-Set-Window/Makefile @@ -18,7 +18,6 @@ COMMENT= Perl module to manage an interval on the integer line PERL_CONFIGURE= yes MAN3= Set::Window.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} post-patch: ${PERL} -pi -e '$$_="" if /use 5/;' ${WRKSRC}/Window.pm diff --git a/math/p5-Set-Window/pkg-plist b/math/p5-Set-Window/pkg-plist index 24965f303e9..2714bb6fffd 100644 --- a/math/p5-Set-Window/pkg-plist +++ b/math/p5-Set-Window/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Set/Window/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Set/Window.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Set/Window -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Set 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Set 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Set/Window/.packlist +%%SITE_PERL%%/Set/Window.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Set/Window +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Set 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Set 2>/dev/null || true diff --git a/math/p5-Statistics-ChiSquare/Makefile b/math/p5-Statistics-ChiSquare/Makefile index 5ba8b39f101..9a0f87f5ac5 100644 --- a/math/p5-Statistics-ChiSquare/Makefile +++ b/math/p5-Statistics-ChiSquare/Makefile @@ -20,6 +20,5 @@ PERL_CONFIGURE= yes WRKSRC= ${WRKDIR}/Statistics/ChiSquare-${PORTVERSION} MAN3= Statistics::ChiSquare.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Statistics-ChiSquare/pkg-plist b/math/p5-Statistics-ChiSquare/pkg-plist index d6b305a88a5..76c47af2923 100644 --- a/math/p5-Statistics-ChiSquare/pkg-plist +++ b/math/p5-Statistics-ChiSquare/pkg-plist @@ -1,8 +1,8 @@ -lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics/ChiSquare/autosplit.ix -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/ChiSquare/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Statistics/ChiSquare.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics/ChiSquare -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/ChiSquare -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Statistics 2>/dev/null || true +%%SITE_PERL%%/auto/Statistics/ChiSquare/autosplit.ix +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/ChiSquare/.packlist +%%SITE_PERL%%/Statistics/ChiSquare.pm +@dirrm %%SITE_PERL%%/auto/Statistics/ChiSquare +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/ChiSquare +@unexec rmdir %D/%%SITE_PERL%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Statistics 2>/dev/null || true diff --git a/math/p5-Statistics-Descriptive/Makefile b/math/p5-Statistics-Descriptive/Makefile index dbcd3c128eb..e325a3e729c 100644 --- a/math/p5-Statistics-Descriptive/Makefile +++ b/math/p5-Statistics-Descriptive/Makefile @@ -18,6 +18,5 @@ COMMENT= Perl module that supplies statistical methods for perl5 PERL_CONFIGURE= yes MAN3= Statistics::Descriptive.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Statistics-Descriptive/pkg-plist b/math/p5-Statistics-Descriptive/pkg-plist index c3d59c30a67..6269b7f2676 100644 --- a/math/p5-Statistics-Descriptive/pkg-plist +++ b/math/p5-Statistics-Descriptive/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/Descriptive/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Statistics/Descriptive.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/Descriptive -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Statistics 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Descriptive/.packlist +%%SITE_PERL%%/Statistics/Descriptive.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Descriptive +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Statistics 2>/dev/null || true diff --git a/math/p5-Statistics-LTU/Makefile b/math/p5-Statistics-LTU/Makefile index 0df95dd458e..58e5f13d6ec 100644 --- a/math/p5-Statistics-LTU/Makefile +++ b/math/p5-Statistics-LTU/Makefile @@ -18,6 +18,5 @@ COMMENT= Perl implementation of Linear Threshold Units PERL_CONFIGURE= yes MAN3= Statistics::LTU.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Statistics-LTU/pkg-plist b/math/p5-Statistics-LTU/pkg-plist index 40730e9938e..25f4d0432ee 100644 --- a/math/p5-Statistics-LTU/pkg-plist +++ b/math/p5-Statistics-LTU/pkg-plist @@ -1,7 +1,7 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/LTU/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Statistics/LTU.pod -lib/perl5/site_perl/%%PERL_VER%%/Statistics/weather.pl -lib/perl5/site_perl/%%PERL_VER%%/Statistics/LTU.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/LTU -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Statistics 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/LTU/.packlist +%%SITE_PERL%%/Statistics/LTU.pod +%%SITE_PERL%%/Statistics/weather.pl +%%SITE_PERL%%/Statistics/LTU.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/LTU +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Statistics 2>/dev/null || true diff --git a/math/p5-Statistics-OLS/Makefile b/math/p5-Statistics-OLS/Makefile index 28a51d0e032..a6479b9c52d 100644 --- a/math/p5-Statistics-OLS/Makefile +++ b/math/p5-Statistics-OLS/Makefile @@ -18,6 +18,5 @@ COMMENT= Perl module to perform ordinary least squares and other bivariate stati PERL_CONFIGURE= yes MAN3= Statistics::OLS.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Statistics-OLS/pkg-plist b/math/p5-Statistics-OLS/pkg-plist index a99f0aaeb9a..79f2a9b6f5d 100644 --- a/math/p5-Statistics-OLS/pkg-plist +++ b/math/p5-Statistics-OLS/pkg-plist @@ -1,5 +1,5 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/OLS/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Statistics/OLS.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/OLS -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Statistics 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/OLS/.packlist +%%SITE_PERL%%/Statistics/OLS.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/OLS +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Statistics 2>/dev/null || true diff --git a/math/p5-Statistics-Table-F/Makefile b/math/p5-Statistics-Table-F/Makefile index b3b2e5c7607..30546c496a1 100644 --- a/math/p5-Statistics-Table-F/Makefile +++ b/math/p5-Statistics-Table-F/Makefile @@ -20,6 +20,5 @@ PERL_CONFIGURE= yes WRKSRC= ${WRKDIR}/Statistics/Table/F MAN3= Statistics::Table::F.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} .include <bsd.port.mk> diff --git a/math/p5-Statistics-Table-F/pkg-plist b/math/p5-Statistics-Table-F/pkg-plist index ff7bb8143d4..1873d9579f8 100644 --- a/math/p5-Statistics-Table-F/pkg-plist +++ b/math/p5-Statistics-Table-F/pkg-plist @@ -1,11 +1,11 @@ -lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics/Table/F/autosplit.ix -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/Table/F/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Statistics/Table/F.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics/Table/F -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/Table/F -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics/Table 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics/Table 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Statistics/Table 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Statistics 2>/dev/null || true +%%SITE_PERL%%/auto/Statistics/Table/F/autosplit.ix +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Table/F/.packlist +%%SITE_PERL%%/Statistics/Table/F.pm +@dirrm %%SITE_PERL%%/auto/Statistics/Table/F +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Table/F +@unexec rmdir %D/%%SITE_PERL%%/auto/Statistics/Table 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Table 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Statistics/Table 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Statistics 2>/dev/null || true |