mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
1da3310ac1
Highlights: - New Roslyn compiler for C# available - Improved support for nuget packages in USES=mono General: - fix pkg-plist: mono now produces '.pdb' debug files instead of '.mdb' - bump all dependant ports USES=mono: - properly handle caching of nuget packages - add support for multiple feeds for nuget packages - add support for nuget dependencies in a separate file - add support for paket packages lang/mono: - update to version 5.2.0.215 - automate certificate initialisation [2] - increase test coverage - mark as conflicting with net/czmq (conflicting on makecert) [1] - patch mono to use $PREFIX/share/mono instead of /usr/share/.mono devel/google-gdata: - use nunit.framework nuget package as the Mono shipped version is no longer suppport. - switch to using csc(1) for compiling (mcs(1) is depreciated). - use delayed signing (and then sign with sn(1)) as csc(1) does not support signing. - fix reference to system assemblies (the '.dll' suffix is required). - fix reference to HttpUtility: csc(1) is more strict about scoping devel/monodevelop: - reroll distinfo (no changes to content) lang/fsharp: - reroll distinfo (no changes to content) security/gnome-keyring-sharp: - delay sign (then sign with sn(1)) as csc(1) does not support direct signing. PR: 223188 [1] PR: 209670 [2] Differential Revision: https://reviews.freebsd.org/D13752
72 lines
2.3 KiB
Makefile
72 lines
2.3 KiB
Makefile
# Created by: Carsten Larsen <cs@innolan.dk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ntpa
|
|
PORTVERSION= 0.8.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://dist1.innolan.net/ \
|
|
http://dist2.innolan.net/
|
|
|
|
MAINTAINER= cs@innolan.net
|
|
COMMENT= NTP data collection and charting
|
|
|
|
LICENSE= MIT BSD3CLAUSE PostgreSQL GPLv2
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= newtonsoft-json>=0:devel/newtonsoft-json
|
|
RUN_DEPENDS= newtonsoft-json>=0:devel/newtonsoft-json
|
|
|
|
USES= mono pkgconfig autoreconf gmake
|
|
GNU_CONFIGURE= yes
|
|
NO_ARCH= yes
|
|
OPTIONS_SUB= yes
|
|
USE_RC_SUBR= ntpa
|
|
|
|
USERS= ntpa
|
|
GROUPS= ntpa
|
|
|
|
SUB_FILES= ntpad ntpav ntpac ntpag
|
|
|
|
OPTIONS_DEFINE= WEBFILES GRAPH
|
|
WEBFILES_DESC= Install web files
|
|
GRAPH_DESC= Graph generation (requires Cairo)
|
|
|
|
GRAPH_BUILD_DEPENDS= nplot>=0:graphics/nplot
|
|
GRAPH_RUN_DEPENDS= nplot>=0:graphics/nplot
|
|
|
|
CONFIGURE_ARGS+= --libdir=${LOCALBASE}/libexec --bindir=${LOCALBASE}/libexec/ntpa
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ! ${PORT_OPTIONS:MGRAPH}
|
|
CONFIGURE_ENV+= NPLOT_CFLAGS=" " NPLOT_LIBS="-r:../packages/NPlot.0.9.10.0/lib/net20/NPlot.dll"
|
|
.endif
|
|
|
|
post-install-WEBFILES-on:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC}/html && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/ntpad ${STAGEDIR}${PREFIX}/sbin/ntpa
|
|
${INSTALL_SCRIPT} ${WRKDIR}/ntpav ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKDIR}/ntpag ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKDIR}/ntpac ${STAGEDIR}${PREFIX}/sbin
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/graph.conf ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/ntpd.conf ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/openntp.conf ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/small.conf ${STAGEDIR}${EXAMPLESDIR}
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/ntpa/
|
|
${INSTALL_DATA} ${WRKSRC}/examples/ntpa.conf ${STAGEDIR}${PREFIX}/etc/ntpa/ntpa.conf.sample
|
|
${INSTALL_MAN} ${WRKSRC}/docs/ntpa.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CHANGES ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/DATABASE ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/INSTALL ${STAGEDIR}${DOCSDIR}
|
|
${MKDIR} ${STAGEDIR}/var/log/ntpa
|
|
${MKDIR} ${STAGEDIR}/var/run/ntpa
|
|
${INSTALL_DATA} ${FILESDIR}/newsyslog ${STAGEDIR}${ETCDIR}/ntpa.newsyslog
|
|
|
|
.include <bsd.port.mk>
|