8d6597e0bb
With hat: portmgr Sponsored by: Absolight
26 lines
637 B
Makefile
26 lines
637 B
Makefile
# Created by: Zach Thompson <hideo@lastamericanempire.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= POE-Component-ControlPort
|
|
PORTVERSION= 0.01
|
|
PORTREVISION= 2
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Network control port for POE applications
|
|
|
|
RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \
|
|
p5-Authen-Libwrap>=0:security/p5-Authen-Libwrap \
|
|
p5-POE>=0:devel/p5-POE
|
|
BUILD_DEPENDS:= ${RUN_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure extract
|
|
|
|
# Make port non-interactive
|
|
post-extract:
|
|
@${PERL} -pi -e 's/my \$$ret =.*/my \$$ret = 0;/' ${WRKSRC}/Makefile.PL
|
|
|
|
.include <bsd.port.mk>
|