b42aba98db
nested tree model is a way of representing hierarchical information in a database. This takes a different approach to the Adjacency List implementation. (see DBIx::Class::Tree::AdjacencyList which uses parent relationships in a recursive manner). WWW: http://search.cpan.org/dist/DBIx-Class-Tree-NestedSet/
27 lines
687 B
Makefile
27 lines
687 B
Makefile
# New ports collection makefile for: DBIx::Class::Tree::NestedSet
|
|
# Date created: 17 Mar 2011
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= DBIx-Class-Tree-NestedSet
|
|
PORTVERSION= 0.07
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Perl extension to manage trees of data using the nested set model
|
|
|
|
RUN_DEPENDS= \
|
|
p5-DBIx-Class>=0.08:${PORTSDIR}/databases/p5-DBIx-Class \
|
|
p5-Moose>=0.54:${PORTSDIR}/devel/p5-Moose \
|
|
p5-namespace-autoclean>0:${PORTSDIR}/devel/p5-namespace-autoclean
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= DBIx::Class::Tree::NestedSet.3
|
|
|
|
.include <bsd.port.mk>
|