diff options
Diffstat (limited to 'net/chrony/Makefile')
-rw-r--r-- | net/chrony/Makefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/net/chrony/Makefile b/net/chrony/Makefile index 761f47f9555..8bf9e272f95 100644 --- a/net/chrony/Makefile +++ b/net/chrony/Makefile @@ -1,36 +1,37 @@ -# $NetBSD: Makefile,v 1.28 2013/07/15 02:02:26 ryoon Exp $ +# $NetBSD: Makefile,v 1.29 2013/08/16 08:30:20 hannken Exp $ -DISTNAME= chrony-1.24 +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:Q} -CONFIGURE_ARGS+= --mandir=${PREFIX:Q}/${PKGMANDIR:Q} -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} +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 chrony.conf.5 \ - chronyd.8 -SUBST_SED.paths+= -e 's,@PREFIX@,${PREFIX},g' +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: - ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR} - for file in ${EGFILES}; do \ + set -e; for file in ${EGFILES}; do \ ${INSTALL_DATA} ${WRKSRC}/examples/$${file} \ ${DESTDIR}${EGDIR}/$${file}; \ done |