From owner-svn-ports-all@FreeBSD.ORG Tue Aug 14 12:04:41 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B562A1065677; Tue, 14 Aug 2012 12:04:41 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9D12D8FC20; Tue, 14 Aug 2012 12:04:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7EC4fPT092179; Tue, 14 Aug 2012 12:04:41 GMT (envelope-from scheidell@svn.freebsd.org) Received: (from scheidell@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7EC4fhD092173; Tue, 14 Aug 2012 12:04:41 GMT (envelope-from scheidell@svn.freebsd.org) Message-Id: <201208141204.q7EC4fhD092173@svn.freebsd.org> From: Michael Scheidell Date: Tue, 14 Aug 2012 12:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302520 - in head/devel: . npth X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2012 12:04:41 -0000 Author: scheidell Date: Tue Aug 14 12:04:40 2012 New Revision: 302520 URL: http://svn.freebsd.org/changeset/ports/302520 Log: nPth - The New GNU Portable Threads Library This is a library to provide the GNU Pth API and thus a non-preemptive threads implementation. In contrast to GNU Pth is is based on the system's standard threads implementation. This allows the use of libraries which are not compatible to GNU Pth. Experience with a Windows Pth emulation showed that this is a solid way to provide a co-routine based framework. WWW: http://www.gnupg.org PR: ports/170599 Submitted by: Jason E. Hale Added: head/devel/npth/ head/devel/npth/Makefile (contents, props changed) head/devel/npth/distinfo (contents, props changed) head/devel/npth/pkg-descr (contents, props changed) head/devel/npth/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Aug 14 12:01:37 2012 (r302519) +++ head/devel/Makefile Tue Aug 14 12:04:40 2012 (r302520) @@ -1170,6 +1170,7 @@ SUBDIR += node-thrift SUBDIR += notify-sharp SUBDIR += noweb + SUBDIR += npth SUBDIR += nspr SUBDIR += nxt-python SUBDIR += oaf Added: head/devel/npth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/npth/Makefile Tue Aug 14 12:04:40 2012 (r302520) @@ -0,0 +1,29 @@ +# New ports collection makefile for: npth +# Date Created: 2012-08-12 +# Whom: Jason E. Hale +# +# $FreeBSD$ +# + +PORTNAME= npth +PORTVERSION= 0.91 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GNUPG} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= bsdkaffee@gmail.com +COMMENT= New GNU Portable Threads + +LICENSE= LGPL3 GPLv2 +LICENSE_COMB= dual + +USE_BZIP2= yes +USE_AUTOTOOLS= libtool +GNU_CONFIGURE= yes +CONFIGURE_ENV+= ac_cv_search_pthread_create="" +CFLAGS+= ${PTHREAD_CFLAGS} +LDFLAGS+= ${PTHREAD_LIBS} +MAKE_JOBS_SAFE= yes +USE_LDCONFIG= yes + +.include Added: head/devel/npth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/npth/distinfo Tue Aug 14 12:04:40 2012 (r302520) @@ -0,0 +1,2 @@ +SHA256 (npth-0.91.tar.bz2) = caef86ced4a331e162897818a5b924860c8d6003e52da5bdf76da00e8e0dfae1 +SIZE (npth-0.91.tar.bz2) = 299702 Added: head/devel/npth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/npth/pkg-descr Tue Aug 14 12:04:40 2012 (r302520) @@ -0,0 +1,11 @@ +nPth - The New GNU Portable Threads Library + +This is a library to provide the GNU Pth API and thus a non-preemptive threads +implementation. + +In contrast to GNU Pth is is based on the system's standard threads +implementation. This allows the use of libraries which are not compatible to +GNU Pth. Experience with a Windows Pth emulation showed that this is a solid +way to provide a co-routine based framework. + +WWW: http://www.gnupg.org Added: head/devel/npth/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/npth/pkg-plist Tue Aug 14 12:04:40 2012 (r302520) @@ -0,0 +1,7 @@ +bin/npth-config +include/npth.h +lib/libnpth.a +lib/libnpth.la +lib/libnpth.so +lib/libnpth.so.0 +share/aclocal/npth.m4