Feature release to make the package more useful for servers. Added buildlink3.mk. - Bugfix: canlock-mhp utility no longer hangs if field name was not found - Bugfix: Two memory leaks fixed in canlock-hfp utility (Reported by Dennis Preiser) - Bugfix: Typo in canlock-mhp man page fixed (Reported by Julien Élie) - Library libcanlock-hp added to execute the header parsers (for operating systems with POSIX API) - New libcanlock-hp API function to unfold header fields added (Suggested by Julien Élie) - Test suite extended for the new library. Tests for parser functions are skipped by default (because they require the installed parser utilities) - Manual pages added for the new library - Example programs added to the "hp/examples" subdirectory (Suggested by Julien Élie)
26 lines
655 B
Makefile
26 lines
655 B
Makefile
# $NetBSD: Makefile,v 1.7 2021/12/03 10:59:16 micha Exp $
|
|
|
|
DISTNAME= libcanlock-3.3.0
|
|
PKGNAME= ${DISTNAME:S/libcanlock/canlock-hp/}
|
|
CATEGORIES= news
|
|
MASTER_SITES= http://micha.freeshell.org/libcanlock/src/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= micha@NetBSD.org
|
|
HOMEPAGE= http://micha.freeshell.org/canlock-hp/
|
|
COMMENT= Parsers for RFC 5536 message headers and RFC 8315 header fields
|
|
LICENSE= mit
|
|
|
|
USE_TOOLS+= lex yacc
|
|
USE_LANGUAGES+= c99
|
|
USE_LIBTOOL= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-pc-files
|
|
CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/lib/pkgconfig
|
|
|
|
CONFIGURE_DIRS= hp
|
|
BUILD_DIRS= hp
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|