mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
d5a123599f
functionality for coroutines. For a definition of the term coroutine see The Art of Computer Programming by Donald E. Knuth. Coroutines are a very simple cooperative multitasking environment where the switch from one task to another is done explicitly by a function call. WWW: http://www.xmailserver.org/libpcl.html PR: 128066 Submitted by: Manuel Giraud <manuel dot giraud at gmail dot com>
26 lines
526 B
Makefile
26 lines
526 B
Makefile
# New ports collection makefile for: pcl
|
|
# Date Created: 13 Oct 2008
|
|
# Whom: Manuel Giraud <manuel.giraud@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pcl
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.xmailserver.org/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= manuel.giraud@gmail.com
|
|
COMMENT= Portable Coroutine Library
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN3= pcl.3
|
|
|
|
WRKSRC= ${WRKDIR}/lib${PORTNAME}-${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|