abb8ba889b
The Event module provides a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute. from Waldemar Brodkorb <wbx at openbsd.de>
24 lines
464 B
Makefile
24 lines
464 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/07/01 18:23:09 sturm Exp $
|
|
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
COMMENT= "event loop processing"
|
|
|
|
DISTNAME= Event-1.00
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Waldemar Brodkorb <wbx@openbsd.de>
|
|
|
|
# Artistic/GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Event/}
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
.include <bsd.port.mk>
|