diff options
author | Brian Somers <brian@FreeBSD.org> | 2004-11-26 22:15:00 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2004-11-26 22:15:00 +0000 |
commit | d33bc206ed87daa8705e3177dc94ce9adce03c78 (patch) | |
tree | 64a2710a13ee88722905a09b17d684aad7031e91 /net/p5-AddressBook/Makefile | |
parent | 92401d6d2544ea0212d8229e41a053b9588b5e37 (diff) |
Notes
Diffstat (limited to 'net/p5-AddressBook/Makefile')
-rw-r--r-- | net/p5-AddressBook/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net/p5-AddressBook/Makefile b/net/p5-AddressBook/Makefile new file mode 100644 index 000000000000..d28b721b7ae2 --- /dev/null +++ b/net/p5-AddressBook/Makefile @@ -0,0 +1,36 @@ +# 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> + |