The immutable sorted string table library project, mtbl 1.3.0,
was released. This release includes improvements enabling
aggregation. In detail:
* Fix mtbl_reload_now() on filesets with open iterators.
* Add support for absolute pathnames in filesets
* Make merge function an optional parameter for mergers and filesets
to enable unmerged results.
* Add dupsort function to sort unmerged results based on data.
* Add filename filter option to filesets. This provides functionality
similar to mtbl_fileset_partition() but resilient against fileset
reloads.
* Add mtbl_fileset_dup() to open an existing fileset with different
options.
Sort Makefile to pacify portlint.
Sponsored by: Farsight Security, Inc.
27 lines
546 B
Makefile
27 lines
546 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mtbl
|
|
PORTVERSION= 1.3.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Immutable sorted string table library
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
LIB_DEPENDS= liblz4.so:archivers/liblz4 \
|
|
libsnappy.so:archivers/snappy \
|
|
libzstd.so:archivers/zstd
|
|
|
|
USES= gmake libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|