af7a1ea6d1
mtbl (1.0.0) * Backwards-incompatible file format change to enable block sizes >4G. * Add support for zstd compression. This adds a new library dependency on libzstd. * Add mtbl_iter_seek function. * Add mtbl_fileset_partition function. * Breaks ABI for version 0.x.x. mtbl (0.8.1) * Add portability for clock time. * Simplify and improve portability related to byte order primitives. * Fix assertion failure. If there is a broken mtbl file in the fileset then a NULL reader will be returned. This change checks for that error condition in fs_reinit_merger() and does not pass the empty reader onwards to mtbl_merger_add_source(). Compatiblity with the latest libz4 has been added so files/patch-configure is no longer needed. Bump PORTREVISION on dependent ports due to ABI / shared library version change.
26 lines
546 B
Makefile
26 lines
546 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mtbl
|
|
PORTVERSION= 1.0.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
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool pathfix pkgconfig
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|