blob: bd854abf509786be2d0c2ae576d97c1419802d8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# $NetBSD: Makefile,v 1.18 2016/03/25 21:05:30 joerg Exp $
#
DISTNAME= monit-5.8
PKGREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://mmonit.com/monit/dist/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://mmonit.com/monit/
COMMENT= Monitors processes, files, directories and devices
LICENSE= gnu-agpl-v3
# no platform specific code yet
BROKEN_ON_PLATFORM+= BSDOS-*-* DragonFly-*-* Interix-*-* IRIX-*-* OSF1-*-*
USE_TOOLS+= gmake gzcat flex yacc
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
PKG_OPTIONS_VAR= PKG_OPTIONS.monit
PKG_SUPPORTED_OPTIONS= ssl
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
.if empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --without-ssl
.endif
CONFIGURE_ARGS+= --with-ssl-dir=${SSLBASE:Q}
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
.if ${OPSYS} == "SunOS" && ${ABI} == "32"
CONFIGURE_ARGS+= --without-largefiles
.endif
PKG_SYSCONFSUBDIR= monit
RCD_SCRIPTS= monit
RCD_SCRIPT_SRC.monit= ${FILESDIR}/monit-rc-script.sh
CONF_FILES= ${EGDIR}/monitrc.sample ${PKG_SYSCONFDIR}/monitrc
CONF_FILES_MODE= 0600
OWN_DIRS+= ${PKG_SYSCONFDIR}/monit.d
DOC_SUBDIR= share/docs/monit
DOCDIR= ${PREFIX}/${DOC_SUBDIR}
EG_SUBDIR= share/examples/monit
EGDIR= ${PREFIX}/${EG_SUBDIR}
M_DOCFILES= CHANGES COPYING README
M_DOCFILES+= doc/PLATFORMS
SUBST_CLASSES+= monit
SUBST_STAGE.monit= pre-configure
SUBST_MESSAGE.monit= Setting daemon interval
SUBST_FILES.monit= monitrc
SUBST_SED.monit= -e "s|^\# *set *daemon|set daemon|"
SUBST_SED.monit+= -e "s|include */etc/monit.d|include ${PKG_SYSCONFDIR}/monit.d|"
.if ${OPSYS} == "NetBSD"
_WRAP_EXTRA_ARGS.CC+= -D_KERNTYPES
CWRAPPERS_APPEND.cc+= -D_KERNTYPES
.endif
# Perform configure substitutions on monit.1
post-configure:
cd ${WRKSRC} && mv monit.1 monit.1.in && ./config.status --file=monit.1
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
.for f in ${M_DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${DOCDIR}
.endfor
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
${INSTALL_DATA} ${WRKSRC}/monitrc ${DESTDIR}${EGDIR}/monitrc.sample
.include "../../mk/pthread.buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|