Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Oct 2018 00:37:52 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r483361 - in head/devel: . libpcl
Message-ID:  <201810290037.w9T0bq8m011280@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Oct 29 00:37:52 2018
New Revision: 483361
URL: https://svnweb.freebsd.org/changeset/ports/483361

Log:
  New port: devel/libpcl: Portable Coroutine Library for low level functionality for coroutines

Added:
  head/devel/libpcl/
  head/devel/libpcl/Makefile   (contents, props changed)
  head/devel/libpcl/distinfo   (contents, props changed)
  head/devel/libpcl/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Oct 29 00:04:39 2018	(r483360)
+++ head/devel/Makefile	Mon Oct 29 00:37:52 2018	(r483361)
@@ -1537,6 +1537,7 @@
     SUBDIR += libpasori
     SUBDIR += libpci
     SUBDIR += libpciaccess
+    SUBDIR += libpcl
     SUBDIR += libpdel
     SUBDIR += libpeak
     SUBDIR += libpeas

Added: head/devel/libpcl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libpcl/Makefile	Mon Oct 29 00:37:52 2018	(r483361)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	libpcl
+DISTVERSION=	1.12
+CATEGORIES=	devel
+MASTER_SITES=	http://xmailserver.org/
+DISTNAME=	pcl-${DISTVERSION}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Portable Coroutine Library for low level functionality for coroutines
+
+LICENSE=	MIT
+xLICENSE_FILE=	${WRKSRC}/COPYING.SLIBTOOL
+
+USES=		gmake libtool
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--disable-static
+USE_LDCONFIG=	yes
+
+PLIST_FILES=	include/pcl.h \
+		lib/libpcl.so \
+		lib/libpcl.so.1 \
+		lib/libpcl.so.1.0.11 \
+		man/man3/pcl.3.gz
+
+.include <bsd.port.mk>

Added: head/devel/libpcl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libpcl/distinfo	Mon Oct 29 00:37:52 2018	(r483361)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1540773095
+SHA256 (pcl-1.12.tar.gz) = e7b30546765011575d54ae6b44f9d52f138f5809221270c815d2478273319e1a
+SIZE (pcl-1.12.tar.gz) = 384986

Added: head/devel/libpcl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libpcl/pkg-descr	Mon Oct 29 00:37:52 2018	(r483361)
@@ -0,0 +1,9 @@
+The Portable Coroutine Library (PCL) implements the low level 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. Coroutines are a lot faster than processes or
+threads switch, since there is no OS kernel involvement for the operation. Also
+coroutines require much less OS resources than processes of threads.
+
+WWW: http://xmailserver.org/libpcl.html



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810290037.w9T0bq8m011280>