1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/databases/p5-DBIx-Class-BitField/Makefile
Ryan Steinmetz 3c877c9c38 New port: databases/p5-DBIx-Class-BitField:
This module is useful if you manage data which has a lot of on/off attributes
like active, inactive, deleted, important, etc. If you do not want to add an
extra column for each of those attributes you can easily specify them in one
integer column.

A bit field is a way to store multiple bit values on one integer field.

The main benefit from this module is that you can add additional attributes
to your result class whithout the need to deploy or change the schema on the
data base.

WWW: http://search.cpan.org/dist/DBIx-Class-BitField/
2014-07-18 17:54:31 +00:00

22 lines
547 B
Makefile

# Created by: Ryan Steinmetz <zi@FreeBSD.org>
# $FreeBSD$
PORTNAME= DBIx-Class-BitField
PORTVERSION= 0.13
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Store multiple boolean fields in one integer field
RUN_DEPENDS= p5-DBIx-Class>=0:${PORTSDIR}/databases/p5-DBIx-Class
BUILD_DEPENDS= ${RUN_DEPENDS}
TEST_DEPENDS= p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite \
p5-File-Find-Rule>=0:${PORTSDIR}/devel/p5-File-Find-Rule
USES= perl5
USE_PERL5= configure
.include <bsd.port.mk>