diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-10-29 00:37:52 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-10-29 00:37:52 +0000 |
commit | f6d0ed2fbdad6d3aa5396655bacc218af967aaa1 (patch) | |
tree | 27de063aff2f7add358a0019e991e18cfb5dea7d /devel | |
parent | 98d31655fb591a3dee18aca05e2378c825a884ea (diff) |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/libpcl/Makefile | 26 | ||||
-rw-r--r-- | devel/libpcl/distinfo | 3 | ||||
-rw-r--r-- | devel/libpcl/pkg-descr | 9 |
4 files changed, 39 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index c70449c176df..5105dff09c74 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1537,6 +1537,7 @@ SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess + SUBDIR += libpcl SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libpeas diff --git a/devel/libpcl/Makefile b/devel/libpcl/Makefile new file mode 100644 index 000000000000..8b461cc84098 --- /dev/null +++ b/devel/libpcl/Makefile @@ -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> diff --git a/devel/libpcl/distinfo b/devel/libpcl/distinfo new file mode 100644 index 000000000000..83548a3c6dd7 --- /dev/null +++ b/devel/libpcl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1540773095 +SHA256 (pcl-1.12.tar.gz) = e7b30546765011575d54ae6b44f9d52f138f5809221270c815d2478273319e1a +SIZE (pcl-1.12.tar.gz) = 384986 diff --git a/devel/libpcl/pkg-descr b/devel/libpcl/pkg-descr new file mode 100644 index 000000000000..080909e61cb9 --- /dev/null +++ b/devel/libpcl/pkg-descr @@ -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 |