diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2002-01-25 14:24:27 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2002-01-25 14:24:27 +0000 |
commit | a86fad7524aa86f201a58a8ad1618c1ccfdff5eb (patch) | |
tree | 301aac255194ef4a97888fdf02b0dbabf1330ff7 /devel/p5-Event/Makefile | |
parent | 862813b75f3ad8dc53479fbdbe0857828b3d23dd (diff) |
Notes
Diffstat (limited to 'devel/p5-Event/Makefile')
-rw-r--r-- | devel/p5-Event/Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/devel/p5-Event/Makefile b/devel/p5-Event/Makefile index 20321d8ce0c3..91f51a69f887 100644 --- a/devel/p5-Event/Makefile +++ b/devel/p5-Event/Makefile @@ -6,17 +6,28 @@ # PORTNAME= Event -PORTVERSION= 0.83 +PORTVERSION= 0.84 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Event PKGNAMEPREFIX= p5- -MAINTAINER= skv@protey.ru +MAINTAINER= skv@FreeBSD.org +PLIST_SUB= DOCSDIR="share/doc/${PORTNAME}" PERL_CONFIGURE= yes +DOCS= Tutorial.pdf MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= Event::MakeMaker.3 Event.3 +MAN3= Event.3 Event::MakeMaker.3 + +post-install: +.ifndef(NOPORTDOCS) + @${ECHO_MSG} "===> Installing documentation for ${PKGNAME}" + @${MKDIR} ${DOCSDIR} +.for DOCFILE in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${DOCFILE} ${DOCSDIR} +.endfor +.endif .include <bsd.port.mk> |