mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
9cb7e50db1
- Do not silence installation message - Cosmetic change Feature safe: yes
30 lines
634 B
Makefile
30 lines
634 B
Makefile
# Created by: Sergey Skvortsov <skv@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Event
|
|
PORTVERSION= 1.21
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Generic Perl Event Loop
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Event.3 Event::MakeMaker.3 Event::generic.3
|
|
PORTDOCS= ANNOUNCE ChangeLog INSTALL MANIFEST README TODO Tutorial.pdf
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
|
|
${MKDIR} ${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|