mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
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.
36 lines
809 B
Makefile
36 lines
809 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dnstable
|
|
PORTVERSION= 0.9.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= dns
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Encoding format, library, and utilities for passive DNS data
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
BUILD_DEPENDS= sie-nmsg>0:net/sie-nmsg
|
|
LIB_DEPENDS= libmtbl.so:devel/mtbl \
|
|
libyajl.so:devel/yajl \
|
|
libwdns.so:dns/wdns \
|
|
libnmsg.so:net/nmsg
|
|
RUN_DEPENDS= sie-nmsg>0:net/sie-nmsg
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool pathfix pkgconfig
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/yajl
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-install:
|
|
.for i in 1 3 5 7
|
|
${INSTALL_MAN} ${WRKSRC}/man/*.${i} ${STAGEDIR}/${PREFIX}/man/man${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|