37 lines
1003 B
Makefile
37 lines
1003 B
Makefile
# New ports collection makefile for: p5-AddressBook
|
|
# Date created: November 22, 2004
|
|
# Whom: Brian Somers <brian@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= AddressBook
|
|
PORTVERSION= 0.16
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../../authors/id/D/DL/DLEIGH/
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Perl5 module providing an LDAP addressbook interface
|
|
|
|
USE_PERL5= yes
|
|
RUN_DEPENDS= ${SITE_PERL}/Date/Manip.pm:${PORTSDIR}/devel/p5-Date-Manip \
|
|
${SITE_PERL}/XML/DOM.pm:${PORTSDIR}/textproc/p5-XML-DOM
|
|
|
|
NO_BUILD= yes
|
|
ALL_FILES= AddressBook.pm AddressBook/Entry.pm AddressBook/Config.pm \
|
|
AddressBook/DB/BBDB.pm AddressBook/DB/DBI.pm \
|
|
AddressBook/DB/HTML.pm AddressBook/DB/LDAP.pm \
|
|
AddressBook/DB/LDIF.pm AddressBook/DB/PDB.pm \
|
|
AddressBook/DB/Text.pm
|
|
|
|
do-install:
|
|
@ ${MKDIR} ${SITE_PERL}/AddressBook/DB
|
|
.for file in ${ALL_FILES}
|
|
@ ${INSTALL_DATA} ${WRKSRC}/lib/${file} ${SITE_PERL}/${file}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|
|
|