pkgsrc/net/chrony/Makefile
hannken 33e5f859b9 Update chrony to version 1.29. For a full list of changes
since 1.24 see file NEWS in the distfile.

Security fixes since 1.24:

* Fix crash when processing crafted commands (CVE-2012-4502)
  (possible with IP addresses allowed by cmdallow and localhost)
* Don't send uninitialized data in SUBNETS_ACCESSED and CLIENT_ACCESSES
  replies (CVE-2012-4503) (not used by chronyc)

Reviewed by: Joerg Sonnenberger <joerg@netbsd.org>
2013-08-16 08:30:20 +00:00

41 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.29 2013/08/16 08:30:20 hannken Exp $
DISTNAME= chrony-1.29
CATEGORIES= net
MASTER_SITES= http://download.tuxfamily.org/chrony/
MAINTAINER= hannken@NetBSD.org
HOMEPAGE= http://chrony.tuxfamily.org/
COMMENT= Daemon for maintaining the accuracy of computer clocks
LICENSE= gnu-gpl-v2
USE_TOOLS+= gmake
HAS_CONFIGURE= YES
BUILD_DEFS+= VARBASE
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
AUTO_MKDIRS= yes
OWN_DIRS= ${VARBASE}/lib/chrony
EGDIR= ${PREFIX}/share/examples/chrony
EGFILES= chrony.conf.example chrony.keys.example
RCD_SCRIPTS= chronyd
SUBST_CLASSES+= paths
SUBST_FILES.paths= ${EGFILES:S/^/examples\//} conf.c
SUBST_SED.paths+= -e 's,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},g'
SUBST_SED.paths+= -e 's,@VARBASE@,${VARBASE},g'
SUBST_STAGE.paths= post-patch
post-install:
set -e; for file in ${EGFILES}; do \
${INSTALL_DATA} ${WRKSRC}/examples/$${file} \
${DESTDIR}${EGDIR}/$${file}; \
done
.include "../../mk/readline.buildlink3.mk"
.include "../../devel/ncurses/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"