Summary: | [new port]: devel/libe High-performance datastructures and utilities for C++ | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Veniamin <g.veniamin> | ||||
Component: | Individual Port(s) | Assignee: | freebsd-ports-bugs (Nobody) <ports-bugs> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Veniamin
2013-05-14 11:25:20 UTC
This is a library provide easier to write robust applications. Author: rakuco Date: Tue May 14 18:28:25 2013 New Revision: 318185 URL: http://svnweb.freebsd.org/changeset/ports/318185 Log: Add devel/libe. It is a collection of high-performance data structures and utilities in C++. PR: ports/178626 Submitted by: Veniamin Gvozdikov <g.veniamin@googlemail.com> Added: head/devel/libe/ head/devel/libe/Makefile (contents, props changed) head/devel/libe/distinfo (contents, props changed) head/devel/libe/files/ head/devel/libe/files/patch-configure (contents, props changed) head/devel/libe/pkg-descr (contents, props changed) head/devel/libe/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue May 14 18:24:33 2013 (r318184) +++ head/devel/Makefile Tue May 14 18:28:25 2013 (r318185) @@ -964,6 +964,7 @@ SUBDIR += libds SUBDIR += libdsp SUBDIR += libdwarf + SUBDIR += libe SUBDIR += libedit SUBDIR += libee SUBDIR += libelf Added: head/devel/libe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libe/Makefile Tue May 14 18:28:25 2013 (r318185) @@ -0,0 +1,22 @@ +# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com> +# $FreeBSD$ + +PORTNAME= libe +PORTVERSION= 0.3.1 +CATEGORIES= devel +MASTER_SITES= http://hyperdex.org/src/ + +MAINTAINER= g.veniamin@googlemail.com +COMMENT= High-performance datastructures and utilities for C++ + +LICENSE= BSD + +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/libpo6.pc:${PORTSDIR}/devel/libpo6 + +GNU_CONFIGURE= yes +USES= pathfix pkgconfig +USE_LDCONFIG= yes + +ONLY_FOR_ARCHS= amd64 + +.include <bsd.port.mk> Added: head/devel/libe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libe/distinfo Tue May 14 18:28:25 2013 (r318185) @@ -0,0 +1,2 @@ +SHA256 (libe-0.3.1.tar.gz) = a10f9ee69a86094b83ed65c86243ab2e32bf134bffbafb9d6a8a2e152d6d914b +SIZE (libe-0.3.1.tar.gz) = 378945 Added: head/devel/libe/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libe/files/patch-configure Tue May 14 18:28:25 2013 (r318185) @@ -0,0 +1,11 @@ +--- configure.orig 2013-04-02 21:37:25.502367016 +0000 ++++ configure 2013-04-02 21:37:55.951368743 +0000 +@@ -19251,7 +19251,7 @@ + esac + + +-if test x"${target_cpu}" != "xx86_64"; then ++if test x"${target_cpu}" != "xamd64"; then + as_fn_error $? "'this library requires a 64-bit x86 processor'" "$LINENO" 5 + fi + Added: head/devel/libe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libe/pkg-descr Tue May 14 18:28:25 2013 (r318185) @@ -0,0 +1,3 @@ +This is a library provide easier to write robust applications. + +WWW: https://github.com/rescrv/e Added: head/devel/libe/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libe/pkg-plist Tue May 14 18:28:25 2013 (r318185) @@ -0,0 +1,34 @@ +include/e/array_ptr.h +include/e/assert.h +include/e/atomic.h +include/e/bitfield.h +include/e/bitsteal.h +include/e/buffer.h +include/e/convert.h +include/e/endian.h +include/e/envconfig.h +include/e/guard.h +include/e/hazard_ptrs.h +include/e/intrusive_ptr.h +include/e/lockfree_fifo.h +include/e/lockfree_hash_map.h +include/e/lockfree_hash_set.h +include/e/locking_fifo.h +include/e/locking_iterable_fifo.h +include/e/microbench.h +include/e/nonblocking_bounded_fifo.h +include/e/pow2.h +include/e/profiler.h +include/e/safe_math.h +include/e/slice.h +include/e/striped_lock.h +include/e/time.h +include/e/tuple_compare.h +include/e/unpacker.h +include/e/worker_barrier.h +lib/libe.a +lib/libe.la +lib/libe.so +lib/libe.so.0 +libdata/pkgconfig/libe.pc +@dirrm include/e _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed, thanks. I only change the USES line, as ':build' is implicit for pkgconfig. |