mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
70 lines
2.5 KiB
Makefile
70 lines
2.5 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: Algorithm::Evolutionary
|
|
# Date created: Oct 24, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Algorithm-Evolutionary
|
|
PORTVERSION= 0.53
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Algorithm
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A library for doing evolutionary computation in Perl
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Algorithm/Permute.pm:${PORTSDIR}/devel/p5-Algorithm-Permute \
|
|
${SITE_PERL}/Test/Simple.pm:${PORTSDIR}/devel/p5-Test-Simple \
|
|
${SITE_PERL}/Tree/DAG_Node.pm:${PORTSDIR}/devel/p5-Tree-DAG_Node \
|
|
${SITE_PERL}/XML/Parser/EasyTree.pm:${PORTSDIR}/textproc/p5-XML-Parser-EasyTree
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Algorithm::Evolutionary.3 \
|
|
Algorithm::Evolutionary::Experiment.3 \
|
|
Algorithm::Evolutionary::Individual::Base.3 \
|
|
Algorithm::Evolutionary::Individual::BitString.3 \
|
|
Algorithm::Evolutionary::Individual::String.3 \
|
|
Algorithm::Evolutionary::Individual::Tree.3 \
|
|
Algorithm::Evolutionary::Individual::Vector.3 \
|
|
Algorithm::Evolutionary::Op::ArithCrossover.3 \
|
|
Algorithm::Evolutionary::Op::Base.3 \
|
|
Algorithm::Evolutionary::Op::Bitflip.3 \
|
|
Algorithm::Evolutionary::Op::CX.3 \
|
|
Algorithm::Evolutionary::Op::CanonicalGA.3 \
|
|
Algorithm::Evolutionary::Op::ChangeLengthMutation.3 \
|
|
Algorithm::Evolutionary::Op::Creator.3 \
|
|
Algorithm::Evolutionary::Op::Crossover.3 \
|
|
Algorithm::Evolutionary::Op::DeltaTerm.3 \
|
|
Algorithm::Evolutionary::Op::Easy.3 \
|
|
Algorithm::Evolutionary::Op::FullAlgorithm.3 \
|
|
Algorithm::Evolutionary::Op::GaussianMutation.3 \
|
|
Algorithm::Evolutionary::Op::GeneralGeneration.3 \
|
|
Algorithm::Evolutionary::Op::GenerationalTerm.3 \
|
|
Algorithm::Evolutionary::Op::IncMutation.3 \
|
|
Algorithm::Evolutionary::Op::Inverover.3 \
|
|
Algorithm::Evolutionary::Op::LinearFreezer.3 \
|
|
Algorithm::Evolutionary::Op::Mutation.3 \
|
|
Algorithm::Evolutionary::Op::NoChangeTerm.3 \
|
|
Algorithm::Evolutionary::Op::Permutation.3 \
|
|
Algorithm::Evolutionary::Op::QuadXOver.3 \
|
|
Algorithm::Evolutionary::Op::RouletteWheel.3 \
|
|
Algorithm::Evolutionary::Op::SimulatedAnnealing.3 \
|
|
Algorithm::Evolutionary::Op::TournamentSelect.3 \
|
|
Algorithm::Evolutionary::Op::TreeMutation.3 \
|
|
Algorithm::Evolutionary::Op::VectorCrossover.3 \
|
|
Algorithm::Evolutionary::Wheel.3 \
|
|
Algorithm::Evolutionary::XML.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500601
|
|
IGNORE= Port requires perl 5.6.1 or later. Install lang/perl5 then try again
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|